html.remodal-is-locked {
overflow: hidden;
-ms-touch-action: none;
touch-action: none;
} .remodal,
[data-remodal-id] {
display: none;
} .remodal-overlay {
position: fixed;
z-index: 9999;
top: -5000px;
right: -5000px;
bottom: -5000px;
left: -5000px;
display: none;
} .remodal-wrapper {
position: fixed;
z-index: 10000;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: none;
overflow: auto;
text-align: center;
-webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
display: inline-block;
height: 100%;
margin-left: -0.05em;
content: "";
} .remodal-overlay,
.remodal-wrapper {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
} .remodal {
position: relative;
outline: none;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
.remodal-is-initialized { display: inline-block;
}.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
-webkit-filter: blur(3px);
filter: blur(3px);
} .remodal-overlay {
background: rgba(43, 46, 56, 0.9);
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
-webkit-animation-name: remodal-overlay-opening-keyframes;
animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
-webkit-animation-name: remodal-overlay-closing-keyframes;
animation-name: remodal-overlay-closing-keyframes;
} .remodal-wrapper {
padding: 10px 10px 0;
} .remodal {
box-sizing: border-box;
width: 100%;
margin-bottom: 10px;
padding: 35px;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
color: #2b2e38;
background: #fff;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
-webkit-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
-webkit-animation-name: remodal-opening-keyframes;
animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
-webkit-animation-name: remodal-closing-keyframes;
animation-name: remodal-closing-keyframes;
} .remodal,
.remodal-wrapper:after {
vertical-align: middle;
} .remodal-close {
position: absolute;
top: 0;
left: 0;
display: block;
overflow: visible;
width: 35px;
height: 35px;
margin: 0;
padding: 0;
cursor: pointer;
-webkit-transition: color 0.2s;
transition: color 0.2s;
text-decoration: none;
color: #95979c;
border: 0;
outline: 0;
background: transparent;
}
.remodal-close:hover,
.remodal-close:focus {
color: #2b2e38;
}
.remodal-close:before {
font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
font-size: 25px;
line-height: 35px;
position: absolute;
top: 0;
left: 0;
display: block;
width: 35px;
content: "\00d7";
text-align: center;
} .remodal-confirm,
.remodal-cancel {
font: inherit;
display: inline-block;
overflow: visible;
min-width: 110px;
margin: 0;
padding: 12px 0;
cursor: pointer;
-webkit-transition: background 0.2s;
transition: background 0.2s;
text-align: center;
vertical-align: middle;
text-decoration: none;
border: 0;
outline: 0;
}
.remodal-confirm {
color: #fff;
background: #81c784;
}
.remodal-confirm:hover,
.remodal-confirm:focus {
background: #66bb6a;
}
.remodal-cancel {
color: #fff;
background: #e57373;
}
.remodal-cancel:hover,
.remodal-cancel:focus {
background: #ef5350;
} .remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
padding: 0;
border: 0;
} @-webkit-keyframes remodal-opening-keyframes {
from {
-webkit-transform: scale(1.05);
transform: scale(1.05);
opacity: 0;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
-webkit-filter: blur(0);
filter: blur(0);
}
}
@keyframes remodal-opening-keyframes {
from {
-webkit-transform: scale(1.05);
transform: scale(1.05);
opacity: 0;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
-webkit-filter: blur(0);
filter: blur(0);
}
}
@-webkit-keyframes remodal-closing-keyframes {
from {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
to {
-webkit-transform: scale(0.95);
transform: scale(0.95);
opacity: 0;
-webkit-filter: blur(0);
filter: blur(0);
}
}
@keyframes remodal-closing-keyframes {
from {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
to {
-webkit-transform: scale(0.95);
transform: scale(0.95);
opacity: 0;
-webkit-filter: blur(0);
filter: blur(0);
}
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes remodal-overlay-opening-keyframes {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes remodal-overlay-closing-keyframes {
from {
opacity: 1;
}
to {
opacity: 0;
}
} @media only screen and (min-width: 641px) {
.remodal {
max-width: 700px;
}
} .lt-ie9 .remodal-overlay {
background: #2b2e38;
}
.lt-ie9 .remodal {
width: 700px;
}:root{
--wpgmza-component-shadow: rgb(0 0 0 / 30%) 0px 1px 4px -1px;
--wpgmza-component-shadow-high: rgb(0 0 0 / 15%) 0px 1px 15px -1px;
--wpgmza-component-standalone-shadow: rgb(0 0 0 / 15%) 0px 1px 4px -1px;
--wpgmza-component-color: var(--wpgmza-color-white);
--wpgmza-component-color-accent:  #1A73E8;
--wpgmza-component-text-color: var(--wpgmza-color-black);
--wpgmza-component-text-color-accent: var(--wpgmza-color-white);
--wpgmza-component-border-radius: 2px;
--wpgmza-component-border-radius-rounded: 10px;
--wpgmza-component-border-radius-pill: 40px;
--wpgmza-component-margin: 10px;
--wpgmza-component-native-control-height:  40px;
--wpgmza-component-font-size: 15px;
--wpgmza-component-inner-padding: 10px 15px;
--wpgmza-component-backdrop-filter: none;
--wpgmza-ol-tile-filter : none;
--wpgmza-leaflet-tile-filter : none;
}
.wpgmza_map {
border:0;
max-width:100% !important;
}
.wpgmza_map[data-maps-engine="open-layers"],
.wpgmza_map[data-maps-engine="open-layers-latest"]{
overflow: hidden;
}
.wpgmza_map img { 
max-width:none; 
} 
.wpgmza_widget { 
overflow: auto; 
} .wpgmza_map .wpgmza-preloader {
height: 30px;
width: 30px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.wpgmza_map .wpgmza-preloader div:first-child{
height: 100%;
width: 100%;
border: 3px solid var(--wpgmza-color-grey-500);
border-radius: 60px;
border-bottom-color: transparent;
box-sizing: border-box;
-webkit-animation: wpgmzaInfiniteRotate 1s forwards;
animation: wpgmzaInfiniteRotate 1s forwards;
animation-iteration-count: infinite;
} .wpgmza_map .wpgmza-inner-stack{
display: none;
position: absolute;
color: var(--wpgmza-component-text-color);
}
.wpgmza_map.wpgmza-initialized .wpgmza-inner-stack{
display: flex;
pointer-events: none;
max-height: 100%;
max-width: var(--wpgmza--viewport-overlays-max-width);
} .wpgmza_map .wpgmza-inner-stack.top{
top: 0;
left: 50%;
transform: translateX(-50%);
}
.wpgmza_map .wpgmza-inner-stack.left{
top: 50%;
transform: translateY(-50%);
flex-direction: column;
height: 100%;
justify-content: center;
z-index: 1;
max-width: var(--wpgmza--viewport-panels-max-width);
}
.wpgmza_map .wpgmza-inner-stack.right{
top: 50%;
transform: translateY(-50%);
right: 0;
flex-direction: column;
height: 100%;
justify-content: center;
z-index: 1;
max-width: var(--wpgmza--viewport-panels-max-width);
}
.wpgmza_map .wpgmza-inner-stack.bottom{
left: 50%;
transform: translateX(-50%);
bottom: 0;
}
.wpgmza_map .wpgmza-inner-stack.center{
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.wpgmza_map .wpgmza-inner-stack.top_left{
top: calc(var(--wpgmza-component-native-control-height) + var(--wpgmza-component-margin));
}
.wpgmza_map[data-maps-engine="open-layers"] .wpgmza-inner-stack.top_left,
.wpgmza_map[data-maps-engine="open-layers-latest"] .wpgmza-inner-stack.top_left,
.wpgmza_map[data-maps-engine="leaflet"] .wpgmza-inner-stack.top_left,
.wpgmza_map[data-maps-engine="leaflet-azure"] .wpgmza-inner-stack.top_left,
.wpgmza_map[data-maps-engine="leaflet-stadia"] .wpgmza-inner-stack.top_left,
.wpgmza_map[data-maps-engine="leaflet-maptiler"] .wpgmza-inner-stack.top_left,
.wpgmza_map[data-maps-engine="leaflet-zerocost"] .wpgmza-inner-stack.top_left,
.wpgmza_map[data-maps-engine="leaflet-locationiq"] .wpgmza-inner-stack.top_left {
top: 0;
left: calc(var(--wpgmza-component-native-control-height) + var(--wpgmza-component-margin));
}
.wpgmza_map .wpgmza-inner-stack.top_right{
top: calc(var(--wpgmza-component-native-control-height) + var(--wpgmza-component-margin));
right: 0;
}
.wpgmza_map .wpgmza-inner-stack.bottom_left{
bottom: calc(var(--wpgmza-component-margin) * 2.5);
max-height: calc(100% - (var(--wpgmza-component-margin) * 2.5) - var(--wpgmza-component-margin));
}
.wpgmza_map[data-maps-engine="open-layers"] .wpgmza-inner-stack.bottom_left,
.wpgmza_map[data-maps-engine="open-layers-latest"] .wpgmza-inner-stack.bottom_left,
.wpgmza_map[data-maps-engine="leaflet"] .wpgmza-inner-stack.bottom_left,
.wpgmza_map[data-maps-engine="leaflet-azure"] .wpgmza-inner-stack.bottom_left,
.wpgmza_map[data-maps-engine="leaflet-stadia"] .wpgmza-inner-stack.bottom_left,
.wpgmza_map[data-maps-engine="leaflet-maptiler"] .wpgmza-inner-stack.bottom_left,
.wpgmza_map[data-maps-engine="leaflet-zerocost"] .wpgmza-inner-stack.bottom_left,
.wpgmza_map[data-maps-engine="leaflet-locationiq"] .wpgmza-inner-stack.bottom_left {
bottom: 0;
}
.wpgmza_map .wpgmza-inner-stack.bottom_right{
bottom: calc(var(--wpgmza-component-margin) * 1.4);
right: calc(var(--wpgmza-component-native-control-height) + var(--wpgmza-component-margin));
max-height: calc(100% - (var(--wpgmza-component-margin) * 1.4) - var(--wpgmza-component-margin));
}
.wpgmza_map[data-maps-engine="open-layers"] .wpgmza-inner-stack.bottom_right,
.wpgmza_map[data-maps-engine="open-layers-latest"] .wpgmza-inner-stack.bottom_right,
.wpgmza_map[data-maps-engine="leaflet"] .wpgmza-inner-stack.bottom_right,
.wpgmza_map[data-maps-engine="leaflet-azure"] .wpgmza-inner-stack.bottom_right,
.wpgmza_map[data-maps-engine="leaflet-stadia"] .wpgmza-inner-stack.bottom_right,
.wpgmza_map[data-maps-engine="leaflet-maptiler"] .wpgmza-inner-stack.bottom_right,
.wpgmza_map[data-maps-engine="leaflet-zerocost"] .wpgmza-inner-stack.bottom_right,
.wpgmza_map[data-maps-engine="leaflet-locationiq"] .wpgmza-inner-stack.bottom_right {
right: 0;
} .wpgmza_map .wpgmza-inner-stack > * {
background: var(--wpgmza-component-color);
box-shadow: var(--wpgmza-component-shadow);
border-radius: var(--wpgmza-component-border-radius);
margin: var(--wpgmza-component-margin);
overflow: hidden;
min-height: var(--wpgmza-component-native-control-height);
width: fit-content;
pointer-events: all;
font-size: var(--wpgmza-component-font-size);
backdrop-filter: var(--wpgmza-component-backdrop-filter);
}
.wpgmza_map .wpgmza-inner-stack input:not([type="checkbox"]),
.wpgmza_map .wpgmza-inner-stack select,
.wpgmza_map .wpgmza-inner-stack button{
font-size: var(--wpgmza-component-font-size);
line-height: var(--wpgmza-component-font-size);
padding: var(--wpgmza-component-inner-padding);
height: 100%;
margin: 0;
border: none;
box-sizing: border-box;
}
.wpgmza_map .wpgmza-inner-stack input[type=checkbox]{
-webkit-appearance: none;
-moz-appearance: none;
position: relative;
box-sizing: border-box;
padding: 0;
background: var(--wpgmza-color-white);
width: 15px;
height: 15px;
border: 2px solid var(--wpgmza-color-grey-400);
border-radius: 50%;
overflow: hidden;
min-width: unset;
box-shadow: none;
transition: 0.1s ease;
}
.wpgmza_map .wpgmza-inner-stack input[type=checkbox]:checked{
background: var(--wpgmza-component-color-accent);
border-color: var(--wpgmza-component-color-accent);
}
.wpgmza_map .wpgmza-inner-stack input[type=checkbox]:focus{
outline: none;
}
.wpgmza_map .wpgmza-inner-stack input[type=checkbox]:before{
display: none;
}
.wpgmza_map .wpgmza-inner-stack input[type=checkbox]:after{
content: "";
opacity: 0;
display: block;
left: 2px;
top: 0px;
position: absolute;
width: 4px;
height: 7px;
border: 2px solid var(--wpgmza-component-text-color-accent);
border-top: 0;
border-left: 0;
transform: rotate(40deg);
transition: 0.2s ease;
}
.wpgmza_map .wpgmza-inner-stack input[type=checkbox]:checked:after{
opacity: 1;
}
.wpgmza_map .wpgmza-inner-stack select{
padding-right: 30px;
background: transparent;
}
.wpgmza_map .wpgmza-inner-stack label{
font-size: var(--wpgmza-component-font-size);
line-height: var(--wpgmza-component-font-size);
padding: var(--wpgmza-component-inner-padding);
margin: 0;
}
.wpgmza_map .wpgmza-inner-stack button,
.wpgmza_map .wpgmza-inner-stack > * button,
.wpgmza_map .wpgmza-inner-stack .wpgmza-button,
.wpgmza_map .wpgmza-inner-stack button.wpgmza-button,
.wpgmza_map .wpgmza-inner-stack input[type='submit'],
.wpgmza_map .wpgmza-inner-stack input[type='search'],
.wpgmza_map .wpgmza-inner-stack input[type='button'],
.wpgmza_map .wpgmza-inner-stack input[type='reset'],
.wpgmza-standalone-component button,
.wpgmza-standalone-component > * button,
.wpgmza-standalone-component .wpgmza-button,
.wpgmza-standalone-component button.wpgmza-button,
.wpgmza-standalone-component input[type='submit'],
.wpgmza-standalone-component input[type='search'],
.wpgmza-standalone-component input[type='button'],
.wpgmza-standalone-component input[type='reset']{
font-size: var(--wpgmza-component-font-size);
line-height: var(--wpgmza-component-font-size);
padding: var(--wpgmza-component-inner-padding);
height: 100%;
margin: 0;
border: none;
background-color: var(--wpgmza-component-color);
color: var(--wpgmza-component-text-color);
cursor: pointer;
}
.wpgmza_map .wpgmza-inner-stack input::placeholder,
.wpgmza-standalone-component input::placeholder{
color: var(--wpgmza-component-text-color);
opacity: 0.6;
}
.wpgmza_map .wpgmza-inner-stack input[type]:focus{
outline: none;
} .wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator{
display: flex;
height: fit-content;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator label{
display: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator input,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator select{
padding-right: 5px;
background: transparent;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator select{
padding-right: 30px;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator input:focus,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator select:focus{
outline: none;    
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator .wpgmza-address-container{
display: flex;
position: relative;
}
.wpgmza-standalone-component .wpgmza-store-locator .wpgmza-address-container[data-autocomplete-state="busy"]:after,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator .wpgmza-address-container[data-autocomplete-state="busy"]:after{
content: "";
width: 16px;
height: 16px;
position: absolute;
right: 5px;
top: 12px;
border: 2px solid var(--wpgmza-color-grey-500);
border-radius: 14px;
border-bottom-color: transparent;
border-right-color: transparent;
box-sizing: border-box;
-webkit-animation: wpgmzaInfiniteRotate 0.5s forwards linear;
animation: wpgmzaInfiniteRotate 0.5s forwards linear;
animation-iteration-count: infinite;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator button{
min-height: var(--wpgmza-component-native-control-height);
font-weight: 500;
color: var(--wpgmza-color-grey-600);
transition:  color 0.25s ease;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator button:hover{
color: var(--wpgmza-color-grey-900);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator svg,
.wpgmza-standalone-component .wpgmza-store-locator svg{
padding:  12px;
stroke: var(--wpgmza-color-grey-500);
transition:  stroke 0.25s ease;
box-sizing: border-box;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator svg:not(.wpgmza-use-loc):hover,
.wpgmza-standalone-component .wpgmza-store-locator svg:not(.wpgmza-use-loc):hover{
cursor: pointer;
stroke: var(--wpgmza-color-grey-900);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator svg.wpgmza-loading,
.wpgmza-standalone-component .wpgmza-store-locator svg.wpgmza-loading{
display: none;
-webkit-animation: wpgmzaInfiniteRotate 1s forwards;
animation: wpgmzaInfiniteRotate 1s forwards;
animation-iteration-count: infinite;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator svg.wpgmza-loading > mask > path,
.wpgmza-standalone-component .wpgmza-store-locator svg.wpgmza-loading > mask > path{
fill: var(--wpgmza-color-grey-500);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator .wpgmza-reset,
.wpgmza-standalone-component .wpgmza-store-locator .wpgmza-reset{
display: none;
border-left: 1px solid var(--wpgmza-color-grey-100);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-state="busy"] .wpgmza-search{
display: none;
} 
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-state="busy"] .wpgmza-loading{
display: block;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-state="complete"] .wpgmza-reset,
.wpgmza-standalone-component .wpgmza-store-locator[data-state="complete"] .wpgmza-reset{
display: block;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator .wpgmza-error{
display: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator .wpgmza-error.visible {
top: 55px;
position: absolute;
display: block;
font-size: 12px;
text-align: left;
padding: 5px 15px;
width: calc(100% - calc(var(--wpgmza-component-margin) * 2));
box-shadow: var(--wpgmza-component-shadow);
background: var(--wpgmza-component-color);
border-radius: var(--wpgmza-component-border-radius);
box-sizing: border-box;
}
.wpgmza_map .wpgmza-inner-stack.bottom .wpgmza-store-locator .wpgmza-error.visible,
.wpgmza_map .wpgmza-inner-stack.bottom_left .wpgmza-store-locator .wpgmza-error.visible,
.wpgmza_map .wpgmza-inner-stack.bottom_right .wpgmza-store-locator .wpgmza-error.visible {
top: unset;
bottom: 55px;
} .wpgmza-standalone-component {
display: block;
width: 100%;
}
.wpgmza-standalone-component.wpgmza-auto-left {
margin-left: 0 !important;
margin-right: auto !important;
}
.wpgmza-standalone-component.wpgmza-auto-center {
margin-left: auto !important;
margin-right: auto !important;
}
.wpgmza-standalone-component.wpgmza-auto-right {
margin-left: auto !important;
margin-right: 0 !important;
}
.wpgmza-standalone-component input:not([type="checkbox"]),
.wpgmza-standalone-component select{
border: none;
font-size: 18px;
padding: 5px 10px;
margin: 0;
margin-right: 5px;
border-radius: var(--wpgmza-component-border-radius);
}
.wpgmza-standalone-component select{
padding-right: 30px;
}
.wpgmza-standalone-component label{
font-size: 14px;
margin: 0;
}
.wpgmza-standalone-component input:not([type="checkbox"]):focus,
.wpgmza-standalone-component select:focus{
border: none;
outline: none;
}
.wpgmza-standalone-component .wpgmza-store-locator {
display: inline-flex;
align-items: flex-end;
flex-wrap: wrap;
}
.wpgmza-standalone-component .wpgmza-store-locator > div{
display: flex;
flex-direction: column;
text-align: left;
}
.wpgmza-standalone-component .wpgmza-store-locator svg{
background: var(--wpgmza-component-color);
border-radius: var(--wpgmza-component-border-radius);
}
.wpgmza-standalone-component .wpgmza-store-locator svg:not(:first-of-type){
margin-left: 5px;
}
.wpgmza-standalone-component .wpgmza-store-locator .wpgmza-error{
flex-basis: 100%;
} .wpgmza_map .wpgmza-inner-stack *::-webkit-scrollbar{
width: .4rem;
}
.wpgmza_map .wpgmza-inner-stack *::-webkit-scrollbar-thumb{
background-color: var(--wpgmza-color-grey-200);
border-radius: 5px;
} .wpgmza_map .wpgmza-inner-stack svg.wpgmza-use-loc .line,
.wpgmza_map .wpgmza-inner-stack svg.wpgmza-use-loc .circle_outer,
.wpgmza-standalone-component svg.wpgmza-use-loc .line,
.wpgmza-standalone-component svg.wpgmza-use-loc .circle_outer {
stroke: var(--wpgmza-color-grey-500);
transition: 0.25s ease;
}
.wpgmza_map .wpgmza-inner-stack svg.wpgmza-use-loc .circle_inner,
.wpgmza-standalone-component svg.wpgmza-use-loc .circle_inner {
fill: var(--wpgmza-color-grey-500);
transition: 0.25s ease;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-use-my-location:hover svg.wpgmza-use-loc .line,
.wpgmza_map .wpgmza-inner-stack .wpgmza-use-my-location:hover svg.wpgmza-use-loc .circle_outer,
.wpgmza_map .wpgmza-inner-stack svg.wpgmza-use-loc:hover .line,
.wpgmza_map .wpgmza-inner-stack svg.wpgmza-use-loc:hover .circle_outer,
.wpgmza-standalone-component .wpgmza-use-my-location:hover svg.wpgmza-use-loc .line,
.wpgmza-standalone-component .wpgmza-use-my-location:hover svg.wpgmza-use-loc .circle_outer,
.wpgmza-standalone-component svg.wpgmza-use-loc:hover .line,
.wpgmza-standalone-component svg.wpgmza-use-loc:hover .circle_outer {
stroke: var(--wpgmza-color-grey-900);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-use-my-location:hover svg.wpgmza-use-loc .circle_inner,
.wpgmza_map .wpgmza-inner-stack svg.wpgmza-use-loc:hover .circle_inner,
.wpgmza-standalone-component .wpgmza-use-my-location:hover svg.wpgmza-use-loc .circle_inner,
.wpgmza-standalone-component svg.wpgmza-use-loc:hover .circle_inner{
fill: var(--wpgmza-color-grey-900);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-use-my-location.wpgmza-button,
.wpgmza-standalone-component .wpgmza-use-my-location.wpgmza-button{
padding: 0;
height: var(--wpgmza-component-native-control-height); 
width: var(--wpgmza-component-native-control-height); 
border-radius: var(--wpgmza-component-border-radius);
}
.wpgmza_map .wpgmza-inner-stack svg.wpgmza-multiply,
.wpgmza-standalone-component svg.wpgmza-multiply{
stroke: var(--wpgmza-color-grey-500);
} .wpgmza_map .wpgmza-google-maps-api-error-overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: var(--wpgmza-color-black-overlay);
z-index: 5;
overflow-y: auto;
-webkit-animation: wpgmzaFadeIn 0.5s forwards;
animation: wpgmzaFadeIn 0.5s forwards;
}
.wpgmza_map .wpgmza-google-maps-api-error-overlay .error-overlay-inner{
background: var(--wpgmza-color-white);
box-shadow: var(--wpgmza-shadow-high);
width: 500px;
max-width: 80%;
position: absolute;
left: 50%;
top: 10%;
font-size: 13px;
box-sizing: border-box;
padding: 20px;
border-radius: 5px;
transform: translateX(-50%);
}
.wpgmza_map .wpgmza-google-maps-api-error-overlay .error-overlay-inner h2{
margin: 0;
padding-bottom: 15px;
font-weight: 400;
font-size: 1.3em;
border-bottom: var(--wpgmza-color-grey-100) solid 1px;
}
.wpgmza_map .wpgmza-google-maps-api-error-overlay .error-overlay-inner p{
margin: 10px 0;
}
.wpgmza_map .wpgmza-google-maps-api-error-overlay .error-overlay-inner ul{
margin: 10px 0;
list-style: none;
padding: 0;
}
.wpgmza_map .wpgmza-google-maps-api-error-overlay .error-overlay-inner ul li{
padding: 0 12px;
}
.wpgmza_map .wpgmza-google-maps-api-error-overlay .error-overlay-inner .notice{
position: relative !important;
width: fit-content !important;
background: none !important;
border: none !important;
box-shadow: none !important;
margin: 0 !important;
}
.wpgmza_map .wpgmza-google-maps-api-error-overlay .error-overlay-inner .notice:before{
content: "";
width: 8px;
height: 8px;
display: inline-block;
background: var(--wpgmza-color-grey-400);
border-radius: 12px;
margin-right: 8px;
}
.wpgmza_map .wpgmza-google-maps-api-error-overlay .error-overlay-inner .wpgmza-documentation-buttons a{
font-size: 0.85em;
text-decoration: none;
margin-left: 8px;
}
.wpgmza_map .wpgmza-google-maps-api-error-overlay .wpgmza-front-end-only{
font-size: 13px;
position: absolute;
bottom: 10px;
left: 10px;
color: var(--wpgmza-color-black);    
}  .wpgmza_map .gm-style button.gm-control-active,
.wpgmza_map .gm-style .gm-svpc,
.wpgmza_map .gmnoprint button,
.wpgmza_map .gmnoprint > div:not(.gm-style-mtc){
background: var(--wpgmza-component-color) !important;
backdrop-filter: var(--wpgmza-component-backdrop-filter);
}
.wpgmza_map .gm-style button.gm-control-active,
.wpgmza_map .gm-style .gm-svpc,
.wpgmza_map .gmnoprint > div:not(.gm-style-mtc){
border-radius: var(--wpgmza-component-border-radius) !important;
}
.wpgmza_map .gmnoprint .gm-style-mtc:first-child button{
border-top-left-radius: var(--wpgmza-component-border-radius) !important;
border-bottom-left-radius: var(--wpgmza-component-border-radius) !important;
}
.wpgmza_map .gmnoprint .gm-style-mtc:last-child button{
border-top-right-radius: var(--wpgmza-component-border-radius) !important;
border-bottom-right-radius: var(--wpgmza-component-border-radius) !important;
}
.wpgmza_map .gmnoprint > div > button.gm-control-active,
.wpgmza_map .gmnoprint.gm-bundled-control .gmnoprint{
backdrop-filter: none;
background: transparent !important;
}
.wpgmza_map .gmnoprint > div > button.gm-control-active + div{
background-color: var(--wpgmza-color-grey-100) !important;
}
.wpgmza_map .gm-style .gmnoprint.gm-style-cc > div,
.wpgmza_map .gm-style .gmnoprint .gm-style-cc,
.wpgmza_map .gm-style .gmnoprint .gm-style-cc button{
background: transparent !important;
background-color: transparent !important;
backdrop-filter: none !important;
}
.wpgmza_map .gm-style .gmnoprint .gm-compass button{
background: none !important;
}
.wpgmza_map .gm-style .gmnoprint .gm-compass > img{
display: none;
}
.wpgmza_map .gm-style .gmnoprint .gm-compass > .gm-compass-needle img{
width: 16px;
}
.wpgmza_map .gm-style .gm-style-iw-c {
color: var(--wpgmza-component-text-color);
background-color: var(--wpgmza-component-color);
backdrop-filter: var(--wpgmza-component-backdrop-filter);
border-radius: var(--wpgmza-component-border-radius);
}
.wpgmza_map .gm-style .gm-style-iw-tc::after {
background-color: var(--wpgmza-component-color);
backdrop-filter: var(--wpgmza-component-backdrop-filter);
}
.wpgmza_map .gm-style .gm-style-iw-c .gm-style-iw-d{
scrollbar-color:   var(--wpgmza-color-grey-500) transparent;
overflow: auto !important;
padding-bottom: 10px;
padding-right: 10px;
} .wpgmza_map .ol-viewport .ol-control button{
background: var(--wpgmza-component-color);
}
.wpgmza_map .ol-info-window-plain {
background: var(--wpgmza-component-color);
color: var(--wpgmza-component-text-color);
backdrop-filter: var(--wpgmza-component-backdrop-filter);
border-radius: var(--wpgmza-component-border-radius);
box-shadow: var(--wpgmza-shadow-high);
} .wpgmza_map .ol-viewport:first-child > .ol-unselectable:first-child .ol-layer:first-child > canvas:last-child{
filter : var(--wpgmza-ol-tile-filter);
} .wpgmza_map .leaflet-control-container .leaflet-bar a{
background: var(--wpgmza-component-color);
}
.wpgmza_map .leaflet-map-pane .leaflet-tile-pane {
filter : var(--wpgmza-leaflet-tile-filter);
}
.wpgmza_map .leaflet-popup .leaflet-popup-content-wrapper{
background: var(--wpgmza-component-color);
color: var(--wpgmza-component-text-color);
backdrop-filter: var(--wpgmza-component-backdrop-filter);
border-radius: var(--wpgmza-component-border-radius);
}
.wpgmza_map .leaflet-popup .leaflet-popup-tip{
background: var(--wpgmza-component-color);
backdrop-filter: var(--wpgmza-component-backdrop-filter);
} .wpgmza_map.wpgmza-auto-left {
margin-left: 0 !important;
margin-right: auto !important;
}
.wpgmza_map.wpgmza-auto-center {
margin-left: auto !important;
margin-right: auto !important;
}
.wpgmza_map.wpgmza-auto-right {
margin-left: auto !important;
margin-right: 0 !important;
}
.wpgmza-gdpr-compliance ~ .wpgmza-google-maps-api-error-overlay {
display: none;
} .wpgmza-integration-fields-wrapper {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.wpgmza-integration-fields-wrapper .wpgmza-integration-field{
display: flex;
gap: 0.25rem;
}
.wpgmza-integration-fields-wrapper .wpgmza-integration-field .wpgmza-integration-field-label{
font-weight: 500;
max-width: 30%;
flex: 2;
}
.wpgmza-integration-fields-wrapper .wpgmza-integration-field .wpgmza-integration-field-value{
max-width: 100%;
flex: 3;
}
.wpgmza-integration-fields-wrapper .wpgmza-integration-field .wpgmza-integration-field-value p{
margin-top: 0;
margin-bottom: 0.25rem;
}
.wpgmza-integration-fields-wrapper .wpgmza-integration-field .wpgmza-integration-field-value iframe,
.wpgmza-integration-fields-wrapper .wpgmza-integration-field .wpgmza-integration-field-value video,
.wpgmza-integration-fields-wrapper .wpgmza-integration-field .wpgmza-integration-field-value audio,
.wpgmza-integration-fields-wrapper .wpgmza-integration-field .wpgmza-integration-field-value img{
max-width: 100%;
} .wpgmza-internal-autocomplete-list {
position: fixed;
max-height: 300px;
overflow-y: auto;
background: var(--wpgmza-color-white);
display: flex;
flex-direction: column;
border: 1px solid var(--wpgmza-color-light);
border-radius: 5px;
box-shadow: var(--wpgmza-shadow-common);
z-index: 9999999;
}
.wpgmza-internal-autocomplete-list .wpgmza-internal-autocomplete-location{
display: flex;
flex-direction: column;
padding: 5px;
font-size: 0.8rem;
border-bottom: 1px solid var(--wpgmza-color-light);
cursor: pointer;
}
.wpgmza-internal-autocomplete-list .wpgmza-internal-autocomplete-location [data-autocomplete-field="adr"],
.wpgmza-internal-autocomplete-list .wpgmza-internal-autocomplete-location [data-autocomplete-field="type"]{
font-size: 0.7rem;
}
.wpgmza-internal-autocomplete-list .wpgmza-internal-autocomplete-location:hover{
background: var(--wpgmza-color-light);
}
.wpgmza-internal-autocomplete-list .wpgmza-internal-autocomplete-location:last-child{
border: none;
}
.wpgmza-internal-autocomplete-list .wpgmza-internal-autocomplete-location > *{
max-width: 100%;
text-overflow: ellipsis; 
overflow: hidden;
white-space:nowrap;
}
.wpgmza-internal-autocomplete-list .wpgmza-internal-autocomplete-location [data-autocomplete-meta-list] > [data-autocomplete-field]:before {
content : "•";
display: inline-block;
margin-left: 2px;
margin-right: 2px;
}
.wpgmza-internal-autocomplete-list .wpgmza-internal-autocomplete-location [data-autocomplete-meta-list] > [data-autocomplete-field]:first-child:before {
display: none;
} .wpgmza-gdpr-compliance.modern {
display: flex;
flex-direction: column;
font-size:  14px;
align-items: center;
}
.wpgmza-gdpr-compliance.modern .wpgmza-gdpr-image-placeholder{
max-width: 100%;
width: 800px;
overflow: hidden;
}
.wpgmza-gdpr-compliance.modern .wpgmza-gdpr-image-placeholder img{
opacity: 0.6;
width: 100%;
filter:  blur(5px) grayscale(20%);
transform: scale(1.1);
}
.wpgmza-gdpr-compliance.modern .wpgmza-gdpr-notice-card {
position: absolute;
width: 700px;
max-width: 100%;
background: var(--wpgmza-color-white);
box-sizing: border-box;
padding: 15px;
height: 70%;
overflow: hidden;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
box-shadow: var(--wpgmza-shadow-common);
border-radius: 5px;
}
.wpgmza-gdpr-compliance.modern .wpgmza-gdpr-inner-notice{
overflow: auto;
max-height: calc(100% - 30px);
display: flex;
flex-direction: column;
gap: 20px;
}
.wpgmza-gdpr-compliance.modern .wpgmza-gdpr-inner-notice p{
margin: 0;
}
.wpgmza-gdpr-compliance.modern .wpgmza-gdpr-inner-notice p span{
font-weight: 500;
}
.wpgmza-gdpr-compliance.modern .wpgmza-gdpr-notice-card .wpgmza-gdpr-button-container{
text-align: right;
margin: 0;
}
.wpgmza-gdpr-compliance.modern .wpgmza-gdpr-notice-card .wpgmza-gdpr-button-container button{
border: none;
background: var(--wpgmza-color-gray-200);
box-sizing: border-box;
padding: 8px 15px;
margin-top: 5px;
border-radius: 5px;
cursor: pointer;
opacity: 0.9;
}
.wpgmza-gdpr-compliance.modern .wpgmza-gdpr-notice-card .wpgmza-gdpr-button-container button:hover{
background: var(--wpgmza-color-gray-300);
} .wpgmza-preview-mode-banner {
background: linear-gradient(30deg, var(--wpgmza-color-blue), var(--wpgmza-color-cyan));
background-size: 200%;
color: var(--wpgmza-color-white);
padding: 10px;
font-size: 14px;
border-radius: 5px;
box-shadow: var(--wpgmza-shadow-common);
display: flex;
flex-direction: column;
gap: 5px;
}
.wpgmza-preview-mode-banner .wpgmza-preview-mode-banner-heading{
font-size: 17px;
font-weight: 500;
}
.wpgmza-preview-mode-banner .wpgmza-preview-mode-banner-subheading{
opacity: 0.9;
}
.wpgmza-preview-mode-banner .wpgmza-preview-mode-banner-shortcode-wrapper{
margin-top: 15px;
display: flex;
gap: 5px;
}
.wpgmza-preview-mode-banner .wpgmza-preview-mode-banner-shortcode-wrapper span{
opacity: 0.9;
}
.wpgmza-preview-mode-banner .wpgmza-preview-mode-banner-shortcode-wrapper strong{
font-weight: 500;
} .wpgmza_map .wpgmza-inner-stack input:focus,
.wpgmza_map .wpgmza-inner-stack select:focus,
.wpgmza_map .wpgmza-inner-stack a:focus,
.wpgmza_map .wpgmza-inner-stack button:focus,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator input:focus,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator select:focus,
.wpgmza_map .wpgmza-inner-stack .wpgmza-use-my-location:focus,
.wpgmza_map .wpgmza-aria-bridge:focus,
.wpgmza-standalone-component .wpgmza-aria-bridge:focus,
.wpgmza-standalone-component input:focus,
.wpgmza-standalone-component select:focus{
outline: none;
}
.wpgmza_map .wpgmza-inner-stack input:focus-visible,
.wpgmza_map .wpgmza-inner-stack select:focus-visible,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator input:focus-visible,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator select:focus-visible,
.wpgmza_map .wpgmza-inner-stack .wpgmza-use-my-location:focus-visible,
.wpgmza_map .wpgmza-aria-bridge:focus-visible {
outline: none;
box-shadow: inset 0 -2px 0 0 rgb(from var(--wpgmza-component-color-accent) r g b / 0.9);
}
.wpgmza_map .wpgmza-inner-stack input[type="checkbox"]:focus-visible,
.wpgmza_map .wpgmza-inner-stack input[type="radio"]:focus-visible,
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmza-aria-bridge:focus-visible,
.wpgmza_map .wpgmza-inner-stack a:focus-visible,
.wpgmza_map .wpgmza-inner-stack button:focus-visible,
.wpgmza-standalone-component .wpgmza-aria-bridge:focus-visible,
.wpgmza-standalone-component input:focus-visible,
.wpgmza-standalone-component select:focus-visible{
outline: 2px solid rgb(from var(--wpgmza-component-color-accent) r g b / 0.9);
outline-offset: -3px;
}
.wpgmza_map .wpgmza-inner-stack a:focus-visible,
.wpgmza_map .wpgmza-inner-stack button:focus-visible {
outline-offset: 2px;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator button:focus-visible{
outline-offset: -3px;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-aria-accent input:focus-visible,
.wpgmza_map .wpgmza-inner-stack .wpgmza-aria-accent select:focus-visible,
.wpgmza_map .wpgmza-inner-stack .wpgmza-aria-accent .wpgmza-store-locator input:focus-visible,
.wpgmza_map .wpgmza-inner-stack .wpgmza-aria-accent .wpgmza-store-locator select:focus-visible {
box-shadow: inset 0 -2px 0 0 rgb(from var(--wpgmza-color-gray-500) r g b / 0.9);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-aria-accent input[type="checkbox"]:focus-visible,
.wpgmza_map .wpgmza-inner-stack .wpgmza-aria-accent input[type="radio"]:focus-visible,
.wpgmza-standalone-component .wpgmza-aria-accent input:focus-visible,
.wpgmza-standalone-component .wpgmza-aria-accent select:focus-visible{
outline: 2px solid rgb(from var(--wpgmza-color-gray-500) r g b / 0.9);
}
.wpgmza_map .wpgmza-aria-accent .wpgmza-aria-bridge:focus-visible,
.wpgmza_map .wpgmza-inner-stack .wpgmza-aria-accent .wpgmza-use-my-location:focus-visible {
box-shadow: inset 0 -2px 0 0 rgb(from var(--wpgmza-color-white) r g b / 0.9);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-aria-accent  a:focus-visible,
.wpgmza-standalone-component .wpgmza-aria-accent a:focus-visible,
.wpgmza-standalone-component .wpgmza-aria-accent .wpgmza-aria-bridge:focus-visible{
outline: 2px solid rgb(from var(--wpgmza-color-white) r g b / 0.9);
}
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmza-aria-bridge:focus-visible,
.wpgmza_map .wpgmza-inner-stack input[type="checkbox"]:focus-visible,
.wpgmza_map .wpgmza-inner-stack input[type="radio"]:focus-visible {
box-shadow: none;
} @-webkit-keyframes wpgmzaInfiniteRotate {
0% { 
transform : rotate(0deg);
}
100% {
transform : rotate(360deg); 
}
}
@keyframes wpgmzaInfiniteRotate {
0% { 
transform : rotate(0deg);
}
100% {
transform : rotate(360deg); 
}
}
@-webkit-keyframes wpgmzaPopin {
0% { transform: scale(0); }
50% { transform: scale(1.1); }
100% {  transform: scale(1); }
}
@keyframes wpgmzaPopin {
0% { transform: scale(0); }
50% { transform: scale(1.1); }
100% {  transform: scale(1); }
}
@-webkit-keyframes wpgmzaFadeIn {
0% { opacity : 0; }
100% { opacity: 1; }
}
@keyframes wpgmzaFadeIn {
0% { opacity : 0; }
100% { opacity: 1; }
}.wpgmza_map .gm-svpc img {
max-width: initial;
} .wpgmza_map[data-maps-engine="google-maps"] *:focus {
outline: none;
} .wpgmza_map img:not(button>img){
border: none !important;
background-color:transparent !important;
box-shadow: none !important;
} .wpgmza_map img[src$="//maps.gstatic.com/mapfiles/api-3/images/google4.png"],
.wpgmza_map img[src='http://maps.gstatic.com/mapfiles/api-3/images/google_white5.png'] {
box-shadow: none !important;
} .wpgmza_table img {
box-shadow: none !important;    
} .wpgmza-rating-gradient-container{
display: inline-block;
vertical-align: middle;
border: 1px solid lightgray;
width: 128px;
height: 1em;
}
.wpgmza-rating-gradient-container>.wpgmza-rating-gradient{
height: 100%; background: #ff0000; background: -moz-linear-gradient(left, #ff0000 0%, #00ff00 128px); background: -webkit-linear-gradient(left, #ff0000 0%,#00ff00 128px); background: linear-gradient(to right, #ff0000 0%,#00ff00 128px); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#00ff00',GradientType=1 ); pointer-events: none;
transition: width 0.5s;
}
.wpgmza-rating-stars-container{
position: relative;
font-size: 1.5em;
cursor: pointer;
}
.wpgmza-rating-stars-container + .wpgmza-num-ratings{
position: relative;
}
.wpgmza-rating-stars-container>span{
position: absolute;
top: 0px;
left: 0px;
padding-top: 0.3em;
}
.wpgmza-rating-stars-container>span.wpgmza-background{
text-shadow: 0px 0px 2px black;
}
.wpgmza-rating-stars-container>span.wpgmza-foreground{
overflow: hidden;
color: yellow;
text-shadow: 0px -1px 3px orange inner;
}
.wpgmza-rating-thumbs-container, .wpgmza-rating-thumbs-container *{
display: inline-block;
vertical-align: middle;
}
.wpgmza-rating-thumbs-container{
background: ghostwhite; border: 1px solid lightgrey;
border-radius: 6px;
}
.wpgmza-rating-thumbs-container>span.wpgmza-downvote,
.wpgmza-rating-thumbs-container>span.wpgmza-upvote{
padding: 0.5em 1em;
}
.wpgmza-rating-thumbs-container i{
position: relative;
font-size: 1.5em;
top: 0.0em;
transition: top 0.6s;
}
.wpgmza-rating-thumbs-container .wpgmza-upvote>i{
top: -0.05em;
}
.wpgmza-rating-thumbs-container .wpgmza-down>i{
top: 0.05em;
}
.wpgmza-rating-thumbs-container .wpgmza-upvote:hover>i{
top: -0.25em;
}
.wpgmza-rating-thumbs-container .wpgmza-downvote:hover>i{
top: 0.25em;
}
.wpgmza-rating-thumbs-container>span.wpgmza-upvote{
border-left: 1px solid lightgrey;
}
.wpgmza-rating-thumbs-container>span:hover,
.wpgmza-rating-thumbs-container>span.wpgmza-remembered-rating{ background: -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(201,201,201,0.2) 100%); background: -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(201,201,201,0.2) 100%); background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(201,201,201,0.2) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ffffff', endColorstr='#33c9c9c9',GradientType=0 ); }
.wpgmza-rating-thumbs-container>span:active{ background: -moz-linear-gradient(bottom, rgba(255,255,255,0.5) 0%, rgba(201,201,201,0.2) 100%); background: -webkit-linear-gradient(bottom, rgba(255,255,255,0.5) 0%,rgba(201,201,201,0.2) 100%); background: linear-gradient(to top, rgba(255,255,255,0.5) 0%,rgba(201,201,201,0.2) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33c9c9c9', endColorstr='#80ffffff',GradientType=0 ); }
.wpgmza-rating.wpgmza-loading{
filter: grayscale(100%);
}
.wpgmza-google-html-overlay{
position: absolute;
}
.wpgmza_map .google-maps-control-user-location {
border: 0px;
margin: 10px;
padding: 0px;
text-transform: none;
appearance: none;
position: absolute;
cursor: pointer;
user-select: none;
border-radius: 2px;
height: 40px;
width: 40px;
box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
overflow: hidden;
background: var(--wpgmza-component-color);
}
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part {
display:block;
position: absolute;
pointer-events: none;
box-sizing: border-box;
}
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-circle{
border: 2px solid #666666;
width: 20px;
height: 20px;
left: 10px;
top: 10px;
border-radius: 20px;
}
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-top,
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-bottom{
width: 2px;
height: 6px;
background:#666666;
border-radius: 3px;
}
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-left,
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-right{
height: 2px;
width: 6px;
background: #666666;
border-radius: 3px;
}
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-top,
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-bottom{
left: 19px;
}
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-top{
top: 8px;
}
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-bottom{
bottom: 8px;
}
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-left,
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-right{
top: 19px;
}
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-left{
left: 8px;
}
.wpgmza_map .google-maps-control-user-location .google-maps-user-location-part.google-maps-user-location-part-right{
right: 8px;
}
.wpgmza_map .google-maps-control-user-location:hover .google-maps-user-location-part.google-maps-user-location-part-circle{
border-color: #333333;
}
.wpgmza_map .google-maps-control-user-location:hover .google-maps-user-location-part.google-maps-user-location-part-top,
.wpgmza_map .google-maps-control-user-location:hover .google-maps-user-location-part.google-maps-user-location-part-bottom,
.wpgmza_map .google-maps-control-user-location:hover .google-maps-user-location-part.google-maps-user-location-part-left,
.wpgmza_map .google-maps-control-user-location:hover .google-maps-user-location-part.google-maps-user-location-part-right{
background: #333333;
} .wpgmza_map .google-maps-control-reset-map {
border: 0px;
margin: 10px;
padding: 0px;
text-transform: none;
appearance: none;
position: absolute;
cursor: pointer;
user-select: none;
border-radius: 2px;
height: 40px;
width: 40px;
box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px -1px;
overflow: hidden;
background: var(--wpgmza-component-color);
}
.wpgmza_map .google-maps-control-reset-map .google-maps-reset-map-part {
display:block;
position: absolute;
pointer-events: none;
box-sizing: border-box;
}
.wpgmza_map .google-maps-control-reset-map .google-maps-reset-map-part.google-maps-reset-map-part-circle{
border: 2px solid #666666;
width: 16px;
height: 16px;
left: 12px;
top: 12px;
border-radius: 20px;
border-left-color: transparent;
transform: rotate(-45deg);
}
.wpgmza_map .google-maps-control-reset-map .google-maps-reset-map-part.google-maps-reset-map-part-arrow{
width: 3px;
height: 3px;
border: 3px solid #666666;
box-sizing: border-box;
border-right-color: transparent;
border-bottom-color: transparent;
transform: rotate(-135deg);
top: 15px;
left: 10px;
border-radius: 2px;
}
.wpgmza_map .google-maps-control-user-location:hover .google-maps-user-location-part.google-maps-reset-map-part-circle{
border-color: #333333;
border-left-color: transparent;
}
.wpgmza_map .google-maps-control-user-location:hover .google-maps-user-location-part.google-maps-reset-map-part-arrow{
border-color: #333333;
border-right-color: transparent;
border-bottom-color: transparent;
}.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(//nichehealthproject.ie/wp-content/plugins/wp-google-maps/lib/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}.wpgmza_carousel_image_holder img { 
width: auto;
margin: 0 auto;
display: block;
}
.wpgmza_carousel_info_holder { 
margin: 5px 0 0;
}
.wpgmza_marker_carousel .item {
padding: 30px 0px;
margin: 10px;
color: #FFF;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
text-align: center;
}
.wpgmza_marker_carousel .item .wpgmza_marker_title {
font-weight:bold;
font-size:1.3em;
}
.wpgmza_carousel_odd {
background: #388bd1;
}
.wpgmza_carousel_even {
background: #a1def8;
}html.with-featherlight{overflow:hidden}.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2147483647;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:rgba(0,0,0,0)}.featherlight:last-of-type{background:rgba(0,0,0,.8)}.featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle}.featherlight .featherlight-content{position:relative;text-align:left;vertical-align:middle;display:inline-block;overflow:auto;padding:25px 25px 0;border-bottom:25px solid transparent;margin-left:5%;margin-right:5%;max-height:95%;background:#fff;cursor:auto;white-space:normal}.featherlight .featherlight-inner{display:block}.featherlight link.featherlight-inner,.featherlight script.featherlight-inner,.featherlight style.featherlight-inner{display:none}.featherlight .featherlight-close-icon{position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;background:#fff;background:rgba(255,255,255,.3);color:#000;border:0;padding:0}.featherlight .featherlight-close-icon::-moz-focus-inner{border:0;padding:0}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0;-webkit-overflow-scrolling:touch}.featherlight iframe{border:0}.featherlight *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:0;margin-right:0;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}@media print{html.with-featherlight>*>:not(.featherlight){display:none}}table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
cursor: default !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
display: none !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
position: relative;
padding-left: 30px;
cursor: pointer;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
top: 50%;
left: 5px;
height: 1em;
width: 1em;
margin-top: -9px;
display: block;
position: absolute;
color: white;
border: 0.15em solid white;
border-radius: 1em;
box-shadow: 0 0 0.2em #444;
box-sizing: content-box;
text-align: center;
text-indent: 0 !important;
font-family: "Courier New", Courier, monospace;
line-height: 1em;
content: "+";
background-color: #31b131;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
content: "-";
background-color: #d33333;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td.dtr-control,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th.dtr-control {
padding-left: 27px;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th.dtr-control:before {
left: 4px;
height: 14px;
width: 14px;
border-radius: 14px;
line-height: 14px;
text-indent: 3px;
}
table.dataTable.dtr-column > tbody > tr > td.dtr-control,
table.dataTable.dtr-column > tbody > tr > th.dtr-control,
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
position: relative;
cursor: pointer;
}
table.dataTable.dtr-column > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-column > tbody > tr > th.dtr-control:before,
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
top: 50%;
left: 50%;
height: 0.8em;
width: 0.8em;
margin-top: -0.5em;
margin-left: -0.5em;
display: block;
position: absolute;
color: white;
border: 0.15em solid white;
border-radius: 1em;
box-shadow: 0 0 0.2em #444;
box-sizing: content-box;
text-align: center;
text-indent: 0 !important;
font-family: "Courier New", Courier, monospace;
line-height: 1em;
content: "+";
background-color: #31b131;
}
table.dataTable.dtr-column > tbody > tr.parent td.dtr-control:before,
table.dataTable.dtr-column > tbody > tr.parent th.dtr-control:before,
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
content: "-";
background-color: #d33333;
}
table.dataTable > tbody > tr.child {
padding: 0.5em 1em;
}
table.dataTable > tbody > tr.child:hover {
background: transparent !important;
}
table.dataTable > tbody > tr.child ul.dtr-details {
display: inline-block;
list-style-type: none;
margin: 0;
padding: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li {
border-bottom: 1px solid #efefef;
padding: 0.5em 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li:first-child {
padding-top: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details > li:last-child {
border-bottom: none;
}
table.dataTable > tbody > tr.child span.dtr-title {
display: inline-block;
min-width: 75px;
font-weight: bold;
}
div.dtr-modal {
position: fixed;
box-sizing: border-box;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 100;
padding: 10em 1em;
}
div.dtr-modal div.dtr-modal-display {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 50%;
height: 50%;
overflow: auto;
margin: auto;
z-index: 102;
overflow: auto;
background-color: #f5f5f7;
border: 1px solid black;
border-radius: 0.5em;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
div.dtr-modal div.dtr-modal-content {
position: relative;
padding: 1em;
}
div.dtr-modal div.dtr-modal-close {
position: absolute;
top: 6px;
right: 6px;
width: 22px;
height: 22px;
border: 1px solid #eaeaea;
background-color: #f9f9f9;
text-align: center;
border-radius: 3px;
cursor: pointer;
z-index: 12;
}
div.dtr-modal div.dtr-modal-close:hover {
background-color: #eaeaea;
}
div.dtr-modal div.dtr-modal-background {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 101;
background: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
div.dtr-modal div.dtr-modal-display {
width: 95%;
}
}.paginationjs{line-height:1.6;font-family:Marmelad,"Lucida Grande",Arial,"Hiragino Sans GB",Georgia,sans-serif;font-size:14px;box-sizing:initial}.paginationjs:after{display:table;content:" ";clear:both}.paginationjs .paginationjs-pages{float:left}.paginationjs .paginationjs-pages ul{float:left;margin:0;padding:0}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input,.paginationjs .paginationjs-nav{float:left;margin-left:10px;font-size:14px}.paginationjs .paginationjs-pages li{float:left;border:1px solid #aaa;border-right:none;list-style:none}.paginationjs .paginationjs-pages li>a{min-width:30px;height:28px;line-height:28px;display:block;background:#fff;font-size:14px;color:#333;text-decoration:none;text-align:center}.paginationjs .paginationjs-pages li>a:hover{background:#eee}.paginationjs .paginationjs-pages li.active{border:none}.paginationjs .paginationjs-pages li.active>a{height:30px;line-height:30px;background:#aaa;color:#fff}.paginationjs .paginationjs-pages li.disabled>a{opacity:.3}.paginationjs .paginationjs-pages li.disabled>a:hover{background:0 0}.paginationjs .paginationjs-pages li:first-child,.paginationjs .paginationjs-pages li:first-child>a{border-radius:3px 0 0 3px}.paginationjs .paginationjs-pages li:last-child{border-right:1px solid #aaa;border-radius:0 3px 3px 0}.paginationjs .paginationjs-pages li:last-child>a{border-radius:0 3px 3px 0}.paginationjs .paginationjs-go-input>input[type=text]{width:30px;height:28px;background:#fff;border-radius:3px;border:1px solid #aaa;padding:0;font-size:14px;text-align:center;vertical-align:baseline;outline:0;box-shadow:none;box-sizing:initial}.paginationjs .paginationjs-go-button>input[type=button]{min-width:40px;height:30px;line-height:28px;background:#fff;border-radius:3px;border:1px solid #aaa;text-align:center;padding:0 8px;font-size:14px;vertical-align:baseline;outline:0;box-shadow:none;color:#333;cursor:pointer;vertical-align:middle\9}.paginationjs.paginationjs-theme-blue .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-blue .paginationjs-pages li{border-color:#289de9}.paginationjs .paginationjs-go-button>input[type=button]:hover{background-color:#f8f8f8}.paginationjs .paginationjs-nav{height:30px;line-height:30px}.paginationjs .paginationjs-go-button,.paginationjs .paginationjs-go-input{margin-left:5px\9}.paginationjs.paginationjs-small{font-size:12px}.paginationjs.paginationjs-small .paginationjs-pages li>a{min-width:26px;height:24px;line-height:24px;font-size:12px}.paginationjs.paginationjs-small .paginationjs-pages li.active>a{height:26px;line-height:26px}.paginationjs.paginationjs-small .paginationjs-go-input{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-input>input[type=text]{width:26px;height:24px;font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-button{font-size:12px}.paginationjs.paginationjs-small .paginationjs-go-button>input[type=button]{min-width:30px;height:26px;line-height:24px;padding:0 6px;font-size:12px}.paginationjs.paginationjs-small .paginationjs-nav{height:26px;line-height:26px;font-size:12px}.paginationjs.paginationjs-big{font-size:16px}.paginationjs.paginationjs-big .paginationjs-pages li>a{min-width:36px;height:34px;line-height:34px;font-size:16px}.paginationjs.paginationjs-big .paginationjs-pages li.active>a{height:36px;line-height:36px}.paginationjs.paginationjs-big .paginationjs-go-input{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{width:36px;height:34px;font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-button{font-size:16px}.paginationjs.paginationjs-big .paginationjs-go-button>input[type=button]{min-width:50px;height:36px;line-height:34px;padding:0 12px;font-size:16px}.paginationjs.paginationjs-big .paginationjs-nav{height:36px;line-height:36px;font-size:16px}.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a{color:#289de9}.paginationjs.paginationjs-theme-blue .paginationjs-pages li>a:hover{background:#e9f4fc}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.active>a{background:#289de9;color:#fff}.paginationjs.paginationjs-theme-blue .paginationjs-pages li.disabled>a:hover{background:0 0}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]{background:#289de9;border-color:#289de9;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-green .paginationjs-pages li{border-color:#449d44}.paginationjs.paginationjs-theme-blue .paginationjs-go-button>input[type=button]:hover{background-color:#3ca5ea}.paginationjs.paginationjs-theme-green .paginationjs-pages li>a{color:#449d44}.paginationjs.paginationjs-theme-green .paginationjs-pages li>a:hover{background:#ebf4eb}.paginationjs.paginationjs-theme-green .paginationjs-pages li.active>a{background:#449d44;color:#fff}.paginationjs.paginationjs-theme-green .paginationjs-pages li.disabled>a:hover{background:0 0}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]{background:#449d44;border-color:#449d44;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-yellow .paginationjs-pages li{border-color:#ec971f}.paginationjs.paginationjs-theme-green .paginationjs-go-button>input[type=button]:hover{background-color:#55a555}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a{color:#ec971f}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li>a:hover{background:#fdf5e9}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.active>a{background:#ec971f;color:#fff}.paginationjs.paginationjs-theme-yellow .paginationjs-pages li.disabled>a:hover{background:0 0}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]{background:#ec971f;border-color:#ec971f;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-input>input[type=text],.paginationjs.paginationjs-theme-red .paginationjs-pages li{border-color:#c9302c}.paginationjs.paginationjs-theme-yellow .paginationjs-go-button>input[type=button]:hover{background-color:#eea135}.paginationjs.paginationjs-theme-red .paginationjs-pages li>a{color:#c9302c}.paginationjs.paginationjs-theme-red .paginationjs-pages li>a:hover{background:#faeaea}.paginationjs.paginationjs-theme-red .paginationjs-pages li.active>a{background:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-pages li.disabled>a:hover{background:0 0}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]{background:#c9302c;border-color:#c9302c;color:#fff}.paginationjs.paginationjs-theme-red .paginationjs-go-button>input[type=button]:hover{background-color:#ce4541}.paginationjs .paginationjs-pages li.paginationjs-next{border-right:1px solid #aaa\9}.paginationjs .paginationjs-go-input>input[type=text]{line-height:28px\9;vertical-align:middle\9}.paginationjs.paginationjs-big .paginationjs-pages li>a{line-height:36px\9}.paginationjs.paginationjs-big .paginationjs-go-input>input[type=text]{height:36px\9;line-height:36px\9}:root {
--wpgmza-component-panel-preferred-width: 400px;
} .wpgmza_map .wpgmza-inner-stack > .grouping {
position: relative;
margin: 0;
border-radius: 0;
box-shadow: var(--wpgmza-component-shadow-high);
overflow-y: auto;
height: 100%;
max-width: 100%;
width: var(--wpgmza-component-panel-preferred-width);
transition: 0.3s ease;
transform: translateX(-100%);
}
.wpgmza_map .wpgmza-inner-stack.right > .grouping{
transform: translateX(100%);
}
.wpgmza_map .wpgmza-inner-stack > .grouping.visible {
transform: translateX(0);
}
.wpgmza_map .wpgmza-inner-stack > .grouping svg{
max-height: var(--wpgmza-component-native-control-height);
max-width: var(--wpgmza-component-native-control-height);
padding: 12px;
box-sizing: border-box;
} .wpgmza_map .wpgmza-inner-stack > .legacy-listing-adapter {
width: var(--wpgmza-component-panel-preferred-width);
min-width: 280px;
} .wpgmza_map .wpgmza-inner-stack .grouping ~ .grouping-handle{
display: flex;
position: absolute;
margin: 0;
left: 0;
top: calc(var(--wpgmza-component-native-control-height) * 2);
width: calc(var(--wpgmza-component-native-control-height) / 2);
height: var(--wpgmza-component-native-control-height);
border-top-left-radius: 0;
border-bottom-left-radius: 0;
background: var(--wpgmza-component-color);
box-shadow: rgb(0 0 0 / 15%) 2px 2px 4px -1px;
transform: translateY(-50%);
border-left: 1px solid var(--wpgmza-color-grey-200);
cursor: pointer;
transition: left 0.3s ease;
box-sizing: border-box;
}
.wpgmza_map[data-maps-engine="open-layers"] .wpgmza-inner-stack.left .grouping ~ .grouping-handle{
top: calc(var(--wpgmza-component-native-control-height) * 3);
}
.wpgmza_map .wpgmza-inner-stack .grouping.visible ~ .grouping-handle{
left: 100%;
}
.wpgmza_map .wpgmza-inner-stack .grouping ~ .grouping-handle .icon{
height: 100%;
width: 100%;    
display: flex;
align-items: center;
justify-content: center;
}
.wpgmza_map .wpgmza-inner-stack .grouping ~ .grouping-handle .icon:after{
content: "";
display: block;
width:calc(var(--wpgmza-component-native-control-height) / 3);
height: calc(var(--wpgmza-component-native-control-height) / 3);
border: 2px solid var(--wpgmza-color-grey-500);
border-left: none;
border-bottom: none;
position: relative;
left: calc(0px - 15%);
transform: rotate(45deg) scale(0.8);
transition: border-color 0.25s ease;
}
.wpgmza_map .wpgmza-inner-stack .grouping.visible ~ .grouping-handle .icon:after{
transform: rotate(-135deg) scale(0.8);
left: calc(0px + 10%);
}
.wpgmza_map .wpgmza-inner-stack .grouping ~ .grouping-handle:hover .icon:after{
border-color: var(--wpgmza-color-900);
}
.wpgmza_map .wpgmza-inner-stack.right .grouping ~ .grouping-handle{
left: calc(100% - calc(var(--wpgmza-component-native-control-height) / 2));
border-left: none;
border-right: 1px solid var(--wpgmza-color-grey-200);
border-top-left-radius: var(--wpgmza-component-border-radius);
border-bottom-left-radius: var(--wpgmza-component-border-radius);
border-top-right-radius: 0;
border-bottom-right-radius: 0;
box-shadow: rgb(0 0 0 / 15%) -2px 2px 4px -1px;
}
.wpgmza_map .wpgmza-inner-stack.right .grouping ~ .grouping-handle .icon:after{
transform: rotate(-135deg) scale(0.8);
left: calc(0px + 10%);
}
.wpgmza_map .wpgmza-inner-stack.right .grouping.visible ~ .grouping-handle{
left: calc(0px - var(--wpgmza-component-native-control-height) / 2);
}
.wpgmza_map .wpgmza-inner-stack.right .grouping.visible ~ .grouping-handle .icon:after{
transform: rotate(45deg) scale(0.8);
left: calc(0px - 15%);
} .wpgmza_map.wpgmza-viewport-small .wpgmza-inner-stack {
--wpgmza-component-panel-preferred-width: calc(100% - var(--wpgmza-component-native-control-height));
}
.wpgmza_map.wpgmza-viewport-small .wpgmza-inner-stack.left > .grouping.visible ~ .grouping-handle{
left: calc(100% - var(--wpgmza-component-native-control-height));
}
.wpgmza_map.wpgmza-viewport-small .wpgmza-inner-stack.right > .grouping {
margin-left: var(--wpgmza-component-native-control-height);
}
.wpgmza_map.wpgmza-viewport-small .wpgmza-inner-stack.right > .grouping.visible ~ .grouping-handle{
left: calc(var(--wpgmza-component-native-control-height) / 2);
}
.wpgmza_map.wpgmza-viewport-small .wpgmza-inner-stack.right .grouping ~ .grouping-handle {
top: revert;
bottom: calc(var(--wpgmza-component-native-control-height) * 5);
}
.wpgmza_map.wpgmza-viewport-small .wpgmza-inner-stack.left.viewport-grouping .wpgmza-store-locator {
width: calc(100% - (var(--wpgmza-component-margin) * 3) - var(--wpgmza-component-native-control-height));
} .wpgmza_map .wpgmza-inner-stack .wpgmza-marker-listing-category-filter.wpgmza-dropdown label{
display: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-marker-listing-category-filter.wpgmza-list{
display: flex;
flex-direction: column;
min-width: 200px;
max-width: 100%;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-marker-listing-category-filter.wpgmza-list > label{
border-bottom: 1px solid var(--wpgmza-color-grey-100);
line-height: var(--wpgmza-component-font-size);
font-size: var(--wpgmza-component-font-size);
padding: var(--wpgmza-component-inner-padding);
padding-top: 12px;
padding-bottom: 12px;
}
.wpgmza-standalone-component .wpgmza-marker-listing-category-filter.wpgmza-list ul,
.wpgmza_map .wpgmza-inner-stack .wpgmza-marker-listing-category-filter.wpgmza-list ul{
list-style: none;
padding: 0;
padding-left: var(--wpgmza-component-margin);
}
.wpgmza-standalone-component .wpgmza-marker-listing-category-filter.wpgmza-list ul ul,
.wpgmza_map .wpgmza-inner-stack .wpgmza-marker-listing-category-filter.wpgmza-list ul ul{
padding-left: calc(var(--wpgmza-component-margin) * 2);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-marker-listing-category-filter.wpgmza-list ul label{
font-weight: 400;
font-size: var(--wpgmza-component-font-size);
color: var(--wpgmza-color-grey-800);
padding-right: calc(var(--wpgmza-component-margin) *2);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-marker-listing-category-filter.wpgmza-list ul li label{
cursor: pointer;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-marker-listing-category-filter.wpgmza-list ul li label:hover{
color: var(--wpgmza-color-charcoal);
}
.wpgmza-standalone-component .wpgmza-marker-listing-category-filter.wpgmza-dropdown{
display: inline-flex;
align-items: center;
flex-wrap: wrap;
}
.wpgmza-standalone-component .wpgmza-marker-listing-category-filter.wpgmza-dropdown label{
margin-right: 5px;
} .wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter {
margin-bottom: var(--wpgmza-component-native-control-height);
overflow-y: auto;
max-width: 100%;
}
.wpgmza_map .wpgmza-inner-stack.right .legacy-listing-adapter {
margin-right: calc(var(--wpgmza-component-native-control-height) + calc(var(--wpgmza-component-margin) * 2));
max-width: calc(100% - calc(var(--wpgmza-component-native-control-height) + calc(var(--wpgmza-component-margin) * 3)));
margin-bottom: calc(var(--wpgmza-component-margin) * 2.5);
} .wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmaps_blist_row,
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmza_basic_row .wpgmza-basic-listing-content-holder{
display: flex;
padding: var(--wpgmza-component-inner-padding);
border-bottom: 1px solid var(--wpgmza-color-grey-100);
font-size: var(--wpgmza-component-font-size);
transition: 0.2s ease;
}
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmaps_blist_row:hover,
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmza_basic_row .wpgmza-basic-listing-content-holder:hover{
cursor: pointer;
background: var(--wpgmza-color-grey-100);
}
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmaps_blist_row > *,
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmza_basic_row .wpgmza-basic-listing-content-holder > * {
margin-right: var(--wpgmza-component-margin);
}
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmaps_blist_row img{
max-width: 100%;
}
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmza_basic_row .wpgmza-basic-listing-content-holder .wpgmza-content-address-holder .wpgmza_marker_icon{
display: inline-block; 
max-width:14px;
margin-right: 5px;
}
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .wpgmza_basic_row .wpgmza-basic-listing-content-holder .wpgmza-content-address-holder .wpgmza-address{
display: inline-block;
vertical-align: middle;
font-size: calc(var(--wpgmza-component-font-size) * 0.8);
white-space: normal;
}  .wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .dataTables_wrapper {
font-size: var(--wpgmza-component-font-size);
}
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .dataTables_wrapper table.dataTable th,
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter .dataTables_wrapper table.dataTable td{
border: none;
border-bottom: 1px solid var(--wpgmza-color-grey-150);
}   .wpgmza-standalone-component .wpgmaps_blist_row {
display: flex;
cursor: pointer;
font-size: var(--wpgmza-component-font-size);
padding: var(--wpgmza-component-inner-padding);
background: var(--wpgmza-component-color);
margin-bottom: var(--wpgmza-component-margin);
border-radius: var(--wpgmza-component-border-radius);
box-shadow: var(--wpgmza-component-standalone-shadow);
transition: 0.2s ease;
}
.wpgmza-standalone-component .wpgmaps_blist_row:hover{
background: var(--wpgmza-color-grey-100);
}
.wpgmza-standalone-component .wpgmaps_blist_row div.wpgmza_div_marker{
max-width: unset !important;
max-height: unset !important;
margin-right: var(--wpgmza-component-margin);
}
.wpgmza-standalone-component .wpgmaps_blist_row .wpgmza_div_title{
font-weight: 500;
}  .wpgmza-standalone-component .wpgmza_basic_row{
padding: var(--wpgmza-component-inner-padding);
background: var(--wpgmza-component-color);
font-size: var(--wpgmza-component-font-size);
border-bottom: 1px solid var(--wpgmza-color-gray-100);
box-shadow: var(--wpgmza-component-standalone-shadow);
cursor: pointer;
transition: 0.2s ease;
}
.wpgmza-standalone-component .wpgmza_basic_row:hover{
background: var(--wpgmza-color-grey-100);
}
.wpgmza-standalone-component .wpgmza_basic_row:first-child{
border-top-left-radius: var(--wpgmza-component-border-radius);
border-top-right-radius: var(--wpgmza-component-border-radius);
}
.wpgmza-standalone-component .wpgmza_basic_row:last-child{
border-bottom: none;
border-bottom-left-radius: var(--wpgmza-component-border-radius);
border-bottom-right-radius: var(--wpgmza-component-border-radius);
}
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza-basic-listing-content-holder{
display: flex;
}
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza-basic-listing-image-holder{
order: 2;
min-width: 20%;
text-align: right;
}
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza-content-address-holder{
width: 80%;
}
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza_marker_title{
margin-bottom: var(--wpgmza-component-margin);
}
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza_marker_icon,
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza-address{
display: inline-block;
vertical-align: middle;
}
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza_marker_icon{
max-width: 15px;
margin-right: var(--wpgmza-component-margin);
}
.wpgmza-standalone-component .wpgmza_basic_row .wpgmza-desc{
margin-top: var(--wpgmza-component-margin);
} .wpgmza-standalone-component .wpgmza_marker_holder {
max-width: 100%;
width: 100%;
}
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter.advancedtable {
padding: 10px 0;
}
.wpgmza-standalone-component .dataTables_wrapper,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper{
width: 100%;
max-width: 100%;
font-size: var(--wpgmza-component-font-size);
}
.wpgmza-standalone-component .dataTables_wrapper table,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper table{
border-radius: var(--wpgmza-component-border-radius);
overflow: hidden;
}
.wpgmza-standalone-component .dataTables_wrapper .dataTables_length,
.wpgmza-standalone-component .dataTables_wrapper .dataTables_filter,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper .dataTables_length,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper .dataTables_filter{
margin-bottom: var(--wpgmza-component-margin);
}
.wpgmza-standalone-component .dataTables_wrapper table,
.wpgmza-standalone-component .dataTables_wrapper table tr:last-child td,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper table,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper table tr:last-child td{
border: none;
}
.wpgmza-standalone-component .dataTables_wrapper table tr th,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper table tr th{
font-weight: 500;
}
.wpgmza-standalone-component .dataTables_wrapper table tr th,
.wpgmza-standalone-component .dataTables_wrapper table tr td,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper table tr th,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper table tr td{
border: none;
border-bottom: 1px solid var(--wpgmza-color-grey-200);
background-color: var(--wpgmza-component-color);
transition: 0.2s ease;
box-sizing: border-box;
}
.wpgmza-standalone-component .dataTables_wrapper table tbody tr:hover td,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper table tbody tr:hover td{
cursor: pointer;
background-color: var(--wpgmza-color-grey-100);
}
.wpgmza-standalone-component .dataTables_wrapper .dataTables_paginate .paginate_button,
.wpgmza-standalone-component .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper .dataTables_paginate .paginate_button,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover{
border: none;
}
.wpgmza-standalone-component .dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.wpgmza-standalone-component .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
background: var(--wpgmza-component-color);
border: none;
border-radius: var(--wpgmza-component-border-radius);
}
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper .dataTables_paginate .paginate_button.current, 
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
background: var(--wpgmza-color-grey-200);
}
.wpgmza-standalone-component .dataTables_wrapper .dataTables_paginate .paginate_button:not(.disabled):hover,
.wpgmza_map .wpgmza-inner-stack .dataTables_paginate .paginate_button:not(.disabled):hover{
background: var(--wpgmza-color-grey-100);
color: var(--wpgmza-color-charcoal) !important;
border: none;
border-radius: var(--wpgmza-component-border-radius);
}
.wpgmza-standalone-component .dataTables_wrapper .dataTables_filter input,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper .dataTables_filter input{
margin-right: 0;
margin-left: 5px;
}
.wpgmza-standalone-component .dataTables_wrapper .dataTables_length select,
.wpgmza_map .wpgmza-inner-stack .dataTables_wrapper .dataTables_length select{
margin-left: 5px;
} .wpgmza-standalone-component .wpgmza_marker_carousel.owl-carousel .owl-item img.wpgmza_marker_icon,
.wpgmza_map .wpgmza-inner-stack .wpgmza_marker_carousel.owl-carousel .owl-item img.wpgmza_marker_icon{
margin: 0.5em auto;
width: auto;
}
.wpgmza-standalone-component .wpgmza_marker_carousel.owl-carousel .item,
.wpgmza_map .wpgmza-inner-stack .wpgmza_marker_carousel.owl-carousel .item {
font-size: var(--wpgmza-component-font-size);
padding-right: var(--wpgmza-component-margin);
padding-left: var(--wpgmza-component-margin);
}  .wpgmza-standalone-component .wpgmza-marker-grid,
.wpgmza_map .wpgmza-inner-stack .wpgmza-marker-grid{
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-marker-grid{
grid-template-columns: repeat(2, 1fr);
}
.wpgmza-standalone-component .wpgmza-marker-grid .wpgmza-grid-row,
.wpgmza_map .wpgmza-inner-stack .wpgmza-marker-grid .wpgmza-grid-row{
font-size:  var(--wpgmza-component-font-size);
background: var(--wpgmza-component-color);
padding: var(--wpgmza-component-margin);
margin: var(--wpgmza-component-margin);
border-radius: var(--wpgmza-component-border-radius);
box-shadow: var(--wpgmza-component-standalone-shadow);
overflow: hidden;
}
.wpgmza-standalone-component .wpgmza-marker-grid .wpgmza-grid-row .wpgmza-grid-item .wpgmza-basic-listing-image-holder {
max-height: 170px;
overflow: hidden;
position: relative;
} .wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item {
padding: var(--wpgmza-component-margin);
font-size: var(--wpgmza-component-font-size);
border-bottom: 1px solid var(--wpgmza-color-gray-300);
max-width: 100%;
width: 100vw;
cursor: pointer;
transition: 0.2s ease;
}
.wpgmza-standalone-component .wpgmza-panel-list-item {
padding: var(--wpgmza-component-margin);
font-size: var(--wpgmza-component-font-size);
background: var(--wpgmza-component-color);
border-radius: var(--wpgmza-component-border-radius-rounded);
margin-bottom: var(--wpgmza-component-margin);
box-shadow: var(--wpgmza-component-standalone-shadow);
width: 100%;
cursor: pointer;
transition: 0.2s ease;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item:hover,
.wpgmza-standalone-component .wpgmza-panel-list-item:hover {
background: var(--wpgmza-color-grey-100);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .panel-list-row,
.wpgmza-standalone-component .wpgmza-panel-list-item .panel-list-row{
display: flex;
align-items: center;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .panel-list-row .panel-list-col > * ,
.wpgmza-standalone-component .wpgmza-panel-list-item .panel-list-row .panel-list-col > * {
max-width: 100%;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .panel-list-row .panel-list-col,
.wpgmza-standalone-component .wpgmza-panel-list-item .panel-list-row .panel-list-col{
margin-right: var(--wpgmza-component-margin);
margin-left: var(--wpgmza-component-margin);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .panel-list-row .panel-list-col:last-child,
.wpgmza-standalone-component .wpgmza-panel-list-item .panel-list-row .panel-list-col:last-child{
margin-left: auto;
}
.wpgmza-standalone-component .wpgmza-panel-list-item .panel-list-row .panel-list-col:last-child{
margin-right: 0;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-title,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-title{
font-weight: 500;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-address,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-desc,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-address,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-desc{
color:  var(--wpgmza-color-grey-800);
font-size: calc(var(--wpgmza-component-font-size) * 0.85);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-gallery-container,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-gallery-container{
border-radius: var(--wpgmza-component-border-radius-rounded);
width: calc(var(--wpgmza-component-native-control-height) * 2);
height: calc(var(--wpgmza-component-native-control-height) * 2);
overflow: hidden;
position: relative; 
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-gallery-container img,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-gallery-container img{
position: absolute;
min-height: 100%;
max-height: 100%;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: auto;
max-width: unset;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-gallery-container .wpgmza-marker-gallery,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-gallery-container .wpgmza-marker-gallery .owl-carousel,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-gallery-container .wpgmza-marker-gallery .owl-carousel .owl-stage-outer,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-gallery-container .wpgmza-marker-gallery .owl-carousel .owl-stage,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-gallery-container .wpgmza-marker-gallery .owl-carousel .owl-stage .owl-item,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-gallery-container .wpgmza-marker-gallery,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-gallery-container .wpgmza-marker-gallery .owl-carousel,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-gallery-container .wpgmza-marker-gallery .owl-carousel .owl-stage-outer,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-gallery-container .wpgmza-marker-gallery .owl-carousel .owl-stage,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-gallery-container .wpgmza-marker-gallery .owl-carousel .owl-stage .owl-item{
height: 100%;
overflow: hidden;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-list-item .wpgmza-gallery-container,
.wpgmza-standalone-component .wpgmza-panel-list-item .wpgmza-gallery-container{
pointer-events: none;
} .wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter.carousel,
.wpgmza_map .wpgmza-inner-stack .legacy-listing-adapter.grid {
background: none;
box-shadow: none;
overflow: visible;
} .wpgmza_map .wpgmza-inner-stack .wpgmza-panel-view {
display: flex;
flex-direction: column;   
font-size: var(--wpgmza-component-font-size);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-view > *:not(:empty){
padding: 0 var(--wpgmza-component-margin);
margin-bottom: var(--wpgmza-component-margin);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-view .wpgmza-panel-actions{
margin: 0;
padding: 0;
max-height: var(--wpgmza-component-native-control-height);
display: flex;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-view .wpgmza-panel-actions svg {
cursor: pointer;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-view .wpgmza-panel-actions svg.wpgmza-close,
.wpgmza-standalone-component .wpgmza-panel-view .wpgmza-panel-actions svg.wpgmza-close {
fill: var(--wpgmza-color-grey-500);
transition: fill 0.25s ease;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-view .wpgmza-panel-actions svg.wpgmza-close:hover,
.wpgmza-standalone-component .wpgmza-panel-view .wpgmza-panel-actions svg.wpgmza-close:hover {
cursor: pointer;
fill: var(--wpgmza-color-grey-900);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-view .wpgmza-panel-actions .wpgmza-panel-actions-right {
margin-left: auto;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-view svg.wpgmza-mark path,
.wpgmza-standalone-component .wpgmza-panel-view svg.wpgmza-mark path{
fill: var(--wpgmza-color-grey-500);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-view svg.wpgmza-mark circle,
.wpgmza-standalone-component .wpgmza-panel-view svg.wpgmza-mark circle{
stroke: var(--wpgmza-color-grey-500);
}
.wpgmza-standalone-component .wpgmza-panel-info-window .wpgmza-address {
display: flex;
align-items: center;
} .wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions svg.wpgmza-directions rect,
.wpgmza-standalone-component .wpgmza-panel-info-window .wpgmza-panel-actions svg.wpgmza-directions rect{
fill: var(--wpgmza-color-grey-500);
transition: fill 0.25s ease;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions svg.wpgmza-directions .line,
.wpgmza-standalone-component .wpgmza-panel-info-window .wpgmza-panel-actions svg.wpgmza-directions .line{
stroke: var(--wpgmza-color-white);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions svg.wpgmza-directions .arrow,
.wpgmza-standalone-component .wpgmza-panel-info-window .wpgmza-panel-actions svg.wpgmza-directions .arrow{
fill: var(--wpgmza-color-white);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions svg.wpgmza-directions:hover rect,
.wpgmza-standalone-component .wpgmza-panel-info-window .wpgmza-panel-actions svg.wpgmza-directions:hover rect {
fill: var(--wpgmza-color-grey-900);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-nearby,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-directions{
padding: 10px;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-nearby .circle-left,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-nearby .circle-right,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-nearby .mark-dot {
stroke: var(--wpgmza-color-grey-500);
transition: 0.25s ease;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-nearby .mark-point {
fill: var(--wpgmza-color-grey-500);
transition: 0.25s ease;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-nearby:hover .circle-left,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-nearby:hover .circle-right,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-nearby:hover .mark-dot {
stroke: var(--wpgmza-color-grey-900);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-nearby:hover .mark-point {
fill: var(--wpgmza-color-grey-900);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-share .line,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-share .circle{
stroke: var(--wpgmza-color-grey-500);
transition: 0.25s ease;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-share:hover .line,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-panel-actions  svg.wpgmza-share:hover .circle{
stroke: var(--wpgmza-color-grey-900);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-gallery-container{
width: 100%;
max-height: min(var(--wpgmza-component-panel-preferred-width), 30%);
overflow: hidden;
padding: 0;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-gallery-container img{
width: 100%;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-gallery-container .wpgmza-marker-gallery .owl-carousel:not(.owl-loaded){
display: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-gallery-container .wpgmza-marker-gallery .owl-carousel .owl-item img{
margin: 0 !important;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-title {
font-size: 1.4em;
font-weight: 500;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-address {
display: flex;
align-items: center;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-address svg.wpgmza-mark,
.wpgmza-standalone-component .wpgmza-panel-info-window .wpgmza-address svg.wpgmza-mark{
padding-left: 0;
padding-right: 0;
width: 16px;
margin-right: 6px;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-custom-fields > div{
display: flex;
align-items: center;
margin-bottom: var(--wpgmza-component-margin);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-custom-fields > div i{
color: var(--wpgmza-color-grey-500);
width: 16px;
margin-right: 6px;
text-align: center;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-custom-fields .custom-field-label{
margin-right: 5px;
}
.wpgmza_map .wpgmza-infowindow .wpgmza_infowindow_description img,
.wpgmza_map .wpgmza-infowindow .wpgmza_infowindow_description video,
.wpgmza_map .wpgmza-infowindow .wpgmza_infowindow_description audio,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-description img,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-description video,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-description audio{
max-width: 100%;
}
.wpgmza_map .wpgmza-infowindow .wpgmza_infowindow_description h1,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-description h1{
font-size: calc(var(--wpgmza-component-font-size) * 2); 
}
.wpgmza_map .wpgmza-infowindow .wpgmza_infowindow_description h2,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-description h2{
font-size: calc(var(--wpgmza-component-font-size) * 1.4); 
}
.wpgmza_map .wpgmza-infowindow .wpgmza_infowindow_description h3,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-description h3{
font-size: calc(var(--wpgmza-component-font-size) * 1.2); 
}
.wpgmza_map .wpgmza-infowindow .wpgmza_infowindow_description hr,
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-description hr{
border: none;
border-top: 1px solid var(--wpgmza-color-grey-300);
} .wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-title,
.wpgmza-standalone-component .wpgmza-panel-actions{
display: none;    
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-inner{
background: var(--wpgmza-component-color-accent);
padding: var(--wpgmza-component-font-size);
color: var(--wpgmza-component-text-color-accent);
margin-bottom: 0;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-inner .wpgmza-directions__travel-mode{
justify-content: center;
margin-bottom: calc(var(--wpgmza-component-font-size) * 1.5);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-inner .wpgmza-directions__travel-mode .wpgmza-travel-mode-option{
max-width: var(--wpgmza-component-native-control-height);
text-align: center;
opacity: 0.4; 
cursor: pointer;
transition: 0.2s ease;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-inner .wpgmza-directions__travel-mode img {
max-width: 70%;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-inner .wpgmza-directions__travel-mode .wpgmza-travel-mode-option:hover,
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-inner .wpgmza-directions__travel-mode .wpgmza-travel-option__selected{
opacity: 1;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-inner label {
display: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row {
display: flex;
margin-bottom: 5px;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row input.wpgmza-address,
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row input.wpgmza-waypoint-via{ 
margin-right: 5px;
border-radius: var(--wpgmza-component-border-radius);
max-width:calc(100% - calc(var(--wpgmza-component-native-control-height) * 2));
width:calc(100% - calc(var(--wpgmza-component-native-control-height) * 2));
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row button{
background: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row button svg{
opacity: 0.7;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row button:hover svg{
opacity: 1;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row button svg .line,
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row button svg .circle_outer,
.wpgmza_map .wpgmza-inner-stack svg.wpgmza-multiply {
stroke: var(--wpgmza-component-text-color-accent);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row button svg .circle_inner{
fill: var(--wpgmza-component-text-color-accent);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row button:hover svg .line,
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row button:hover svg .circle_outer{
stroke: var(--wpgmza-component-text-color-accent);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row button:hover svg .circle_inner{
fill: var(--wpgmza-component-text-color-accent);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row svg.wpgmza-mark path{
fill: var(--wpgmza-component-text-color-accent);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row svg.wpgmza-circle circle,
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row svg.wpgmza-mark circle{
stroke: var(--wpgmza-component-text-color-accent);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row > svg{
min-width: 40px;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row .wpgmza_remove_via{
padding: 0;
height: var(--wpgmza-component-native-control-height); 
width: var(--wpgmza-component-native-control-height); 
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-input-row .wpgmza_remove_via svg{
padding: 14px;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-inner a{    
color: var(--wpgmza-component-text-color-accent);
text-decoration: none;
opacity: 0.8;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-inner a:hover{
opacity: 1;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-box-inner div.wpgmza-add-waypoint{
margin-top: calc(var(--wpgmza-component-margin));
font-size: 0.95em;
margin-left: var(--wpgmza-component-native-control-height);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-options-bar {
padding: var(--wpgmza-component-inner-padding);
display: flex;
margin-bottom: 0;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-options-bar .wpgmza-directions-buttons {
margin-left: auto;
} 
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-options-bar .wpgmza-directions-buttons input[type="button"] {
height: var(--wpgmza-component-native-control-height);
border-radius: var(--wpgmza-component-border-radius);
}  
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-options-bar a {
text-decoration: none;
text-transform: uppercase;
font-size: 0.8em;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-options__section{
width: 70%;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-options__section a{
line-height: var(--wpgmza-component-native-control-height);
box-sizing: border-box;
font-weight: 500;
opacity: 0.8;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-options__section a:hover{
opacity: 1;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-options{
display: flex;
flex-direction: column;
margin-top: calc(var(--wpgmza-component-margin) / 2);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-options label{
padding: 0;
margin-bottom: 5px;
font-size: 0.9em;
font-weight: 400;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-get-directions {
cursor: pointer;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-result-bar{
background:  var(--wpgmza-color-grey-100);
padding: var(--wpgmza-component-inner-padding);
font-size: 0.9em;
display: flex;
justify-content: flex-end;
margin-bottom:  0;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-result-bar a{
margin-left: 10px;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .wpgmza-directions-output-panel{
padding: 0;
font-size: var(--wpgmza-component-font-size);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .adp-list {
border: none; 
padding: 0;
padding-top: var(--wpgmza-component-margin);
padding-bottom: var(--wpgmza-component-margin);    
background: transparent;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .adp-list table,
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .adp-list tr td{
border: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .adp-list .adp-listsel{
background: var(--wpgmza-color-grey-100);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .adp,
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .adp table,
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .adp table td{
border: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-directions-box .adp-legal {
padding: var(--wpgmza-component-inner-padding);
}
.wpgmza_map .wpgmza-inner-stack input.wpgmza-get-directions {
background-color: var(--wpgmza-color-grey-200);
} .wpgmza-standalone-component .wpgmza-directions-box label{
display: none;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-locations,
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-options-bar{
font-size: var(--wpgmza-component-font-size);
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-box-inner .wpgmza-directions__travel-mode{
margin-top: var(--wpgmza-component-margin);
margin-bottom: var(--wpgmza-component-margin);
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-box-inner .wpgmza-directions__travel-mode .wpgmza-travel-mode-option{
width: var(--wpgmza-component-native-control-height);
height:var(--wpgmza-component-native-control-height);
text-align: center;
cursor: pointer;
transition: 0.2s ease;
border-radius: 50%;
margin-right: 10px;
opacity: 0.6; 
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-box-inner .wpgmza-directions__travel-mode img {
max-width: 60%;
filter: invert(100%);
opacity: 0.8;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-box-inner .wpgmza-directions__travel-mode .wpgmza-travel-mode-option:hover,
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-box-inner .wpgmza-directions__travel-mode .wpgmza-travel-option__selected{
opacity: 1;
background: var(--wpgmza-component-color);
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-input-row {
display: flex;
align-items: center;
margin-bottom: 5px;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-input-row > svg{
display: none;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-input-row label{
width: 10%;
min-width: 50px;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-input-row button{
background: var(--wpgmza-component-color);
border: none;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-input-row button svg{
padding: 12px;
opacity: 0.7;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-input-row button:hover svg{
opacity: 1;
}
.wpgmza-standalone-component .wpgmza-directions-input-row .wpgmza_remove_via{
padding: 0;
order:3;
margin-left: 5px;
height: var(--wpgmza-component-native-control-height); 
width: var(--wpgmza-component-native-control-height); 
border-radius: var(--wpgmza-component-border-radius)
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-input-row .wpgmza_remove_via svg{
padding: 14px;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-box-inner a{    
text-decoration: none;
opacity: 0.8;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-box-inner a:hover{
opacity: 1;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-box-inner div.wpgmza-add-waypoint{
margin-top: calc(var(--wpgmza-component-margin));
font-size: 0.95em;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-options-bar {
display: flex;
flex-direction: column;
margin-top: calc(var(--wpgmza-component-margin) * 1.5);
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-options-bar .wpgmza-directions-buttons {
margin-top: var(--wpgmza-component-margin);
} 
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-options-bar .wpgmza-directions-buttons input[type="button"] {
height: var(--wpgmza-component-native-control-height);
border-radius: var(--wpgmza-component-border-radius);
}  
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-options-bar a {
text-decoration: none;
text-transform: uppercase;
font-size: 0.8em;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-options__section{
width: 70%;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-options__section a{
line-height: var(--wpgmza-component-native-control-height);
box-sizing: border-box;
font-weight: 500;
opacity: 0.8;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-options__section a:hover{
opacity: 1;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-options{
display: flex;
flex-direction: column;
margin-top: calc(var(--wpgmza-component-margin) / 2);
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-get-directions {
cursor: pointer;
}
.wpgmza-directions-box .wpgmza-directions-result-bar{
font-size: 0.8em;
display: flex;
margin-top: calc(var(--wpgmza-component-margin) * 1.5); 
margin-bottom: calc(var(--wpgmza-component-margin) * 1.5); 
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-result-bar a{
margin-right: 10px;
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-output-panel{
padding: 0;
font-size: var(--wpgmza-component-font-size);
}
.wpgmza-standalone-component .wpgmza-directions-box .adp-list {
border: none; 
padding: 0;
padding-top: var(--wpgmza-component-margin);
padding-bottom: var(--wpgmza-component-margin);    
background: transparent;
}
.wpgmza-standalone-component .wpgmza-directions-box .adp-list table,
.wpgmza-standalone-component .wpgmza-directions-box .adp-list tr td{
border: none;
}
.wpgmza-standalone-component .wpgmza-directions-box .adp-list .adp-listsel{
background: var(--wpgmza-color-grey-100);
}
.wpgmza-standalone-component .wpgmza-directions-box .adp,
.wpgmza-standalone-component .wpgmza-directions-box .adp table,
.wpgmza-standalone-component .wpgmza-directions-box .adp table td{
border: none;
}
.wpgmza-standalone-component .wpgmza-directions-box .adp-legal {
padding: var(--wpgmza-component-inner-padding);
}
.wpgmza-standalone-component .wpgmza-directions-box .wpgmza-directions-options label {
display: block;   
}  .wpgmza_map .wpgmza-inner-stack.left.viewport-grouping .wpgmza-store-locator{
position: absolute;
left: 0;
top: 0;
z-index: 2;
width: calc(100% - (var(--wpgmza-component-margin) * 2));
}
.wpgmza_map .wpgmza-inner-stack.left.viewport-grouping .wpgmza-store-locator ~ .grouping{
padding-top: calc(var(--wpgmza-component-native-control-height) + (var(--wpgmza-component-margin) *2 ));
}
.wpgmza_map .wpgmza-inner-stack.left.viewport-grouping .wpgmza-store-locator .wpgmza-address-container {
flex-grow: 1;
}
.wpgmza_map .wpgmza-inner-stack.left.viewport-grouping .wpgmza-store-locator .wpgmza-address-container input{
width: 100%;
}
.wpgmza_map .wpgmza-inner-stack.left.viewport-grouping .legacy-listing-adapter{
left: 0;
position: absolute;
top: 0;
transition: left 0.3s ease;
}
.wpgmza_map .wpgmza-inner-stack.left.viewport-grouping.expanded .legacy-listing-adapter{
left:100%;
}
.wpgmza_map .wpgmza-inner-stack.left.viewport-grouping .legacy-listing-adapter{
margin-left: calc(var(--wpgmza-component-margin) * 3);
margin-top: calc(var(--wpgmza-component-native-control-height) + (var(--wpgmza-component-margin) * 2));
}
.wpgmza_map .wpgmza-inner-stack.right.viewport-grouping .wpgmza-store-locator,
.wpgmza_map .wpgmza-inner-stack.right.viewport-grouping .legacy-listing-adapter{
right: calc(0px + var(--wpgmza-component-native-control-height) + var(--wpgmza-component-margin));
position: absolute;
top: 0;
transition: right 0.3s ease;
}
.wpgmza_map .wpgmza-inner-stack.right.viewport-grouping.expanded .wpgmza-store-locator,
.wpgmza_map .wpgmza-inner-stack.right.viewport-grouping.expanded .legacy-listing-adapter{
right:100%;
}
.wpgmza_map .wpgmza-inner-stack.right.viewport-grouping .legacy-listing-adapter{
margin-right: calc(var(--wpgmza-component-margin) * 3);
margin-top: calc(var(--wpgmza-component-native-control-height) + (var(--wpgmza-component-margin) * 2));
}
.wpgmza_map .wpgmza-inner-stack.left.viewport-grouping ~ .wpgmza-inner-stack.top_left {
margin-left: calc(var(--wpgmza-component-margin) * 2);
transition: margin-left 0.3s ease;
}
.wpgmza_map .wpgmza-inner-stack.left.viewport-grouping.expanded ~ .wpgmza-inner-stack.top_left {
margin-left: calc(min(var(--wpgmza-component-panel-preferred-width), var(--wpgmza--viewport-panels-max-width)) + (var(--wpgmza-component-margin) * 2)); 
}
.wpgmza_map .wpgmza-inner-stack.right.viewport-grouping ~ .wpgmza-inner-stack.top_right {
margin-right: calc(var(--wpgmza-component-margin) * 2);
transition: margin-right 0.3s ease;
}
.wpgmza_map .wpgmza-inner-stack.right.viewport-grouping.expanded ~ .wpgmza-inner-stack.top_right {
margin-right: calc(min(var(--wpgmza-component-panel-preferred-width), var(--wpgmza--viewport-panels-max-width)) + (var(--wpgmza-component-margin) * 2)); 
}
.wpgmza_map .wpgmza-inner-stack.left.viewport-grouping ~ .wpgmza-inner-stack.bottom_left {
margin-left: 0;
transition: margin-left 0.3s ease;
}
.wpgmza_map .wpgmza-inner-stack.left.viewport-grouping.expanded ~ .wpgmza-inner-stack.bottom_left {
margin-left: min(var(--wpgmza-component-panel-preferred-width), var(--wpgmza--viewport-panels-max-width)); 
}
.wpgmza_map .wpgmza-inner-stack.right.viewport-grouping ~ .wpgmza-inner-stack.bottom_right {
margin-right: 0;
transition: margin-right 0.3s ease;
}
.wpgmza_map .wpgmza-inner-stack.right.viewport-grouping.expanded ~ .wpgmza-inner-stack.bottom_right {
margin-right: min(var(--wpgmza-component-panel-preferred-width), var(--wpgmza--viewport-panels-max-width)); 
} .wpgmza-infowindow [data-hide-in-infowindows="true"],
[data-wpgmza-marker-listing] [data-hide-in-marker-listings="true"] .wpgmza_marker_holder [data-hide-in-marker-listings="true"]{
display: none;
}
.wpgmza-infowindow .wpgmza_infowindow_title,
.wpgmza-infowindow .wpgmza_infowindow_address,
.wpgmza-infowindow .wpgmza_infowindow_description{
white-space: normal; 
}
.wpgmza-infowindow .wpgmza_infowindow_title { 
font-weight: bold; 
} .wpgmza-gallery {
overflow: hidden;
}
.wpgmza-gallery .wpgmza-gallery-stage {
display: flex;
transition: 0.2s ease;
transform: translateX(calc(0px - var(--wpgmza-gallery-index) * 100%));
}
.wpgmza-gallery .wpgmza-gallery-stage .wpgmza-gallery-item {
flex-shrink: 0;
width: 100%;
position: relative;
}
.wpgmza-gallery .wpgmza-gallery-stage .wpgmza-gallery-item img{
position: relative;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.wpgmza-gallery {
position: relative;
}
.wpgmza-gallery .navigation {
opacity: 0;
position: absolute;
height: 100%;
width: var(--wpgmza-component-native-control-height);
top: 0;
transition: 0.2s ease;
}
.wpgmza-gallery:hover .navigation{
opacity: 0.8;
cursor: pointer;
}
.wpgmza-gallery .navigation:hover{
opacity:1;
}
.wpgmza-gallery:hover .navigation:hover:after{
border-color: var(--wpgmza-color-grey-300);
}
.wpgmza-gallery .navigation:after {
content: "";
position: relative;
display: block;
width: calc(var(--wpgmza-component-native-control-height) / 2);
height: calc(var(--wpgmza-component-native-control-height) / 2);
border: 3px solid var(--wpgmza-color-grey-500);
border-left: none;
border-bottom: none;
top: 50%;
left: 50%;
transform:  translate(-50%, -50%) rotate(-135deg);
transition: border-color 0.25s ease;
}
.wpgmza-gallery .navigation.right:after {
transform:  translate(-50%, -50%) rotate(45deg);
}
.wpgmza-gallery .navigation.left {
left: 0;
}
.wpgmza-gallery .navigation.right {
right: 0;
}
.wpgmza-gallery-lightbox {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #0000001f;
backdrop-filter: blur(5px);
display: flex;
align-items: center;
justify-content: center;
z-index: 9;
}
.wpgmza-gallery-lightbox-inner {
width: fit-content;
max-width: 50vw;
height: fit-content;
max-height: 80vh;
overflow: hidden;
background: var(--wpgmza-component-color);
border-radius: var(--wpgmza-component-border-radius);
padding: var(--wpgmza-component-margin);
box-shadow: var(--wpgmza-component-shadow);
}
.wpgmza-gallery-lightbox .wpgmza-gallery .wpgmza-gallery-item img {
max-width: calc(50vw - (var(--wpgmza-component-margin) * 2)) !important;
max-height: calc(80vh - (var(--wpgmza-component-margin) * 2)) !important;
width: auto !important;
} .wpgmza-infowindow .wpgmza-gallery .wpgmza-gallery-stage{
transition: transform 0.2s ease;
} .wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container {
position: absolute;
top: calc(var(--wpgmza-component-native-control-height) + var(--wpgmza-component-margin));
left: 0;
right: 0;
margin: var(--wpgmza-component-margin);
pointer-events: all;
display: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container.active {
display: block;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul {
padding: 0;
list-style: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul li input[type="checkbox"]{
display:none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul li label{
display: block;
margin-right: var(--wpgmza-component-margin);
margin-bottom: var(--wpgmza-component-margin);
padding: calc(var(--wpgmza-component-margin) * 0.4) calc(var(--wpgmza-component-margin) * 1.3);
font-size: calc(var(--wpgmza-component-font-size) * 0.88);
font-weight: 400;
width: fit-content;
border-radius: var(--wpgmza-component-native-control-height);
background: var(--wpgmza-component-color);
box-shadow: var(--wpgmza-component-shadow);
backdrop-filter: var(--wpgmza-component-backdrop-filter);
cursor: pointer;
transition: 0.2s all ease;
-webkit-animation: wpgmzaPopin 0.3s forwards;
animation: wpgmzaPopin 0.3s forwards;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul li label:hover,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul li input[type="checkbox"]:checked + label{
background: var(--wpgmza-component-color-accent);
color: var(--wpgmza-component-text-color-accent);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul li input[type="checkbox"] ~ ul {
display: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul li,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul li input[type="checkbox"]:checked ~ ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.wpgmza-standalone-component .wpgmza-store-locator svg.wpgmza-category-filter-toggle.active,
.wpgmza_map .wpgmza-inner-stack .wpgmza-store-locator svg.wpgmza-category-filter-toggle.active{
stroke: var(--wpgmza-component-color-accent);
} .wpgmza-standalone-component .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container {
display: none;
order: 99;
}
.wpgmza-standalone-component .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container.active {
display: block;
}
.wpgmza-standalone-component .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container {
margin-top: var(--wpgmza-component-margin);
width: 100%;
}
.wpgmza-standalone-component .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul {
list-style: none;
} 
.wpgmza-standalone-component .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul:first-child {
padding: var(--wpgmza-component-margin);
background: var(--wpgmza-component-color);
border-radius: var(--wpgmza-component-border-radius);
font-size: calc(var(--wpgmza-component-font-size) * 0.85);
}
.wpgmza-standalone-component .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul label {
font-size: calc(var(--wpgmza-component-font-size) * 0.85);
font-weight: 400;
}
.wpgmza-standalone-component .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul ul {
padding-left: calc(var(--wpgmza-component-margin) * 4);
}
.wpgmza-standalone-component .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul input[type="checkbox"] ~ ul{
display: none;
}
.wpgmza-standalone-component .wpgmza-store-locator[data-category-filter-type="checkbox"] .wpgmza-category-filter-container ul input[type="checkbox"]:checked ~ ul{
display: block;
} .wpgmza_map .wpgmza-inner-stack .wpgmza-category-legends {
padding: var(--wpgmza-component-margin);
max-height: 100%;
overflow-y:auto;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-category-legends .wpgmza-category-legends-heading{
font-size: calc(var(--wpgmza-component-font-size) * 0.95);
padding: 0;
display: block;
margin-bottom: var(--wpgmza-component-margin);
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-category-legends ul,
.wpgmza-standalone-component .wpgmza-category-legends ul{
list-style: none;    
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-category-legends > ul,
.wpgmza-standalone-component .wpgmza-category-legends > ul{
padding: 0;
margin: 0;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-category-legends ul li img,
.wpgmza-standalone-component .wpgmza-category-legends ul li img{
max-width: 24px;
max-height: 24px;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-category-legends ul ul,
.wpgmza-standalone-component .wpgmza-category-legends ul ul{
padding-left: calc(24px + var(--wpgmza-component-margin));
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-category-legends ul li,
.wpgmza-standalone-component .wpgmza-category-legends ul li {
margin-bottom: calc(var(--wpgmza-component-margin) * 0.5);
display: inline-flex;
align-items: center;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-category-legends ul li label,
.wpgmza-standalone-component .wpgmza-category-legends ul li label{
padding: 0;
font-weight: 100;
font-size: calc(var(--wpgmza-component-font-size) * 0.95);
margin-left: var(--wpgmza-component-margin);
margin-right: var(--wpgmza-component-margin);
} .wpgmza-pagination{
text-align: center;
height: 40px;
overflow: hidden;
padding: 5px;
}
.wpgmza-pagination > .paginationjs{
display: inline-block;
}
.wpgmza-pagination > .paginationjs .paginationjs-pages{
float: none;
}
.wpgmza-pagination > .paginationjs .paginationjs-pages li{
margin: 0;
border: none;
width: 30px;
height: 30px;
border: none;
box-sizing: border-box;
margin-left: 2px;
margin-right: 2px;
}
.wpgmza-pagination > .paginationjs .paginationjs-pages li > a{
height: 30px;
width: 30px;
border-radius: 30px;
border: none;
font-size: 12px;
background-color: transparent;
transition: background 0.3s ease;
}
.wpgmza-pagination > .paginationjs .paginationjs-pages li.active > a{
background: var(--wpgmza-color-grey-100);
color: var(--wpgmza-color-black);
}
.wpgmza-pagination > .paginationjs .paginationjs-pages li:hover > a{
background: var(--wpgmza-color-grey-100);
color: var(--wpgmza-color-black);
} .wpgmza-rating {
display: inline-block;
line-height: 20px;
} .wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-rating {
display: inline-flex;
align-items: center;
font-size: 0.9rem;
line-height: 0.9rem;
gap: 0.1rem;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-rating .wpgmza-rating-stars-container > span {
padding-top: 0;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-rating .wpgmza-rating-stars-container .wpgmza-background {
text-shadow: none;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-rating .wpgmza-rating-stars-container .wpgmza-foreground {
color:var(--wpgmza-component-color-accent);
padding-top: 0em;
}
.wpgmza_map .wpgmza-inner-stack .wpgmza-panel-info-window .wpgmza-rating .wpgmza-rating-stars-container + .wpgmza-num-ratings{
position: inherit;
} .wpgmza-route-instruction-icon .wpgmza-route-maneuver {
background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/maneuvers.png);
background-size: 19px 630px;
width: 16px;
height: 16px;
display: none;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-ferry{
display:block;
background-position:0 -614px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-ferry-train{
display:block;
background-position:0 -566px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-merge{
display:block;
background-position:0 -143px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-name-change,
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-depart,
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-straight{
display:block;
background-position:0 -534px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-fork-left{
display:block;
background-position:0 -550px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-ramp-left{
display:block;
background-position:0 -598px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-roundabout-left{
display:block;
background-position:0 -197px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-turn-left,
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-keep-left{
display:block;
background-position:0 -413px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-turn-sharp-left{
display:block;
background-position:0 0;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-turn-slight-left{
display:block;
background-position:0 -378px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-uturn-left{
display:block;
background-position:0 -305px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-fork-right{
display:block;
background-position:0 -499px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-ramp-right{
display:block;
background-position:0 -429px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-roundabout-right{
display:block;
background-position:0 -232px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-turn-right,
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-keep-right{
display:block;
background-position:0 -483px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-turn-sharp-right{
display:block;
background-position:0 -582px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-turn-slight-right{
display:block;
background-position:0 -51px;
}
.wpgmza-route-instruction-icon .wpgmza-route-maneuver.wpgmza-route-maneuver-uturn-right{
display:block;
background-position:0 -35px;
}
.wpgmza-route-instruction-inner {
display: flex;
padding: 10px;
border-bottom: 1px solid var(--wpgmza-color-gray-200);
background:var(--wpgmza-color-gray-100);
cursor: pointer;
}
.wpgmza-route-instruction-inner .wpgmza-route-instruction-icon {
min-width: 30px;
}
.wpgmza-route-instruction-inner .wpgmza-route-instruction-metric {
margin-left:auto;
display: flex;
flex-direction: column;
align-items:end;
font-size: 0.8rem;
font-weight: 600;
opacity: 0.8;
min-width: 120px;
}
.wpgmza-route-instruction-inner .wpgmza-route-instruction-metric > * {
text-align: right;
}
.wpgmza-route-instruction-inner .wpgmza-route-instruction-description {
max-width: 75%;
display: flex;
font-size: 0.9rem;
}
.wpgmza-route-instruction-inner .wpgmza-route-instruction-description .wpgmza-route-instruction-step-no{
min-width: 30px;
opacity: 0.7;
font-weight: 600;
}
.gm-style-iw-d .wpgmza-route-instruction-inner {
max-width: 400px;
border-radius: 5px;
border: none;
}
.wpgmza-directions-stop {
padding: 10px;
font-size: 1.2rem;
border-bottom: 1px solid var(--wpgmza-color-gray-200);
background:var(--wpgmza-color-gray-100);
}
.wpgmza-directions-travel-time {
padding: 5px 10px;
font-size: 0.7rem;
border-top: 1px solid var(--wpgmza-color-gray-200);
border-bottom: 1px solid var(--wpgmza-color-gray-200);
background: var(--wpgmza-color-gray-100);
display: flex;
align-items:stretch;
}
.wpgmza-directions-travel-time > div{
opacity: 0.8;
}
.wpgmza-directions-travel-time > div:last-child {
margin-left:auto;
}
.wpgmza-route-selection {
font-size: 0.85rem;
border-bottom: 1px solid var(--wpgmza-color-gray-200);
border-top: 1px solid var(--wpgmza-color-gray-200);
background:var(--wpgmza-color-gray-100);
margin-bottom: 20px;
display: flex;
flex-direction: column;
}
.wpgmza-route-selection .wpgmza-route-selection-heading{
padding: 5px 10px;
}
.wpgmza-route-selection .wpgmza-route-selection-item{
padding: 5px 10px;
cursor: pointer;
border-top: 1px solid var(--wpgmza-color-gray-200);
display: flex;
align-items: center;
transition: background 0.5s ease;
}
.wpgmza-route-selection .wpgmza-route-selection-item:hover,
.wpgmza-route-selection .wpgmza-route-selection-item.current-route{
background: var(--wpgmza-color-gray-200);
}
.wpgmza-route-selection .wpgmza-route-selection-item .wpgmza-route-selection-description{
font-weight: 500;
opacity: 0.8;
font-size: 0.9rem;
display: flex;
align-items:center;
}
.wpgmza-route-selection .wpgmza-route-selection-item .wpgmza-route-selection-description .wpgmza-route-selection-type{
font-size: 0.6rem;
padding: 0 4px;
border-radius: 3px;
opacity: 0.9;
background: var(--wpgmza-color-white);
margin-left: 7px;
}
.wpgmza-route-selection .wpgmza-route-selection-item .wpgmza-route-selection-metrics{
margin-left: auto;
text-align: right;
font-size: 0.7rem;
opacity: 0.8;
}
.wpgmza-directions-route-warnings {
font-size: 0.7rem;
border-bottom: 1px solid var(--wpgmza-color-gray-200);
background: var(--wpgmza-color-gray-100);
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
.wpgmza-directions-route-warnings > div{
padding: 5px 10px;
border-top: 1px solid var(--wpgmza-color-gray-200);
}
.wpgmza-directions-route-warnings > div:first-child{
border-top: none;
}
.wpgmza-directions-notifications {
text-align: center;
font-size: 0.8rem;
padding: 5px !important;
opacity: 0.8;
border-top: 1px solid var(--wpgmza-color-gray-200);
border-bottom: 1px solid var(--wpgmza-color-gray-200);
background: var(--wpgmza-color-gray-100);
}
.wpgmza-print-directions,
.wpgmza-reset-directions {
cursor: pointer;
}
@media screen and (max-width: 960px){
.wpgmza-pagination {
min-height: 48px;
}
.paginationjs .paginationjs-pages li,
.paginationjs .paginationjs-pages li.active > a,
.paginationjs .paginationjs-pages li > a{
min-width: 48px;
min-height: 48px;
line-height: 48px;
box-sizing: border-box;
}
}.fancybox-wrap,.fancybox-skin,.fancybox-outer,.fancybox-inner,.fancybox-image,.fancybox-wrap iframe,.fancybox-wrap object,.fancybox-nav,.fancybox-nav span,.fancybox-tmp{padding:0;margin:0;border:0;outline:0;vertical-align:top}.fancybox-wrap{position:absolute;top:0;left:0;z-index:8020}.fancybox-skin{position:relative;background:#f9f9f9;color:#444;text-shadow:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.fancybox-opened{z-index:8030}.fancybox-opened .fancybox-skin{-webkit-box-shadow:0 10px 25px rgba(0,0,0,0.5);-moz-box-shadow:0 10px 25px rgba(0,0,0,0.5);box-shadow:0 10px 25px rgba(0,0,0,0.5)}.fancybox-outer,.fancybox-inner{position:relative}.fancybox-inner{overflow:hidden}.fancybox-type-iframe .fancybox-inner{-webkit-overflow-scrolling:touch}.fancybox-error{color:#444;font:14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;margin:0;padding:15px;white-space:nowrap}.fancybox-image,.fancybox-iframe{display:block;width:100%;height:100%}.fancybox-image{max-width:100%;max-height:100%}#fancybox-loading,.fancybox-close,.fancybox-prev span,.fancybox-next span{background-image:url(//nichehealthproject.ie/wp-content/plugins/ddprodm/build/fancybox/fancybox_sprite.png)}#fancybox-loading{position:fixed;top:50%;left:50%;margin-top:-22px;margin-left:-22px;background-position:0 -108px;opacity:.8;cursor:pointer;z-index:8060}#fancybox-loading div{width:44px;height:44px;background:url(//nichehealthproject.ie/wp-content/plugins/ddprodm/build/fancybox/fancybox_loading.gif) center center no-repeat}.fancybox-close{position:absolute;top:-18px;right:-18px;width:36px;height:36px;cursor:pointer;z-index:8040}.fancybox-nav{position:absolute;top:0;width:40%;height:100%;cursor:pointer;text-decoration:none;background:transparent url(//nichehealthproject.ie/wp-content/plugins/ddprodm/build/fancybox/blank.gif);-webkit-tap-highlight-color:rgba(0,0,0,0);z-index:8040}.fancybox-prev{left:0}.fancybox-next{right:0}.fancybox-nav span{position:absolute;top:50%;width:36px;height:34px;margin-top:-18px;cursor:pointer;z-index:8040;visibility:hidden}.fancybox-prev span{left:10px;background-position:0 -36px}.fancybox-next span{right:10px;background-position:0 -72px}.fancybox-nav:hover span{visibility:visible}.fancybox-tmp{position:absolute;top:-99999px;left:-99999px;visibility:hidden;max-width:99999px;max-height:99999px;overflow:visible !important}.fancybox-lock{overflow:hidden !important;width:auto}.fancybox-lock body{overflow:hidden !important}.fancybox-lock-test{overflow-y:hidden !important}.fancybox-overlay{position:absolute;top:0;left:0;overflow:hidden;display:none;z-index:8010;background:url(//nichehealthproject.ie/wp-content/plugins/ddprodm/build/fancybox/fancybox_overlay.png)}.fancybox-overlay-fixed{position:fixed;bottom:0;right:0}.fancybox-lock .fancybox-overlay{overflow:auto;overflow-y:scroll}.fancybox-title{visibility:hidden;font:normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;position:relative;text-shadow:none;z-index:8050}.fancybox-opened .fancybox-title{visibility:visible}.fancybox-title-float-wrap{position:absolute;bottom:0;right:50%;margin-bottom:-35px;z-index:8050;text-align:center}.fancybox-title-float-wrap .child{display:inline-block;margin-right:-100%;padding:2px 20px;background:transparent;background:rgba(0,0,0,0.8);-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;text-shadow:0 1px 2px #222;color:#FFF;font-weight:bold;line-height:24px;white-space:nowrap}.fancybox-title-outside-wrap{position:relative;margin-top:10px;color:#fff}.fancybox-title-inside-wrap{padding-top:10px}.fancybox-title-over-wrap{position:absolute;bottom:0;left:0;color:#fff;padding:10px;background:#000;background:rgba(0,0,0,.8)}.header_2_f .et_pb_promo .et_pb_promo_description .et_pb_module_header:after{content:"";display:block}.header_2_f .lines .bottom_line{bottom:0}.header_2_f .lines .bottom_line_1{width:0;right:0}.header_2_f .lines .bottom_line_2{width:0;right:96%}.header_2_f .lines .top_line{width:0}.header_2_f .lines .right_line{right:0}.header_2_f .lines .left_line{bottom:0}.header_2_f .lines .left_line,.header_2_f .lines .right_line{height:0}.header_2_f .lines .line{position:absolute !important}.header_2_f.view_port .lines .line{-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;-webkit-transition:all .5s ease-out;transition:all .5s ease-out;-ms-transition:all .5s ease-out}.header_2_f.view_port .lines .bottom_line_2{transition-delay:0s;-moz-transition-delay:0s;-webkit-transition-delay:0s;-ms-transition-delay:0s}.header_2_f.view_port .lines .left_line{transition-delay:.5s;-moz-transition-delay:.5s;-webkit-transition-delay:.5s;-ms-transition-delay:.5s}.header_2_f.view_port .lines .top_line{transition-delay:1s;-moz-transition-delay:1s;-webkit-transition-delay:1s;-ms-transition-delay:1s}.header_2_f.view_port .lines .right_line{transition-delay:1.5s;-moz-transition-delay:1.5s;-webkit-transition-delay:1.5s;-ms-transition-delay:1.5s}.header_2_f .lines .bottom_line_1{animation:none !important;margin-bottom:0 !important}.header_2_f.view_port .lines .bottom_line_1{transition-delay:2s;-moz-transition-delay:2s;-webkit-transition-delay:2s;-ms-transition-delay:2s}.header_2_f.view_port .lines .left_line,.header_2_f.view_port .lines .right_line{height:100%}.header_2_f.view_port .lines .top_line{width:100%}.header_2_f.view_port .lines .bottom_line_2{width:4%}.header_2_f.view_port .lines .bottom_line_1{max-width:calc(100% - 610px);width:100%}@media only screen and (max-width:1390px){.header_2_f.view_port .lines .bottom_line_1{max-width:calc(100% - 590px)}}@media only screen and (max-width:980px){.header_2_f.view_port .lines .bottom_line_1{max-width:calc(100% - 540px)}}@media only screen and (max-width:767px){.header_2_f .et_pb_promo_description .et_pb_module_header{max-width:none !important}.header_2_f .et_pb_promo_description{text-align:center;margin-top:-17px !important}.header_2_f.view_port .lines .et_pb_column{height:200px}.header_2_f.view_port .lines .bottom_line_1{width:4%;max-width:none !important}}@media only screen and (max-width:480px){.header_2_f.view_port .lines .et_pb_column{height:150px}}.header_3_f .et_pb_promo_description .et_pb_module_header:before{content:"";opacity:1;height:2px;width:17px;display:inline-block;background-color:#0d80ff;vertical-align:middle;margin-right:11px}.header_3_f .lines .bottom_line{bottom:0}.header_3_f .lines .top_line{top:0}.header_3_f .lines .bottom_line,.header_3_f .lines .top_line{width:0;left:0}.header_3_f .lines .right_line_2{bottom:0}.header_3_f .lines .right_line_1{top:0}.header_3_f .lines .right_line{right:0}.header_3_f .lines .left_line{top:50%;transform:translate(0,-50%);left:0}.header_3_f .lines .left_line,.header_3_f .lines .right_line{height:0}.header_3_f .lines .line{position:absolute !important}.header_3_f.view_port .lines .line{-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;-webkit-transition:all .5s ease-out;transition:all .5s ease-out;-ms-transition:all .5s ease-out}.header_3_f.view_port .lines .left_line{transition-delay:0s;-moz-transition-delay:0s;-webkit-transition-delay:0s;-ms-transition-delay:0s}.header_3_f.view_port .lines .top_line,.header_3_f.view_port .lines .bottom_line{transition-delay:.5s;-moz-transition-delay:.5s;-webkit-transition-delay:.5s;-ms-transition-delay:.5s}.header_3_f.view_port .lines .right_line{transition-delay:1s;-moz-transition-delay:1s;-webkit-transition-delay:1s;-ms-transition-delay:1s}.header_3_f.view_port .lines .left_line{height:100%}.header_3_f.view_port .lines .right_line{height:15%}.header_3_f.view_port .lines .top_line{width:100%}.header_3_f.view_port .lines .bottom_line{width:100%}@media only screen and (max-width:1390px) and (min-width:981px){.header_3_f .et_pb_promo_description p{font-size:5vw}}@media only screen and (max-width:767px){.header_3_f .lines .et_pb_column{max-width:365px}}@media only screen and (max-width:480px){.header_3_f .lines{width:90% !important}.header_3_f .et_pb_promo_description .et_pb_module_header:before{display:none !important}}.header_4_f .et_pb_row .et_pb_column{margin:0 auto !important}.header_4_f .lines .top_line{top:0;width:0}.header_4_f .lines .top_line_right{right:0}.header_4_f .lines .right_line,.header_4_f .lines .left_line{top:0;height:0}.header_4_f .lines .right_line{right:0}.header_4_f .lines .line{position:absolute !important}.header_4_f.view_port .lines .line{-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;-webkit-transition:all .5s ease-out;transition:all .5s ease-out;-ms-transition:all .5s ease-out;transition-delay:.5s;-moz-transition-delay:.5s;-webkit-transition-delay:.5s;-ms-transition-delay:.5s}.header_4_f.view_port .lines .left_line,.header_4_f.view_port .lines .right_line{height:17px}.header_4_f.view_port .lines .top_line{width:17px}.header_4_f .et_pb_promo a.et_pb_promo_button:after{display:none !important}.header_4_f .et_pb_promo a.et_pb_promo_button:before{display:block;content:"";background-color:#fff !important;position:absolute;width:100%;height:100%;top:0;left:0;transform:scale(0);opacity:1;z-index:-1;transition:.3s;margin-left:0}.header_4_f .et_pb_promo a.et_pb_promo_button:hover:before{transform:scale(1)}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_content{padding:19px 0 0 38px;max-width:621px}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description strong:before{content:"";opacity:1;height:2px;width:17px;display:inline-block;background-color:#0d80ff;vertical-align:middle;margin-right:11px}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description strong{text-transform:uppercase}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description p:last-child{padding-bottom:0 !important;letter-spacing:.2px}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description strong,.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description p{font-weight:300 !important;font-size:16px;padding-bottom:20px;display:block}.header_5_f .et_pb_slider .et_pb_slide{box-shadow:none !important}.header_5_f .et_pb_container{height:auto !important}.header_5_f .et_pb_slider .et-pb-slider-arrows a:hover{color:#fff !important}.header_5_f .et_pb_slider .et-pb-slider-arrows a.et-pb-arrow-prev{left:2vw !important}.header_5_f .et_pb_slider .et-pb-slider-arrows a.et-pb-arrow-next{right:2vw !important}.header_5_f .et_pb_slider .et-pb-slider-arrows a.et-pb-arrow-prev:before{content:"#"}.header_5_f .et_pb_slider .et-pb-slider-arrows a.et-pb-arrow-next:before{content:"$"}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description{position:relative;margin:25vw 0 15vw;display:block;padding:0 !important}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2{border-left:4px solid}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2:before,.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2:after{content:"";display:block;position:absolute;width:0;height:0;border-right:4px solid;left:-4px}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2:before{border-top:4px solid;top:0}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2:after{border-bottom:4px solid;bottom:0}.header_5_f.view_port .et_pb_slider .et_pb_slide .et_pb_slide_description h2:after,.header_5_f.view_port .et_pb_slider .et_pb_slide .et_pb_slide_description h2:before{-webkit-animation:lineAnimateS 5s infinite;animation:lineAnimateS 1s infinite;animation-iteration-count:1;-webkit-animation-delay:.8s;animation-delay:.8s}.header_5_f.view_port .et_pb_slider .et_pb_slide .et_pb_slide_description h2:after,.header_5_f.view_port .et_pb_slider .et_pb_slide .et_pb_slide_description h2:before{transition-delay:.8s;-moz-transition-delay:.8s;-webkit-transition-delay:.8s;-ms-transition-delay:.8s;width:135px;height:20px}@keyframes lineAnimateS{0%{width:0;height:0}80%{width:135px;height:0}100%{height:20px;width:135px}}@media only screen and (min-width:1930px){.header_3_f .et_pb_column_1_2:first-child{padding:130px 50px 40px !important}}@media only screen and (max-width:1390px) and (min-width:981px){.header_5_f .et_pb_slider .et_pb_slide{padding:0 10%}}@media only screen and (max-width:980px){.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description{margin:100px 0 !important}.header_5_f .et_pb_slider .et_pb_slide{padding:0 13%}}@media only screen and (max-width:767px){.header_5_f .et_pb_slider .et-pb-slider-arrows a{display:none !important}.header_5_f .et_pb_slider .et_pb_slide{padding:0 6%}}@media only screen and (max-width:480px){.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description p strong:before{display:none !important}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description{margin:80px 0 !important}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_description h2{padding-left:15px}.header_5_f .et_pb_slider .et_pb_slide .et_pb_slide_content{padding:19px 0 0 18px}}.header_6_f .lines .line{height:0;right:0;left:0;margin:auto !important}.header_6_f.view_port .lines .line{height:100%;-moz-transition:all .5s ease-out;-o-transition:all .5s ease-out;-webkit-transition:all .5s ease-out;transition:all .5s ease-out;-ms-transition:all .5s ease-out;transition-delay:.7s;-moz-transition-delay:.7s;-webkit-transition-delay:.7s;-ms-transition-delay:.7s}#page-container #main-content .header_6_f a.et_pb_button:hover:before,#page-container #main-content .header_6_f a.et_pb_button:hover:after{width:100%;transition:800ms ease all}@media only screen and (max-width:480px){.header_6_f .et_pb_row a.et_pb_button{padding:14px 30px !important}}.header_7_f .et_pb_promo_description .et_pb_module_header:before,.header_7_f .et_pb_promo_description .et_pb_module_header:after{content:"";display:block;position:absolute;right:0;left:0;margin:auto;border-right:4px solid;border-left:4px solid;height:30px;width:100%;max-width:calc(100% - 8px)}.header_7_f .et_pb_promo_description .et_pb_module_header:before{border-top:4px solid;top:0}.header_7_f .et_pb_promo_description .et_pb_module_header:after{border-bottom:4px solid;bottom:0}.header_7_f.view_port .et_pb_promo_description .et_pb_module_header:after,.header_7_f.view_port .et_pb_promo_description .et_pb_module_header:before{-webkit-animation:lineAnimate 1.3s infinite;animation:lineAnimate 1.3s infinite;animation-iteration-count:1}@keyframes lineAnimate{0%{width:0;height:0}80%{max-width:calc(100% - 8px);width:100%;height:0}100%{height:30px;max-width:calc(100% - 8px);width:100%}}.header_7_f a.et_pb_button:after{content:'';display:block !important;position:absolute;right:inherit;top:inherit;left:0;bottom:0;height:2px;width:0;background:#fff;transition:400ms ease all;opacity:1 !important;margin:0}.header_7_f a.et_pb_button:before{content:'';display:block !important;position:absolute;top:0;right:0;height:2px;width:0;background:#fff;transition:400ms ease all;opacity:1 !important}.header_7_f a.et_pb_button:hover:after,.header_7_f a.et_pb_button:hover:before{width:100%;transition:800ms ease all}body.safari .header_7_f .et_pb_button_wrapper .et_pb_button{display:table !important;margin-left:auto !important;margin-right:auto !important}@media only screen and (max-width:767px){.header_7_f .et_pb_promo .et_pb_promo_description .et_pb_module_header{padding:19px 20px !important}}.header_8_f .et_pb_promo_description .et_pb_module_header:before,.header_8_f .et_pb_promo_description .et_pb_module_header:after{content:"";display:block;position:absolute;right:0;left:0;margin:auto;border-right:4px solid;border-left:4px solid;height:20px;width:133px}.header_8_f .et_pb_promo_description .et_pb_module_header:before{border-top:4px solid;top:0}.header_8_f .et_pb_promo_description .et_pb_module_header:after{border-bottom:4px solid;bottom:0}.header_8_f.view_port .et_pb_promo_description .et_pb_module_header:after,.header_8_f.view_port .et_pb_promo_description .et_pb_module_header:before{-webkit-animation:lineAnimate8 1.3s infinite;animation:lineAnimate8 1.3s infinite;animation-iteration-count:1}@keyframes lineAnimate8{0%{width:0;height:0}80%{width:133px;height:0}100%{height:20px;width:133px}}@media only screen and (max-width:980px){.header_8_f .et_pb_promo_description{padding-bottom:0 !important}}.buttons .et_pb_button_module_wrapper{text-align:center !important}#page-container #main-content a.super_size_button:hover{background:#fff;color:#bdbdbd !important}#page-container #main-content a.super_size_button:after,#page-container #main-content a.super_size_button:before{content:'';display:block !important;position:absolute;top:0;right:0;height:2px;width:0;background:#bdbdbd;transition:.4s ease all;opacity:1 !important}.button_large_size:after,.button_large_size:before{content:"";margin:0;opacity:1 !important;display:block !important}#page-container #main-content a.super_size_button:after{right:inherit;top:inherit;left:0;bottom:0}#page-container #main-content a.super_size_button:hover:after,#page-container #main-content a.super_size_button:hover:before{width:100%;transition:.8s ease all !important}.button_large_size:before{position:absolute;top:1px;right:1px;background:#fff;transition:.4s ease all;left:1px;bottom:1px;z-index:-1}.button_large_size:after{top:0;right:0;background:#242d2e;left:0;bottom:0;z-index:-2}#page-container .button_large_size:after{-webkit-transition:all .3s ease-in-out !important;-moz-transition:all .3s ease-in-out !important;transition:all .3s !important}.button_base_size:after,.button_round:after,.button_round:before{-webkit-transition:all .3s;-moz-transition:all .3s;-o-transition:all .3s;position:absolute}body:not(.safari) .button_large_size:hover:after{transform:rotate(90deg)}body.safari .button_large_size:after{width:100% !important;margin:auto}body.safari .button_large_size:hover:after{width:40% !important;margin:auto !important}.button_base_size:after{height:100%;left:-35%;top:0;transform-origin:top left;width:0;background:#fff;content:'';z-index:-1;transform:skew(50deg)}#page-container .button_base_size:after{transition:all .3s !important}.button_base_size:hover:after{width:135%;opacity:1 !important;transform:none}@media only screen and (max-width:480px){#page-container .et_pb_button_module_wrapper .button_M.et_pb_button{padding:10px 20px !important}.button_base_size:hover:after{width:145%}.button_base_size:after{left:-43% !important}}.button_small_size:after{background:#eee;content:"";height:155px;left:-75px;opacity:.2;position:absolute;top:-50px;-webkit-transform:rotate(35deg);transform:rotate(35deg);-webkit-transition:all 550ms cubic-bezier(.19,1,.22,1);transition:all 550ms cubic-bezier(.19,1,.22,1);width:50px;z-index:-10}.botton_circle:after,.button_small_size:hover:after{-webkit-transition:all 550ms cubic-bezier(.19,1,.22,1)}.button_small_size:hover:after{left:120%;opacity:1 !important}#page-container .button_small_size:hover:after{transition:all 550ms cubic-bezier(.19,1,.22,1) !important}#page-container #main-content a.default_button_module:hover{background:#fff;color:#bdbdbd !important}#page-container #main-content a.default_button_module:after,#page-container #main-content a.default_button_module:before{content:'';display:block !important;position:absolute;top:0;right:0;height:2px;width:0;background:#bdbdbd;transition:.4s ease all;opacity:1 !important}#page-container #main-content a.default_button_module:after{right:inherit;top:inherit;left:0;bottom:0}#page-container #main-content a.default_button_module:hover:after,#page-container #main-content a.default_button_module:hover:before{width:100%;transition:.8s ease all !important}@media only screen and (max-width:1390px){#page-container #main-content a.default_button_module,#page-container #main-content a.super_size_button{letter-spacing:2.4px !important}}#page-container #main-content .button_round:hover{border-color:transparent !important;color:#512da8 !important}.button_round:after,.button_round:before{content:'';display:block !important;border-style:solid;z-index:5;border-radius:5px;box-sizing:content-box}#page-container .button_round:after{transition:all .3s !important}.button_round:after{width:100%;height:0;border-width:0;bottom:0;left:0;margin-left:0 !important;display:block !important;box-shadow:inset -1px 0 0 #512da8,inset 1px 0 0 #512da8}.button_round:before{width:0;height:100%;border-width:0;top:0;right:0;-webkit-transition-delay:50ms;transition-delay:50ms;box-shadow:inset 0 -1px 0 #512da8,inset 0 1px 0 #512da8}.button_round:hover:before{width:100%}.button_round:hover:after{height:100%}.button_round:hover:after,.button_round:hover:before{opacity:1 !important}.button_square:after{height:100%;right:0;top:0;transform:skew(50deg);transform-origin:top left;width:0;background:#fff;content:'';position:absolute;z-index:-1}#page-container .button_square:after{-webkit-transition:all .3s !important;-moz-transition:all .3s !important;-o-transition:all .3s !important;transition:all .3s !important}.button_square:hover:after{width:140%;opacity:1 !important;transform:none !important}@media only screen and (max-width:480px){#page-container .et_pb_button_module_wrapper .button_M.et_pb_button{padding:10px 20px !important}.button_square:hover:after{width:150%}}.botton_circle:after{background:#eee;display:block !important;content:"";height:155px;right:-75px;opacity:.2;position:absolute;top:-50px;-webkit-transform:rotate(35deg);transform:rotate(35deg);transition:all 550ms cubic-bezier(.19,1,.22,1);width:50px;z-index:-10}.botton_circle:hover:after{right:120%;opacity:1 !important}#page-container .botton_circle:hover:after{-webkit-transition:all 550ms cubic-bezier(.19,1,.22,1) !important;transition:all 550ms cubic-bezier(.19,1,.22,1) !important}.button_color:after,.button_gradient_bg:after{content:"";display:block !important;background-color:#fff !important;margin:0 !important}#page-container .button_color:after,#page-container .button_gradient_bg:after{-webkit-transition:all .3s !important;-moz-transition:all .3s !important;-o-transition:all .3s !important}.button_color:after{width:100%;height:100%;position:absolute;top:0;left:0;opacity:1 !important;transform:scale(0);transition:all .3s;z-index:-1}.button_gradient_bg:after,.button_gradient_border:after,.solid_unique_button:before{position:absolute;top:1px;right:1px;left:1px;bottom:1px;z-index:-1}.button_color:hover:after{transform:scale(1)}.button_gradient_bg:after{opacity:0 !important;transform:rotate(180deg) scale(2);transition:all .3s}.button_gradient_bg:hover:after{transform:none;opacity:1 !important}.button_gradient_border:after{content:"";display:block !important;background-color:#fff !important;opacity:1 !important;margin:0 !important}#page-container .button_gradient_border:after{-webkit-transition:all .3s !important;-moz-transition:all .3s !important;-o-transition:all .3s !important;transition:all .3s !important}.button_gradient_border:hover:after{transform:rotate(-180deg) scale(2);opacity:0 !important}.solid_unique_button:after,.solid_unique_button:before{content:"";display:block !important;opacity:1 !important;margin:0}.solid_unique_button:before{background:#fff;transition:.4s ease all}.solid_unique_button:after{top:0;right:0;background:#242d2e;left:0;bottom:0;z-index:-2}#page-container .solid_unique_button:after{-webkit-transition:all .3s ease-in-out !important;-moz-transition:all .3s ease-in-out !important;transition:all .3s !important}body:not(.safari) .solid_unique_button:hover:after{transform:rotate(90deg)}body.safari .solid_unique_button:after{width:100% !important;margin:auto}body.safari .solid_unique_button:hover:after{width:40% !important;margin:auto !important}.button_unique_wrapper{display:table;margin:0 auto;position:relative;z-index:8}.button_unique:after,.button_unique:before,.button_unique_wrapper:after,.button_unique_wrapper:before{content:"";display:block !important;position:absolute;opacity:1 !important;height:100%;margin:auto !important;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out}.button_unique_wrapper:before{border-top:1px solid #242d2e;top:0;right:0}.button_unique_wrapper:after{border-bottom:1px solid #242d2e;bottom:0;left:0}.button_unique_wrapper:after,.button_unique_wrapper:before{z-index:0;width:30%;transition:all .3s;-webkit-transition-delay:50ms;transition-delay:50ms}.button_unique_wrapper:hover:before{right:50%;transform:translate(50%,0)}.button_unique_wrapper:hover:after{left:50%;transform:translate(-50%,0)}.button_unique:before{border-left:1px solid #242d2e;border-top:1px solid #242d2e;top:0;left:0}.button_unique:after{border-right:1px solid #242d2e;border-bottom:1px solid #242d2e;bottom:0;right:0}.button_unique:after,.button_unique:before{z-index:-1;width:60%;transition:all .3s}#page-container .button_unique:after{transition:all .3s !important}.button_unique:hover:after,.button_unique:hover:before{width:0 !important;height:0 !important;opacity:0 !important}.button_unique{display:block !important}.unique_left_and_right_borders:after,.unique_left_and_right_borders:before,.unique_top_and_bottom_borders:after,.unique_top_and_bottom_borders:before,.unique_with_borders:after,.unique_with_borders:before{content:"";display:block !important;position:absolute;opacity:1 !important;z-index:-1;margin:auto !important}.unique_top_and_bottom_borders:before{box-shadow:inset 0 -1px 0 #242d2e,inset 0 1px 0 #242d2e}.unique_top_and_bottom_borders:after,.unique_top_and_bottom_borders:before{top:0;right:0;height:100%;width:100%;bottom:0;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s}#page-container .unique_top_and_bottom_borders:after{-webkit-transition:all .3s ease-in-out !important;-moz-transition:all .3s ease-in-out !important;transition:all .3s !important}.unique_top_and_bottom_borders:hover:before{height:0 !important}#page-container .unique_top_and_bottom_borders:hover:after{height:100% !important;transition-delay:.3s !important}.unique_top_and_bottom_borders:after{height:0 !important;background-color:#242d2e}.unique_left_and_right_borders:before{box-shadow:inset -1px 0 0 #242d2e,inset 1px 0 0 #242d2e}.unique_left_and_right_borders:after,.unique_left_and_right_borders:before{top:0;right:0;width:100%;height:100%;left:0;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s}#page-container .unique_left_and_right_borders:after{-webkit-transition:all .3s ease-in-out !important;-moz-transition:all .3s ease-in-out !important;transition:all .3s !important}.unique_left_and_right_borders:hover:before{width:0 !important}#page-container .unique_left_and_right_borders:hover:after{width:100% !important;transition-delay:.3s !important}.unique_left_and_right_borders:after{width:0 !important;background-color:#242d2e}.unique_with_borders:before{border-left:1px solid #242d2e;border-bottom:1px solid #242d2e;bottom:0;left:0}.unique_with_borders:after{border-right:1px solid #242d2e;border-top:1px solid #242d2e;top:0;right:0}.unique_with_borders:after,.unique_with_borders:before{width:50%;height:50%;-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s}#page-container .unique_with_borders:after{-webkit-transition:all .3s ease-in-out !important;-moz-transition:all .3s ease-in-out !important;transition:all .3s !important}.unique_with_borders:hover:after,.unique_with_borders:hover:before{width:100% !important;height:100% !important}@media only screen and (max-width:980px){#page-container .buttons .et_pb_button_module_wrapper .button_M.et_pb_button{padding:10px 18px !important}}@media only screen and (max-width:767px){#page-container #main-content a.unique_with_borders,#page-container #main-content a.unique_left_and_right_borders,#page-container #main-content a.unique_top_and_bottom_borders,#page-container #main-content a.button_unique,#page-container #main-content a.solid_unique_button,#page-container #main-content a.button_gradient_border,#page-container #main-content a.button_gradient_bg,#page-container #main-content a.button_color,#page-container #main-content a.botton_circle,#page-container #main-content a.button_square,#page-container #main-content a.button_round,#page-container #main-content a.default_button_module,#page-container #main-content a.button_small_size,#page-container #main-content a.button_base_size,#page-container #main-content a.button_large_size,#page-container #main-content a.super_size_button{padding:7px 15px !important}}@media only screen and (max-width:480px){#page-container .et_pb_button_module_wrapper .button_M.et_pb_button{padding:10px 20px !important}#page-container #main-content a.unique_with_borders,#page-container #main-content a.unique_left_and_right_borders,#page-container #main-content a.unique_top_and_bottom_borders,#page-container #main-content a.button_unique,#page-container #main-content a.solid_unique_button,#page-container #main-content a.button_gradient_border,#page-container #main-content a.button_gradient_bg,#page-container #main-content a.button_color,#page-container #main-content a.botton_circle,#page-container #main-content a.button_square,#page-container #main-content a.button_round,#page-container #main-content a.default_button_module,#page-container #main-content a.button_small_size,#page-container #main-content a.button_base_size,#page-container #main-content a.button_large_size,#page-container #main-content a.super_size_button{padding:10px 19px !important}}