
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */
html.remodal-is-locked {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}

/* Anti FOUC */
.remodal, [data-remodal-id] {
	display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
	position: fixed;
	z-index: 9999;
	top: -5000px;
	right: -5000px;
	bottom: -5000px;
	left: -5000px;
	display: none;
}

/* Necessary styles of the wrapper */
.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: -.05em;
	content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay, .remodal-wrapper {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
	position: relative;
	outline: none;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.remodal-is-initialized {
	/* Disable Anti-FOUC */
	display: inline-block;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */
.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened {
	-webkit-filter: blur(3px);
	filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
	background: rgba(43, 46, 56, .9);
}

.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
	-webkit-animation-duration: .3s;
	animation-duration: .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;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
	padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.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: .3s;
	animation-duration: .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;
}

/* Vertical align of the modal dialog */
.remodal, .remodal-wrapper:after {
	vertical-align: middle;
}

/* Close button */
.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 .2s;
	transition: color .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: "×";
	text-align: center;
}

/* Dialog buttons */
.remodal-confirm, .remodal-cancel {
	font: inherit;
	display: inline-block;
	overflow: visible;
	min-width: 110px;
	margin: 0;
	padding: 12px 0;
	cursor: pointer;
	-webkit-transition: background .2s;
	transition: background .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;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
	padding: 0;
	border: 0;
}

/* Keyframes
   ========================================================================== */
@-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(.95);
		transform: scale(.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(.95);
		transform: scale(.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 queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
	.remodal {
		max-width: 700px;
	}
}

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
	background: #2b2e38;
}

.lt-ie9 .remodal {
	width: 700px;
}

table.dataTable {
	width: 100%;
	margin: 0 auto;
	clear: both;
	border-collapse: separate;
	border-spacing: 0;
}

table.dataTable thead th, table.dataTable tfoot th {
	font-weight: bold;
}

table.dataTable thead th, table.dataTable thead td {
	padding: 10px 18px;
	border-bottom: 1px solid #111;
}

table.dataTable thead th:active, table.dataTable thead td:active {
	outline: none;
}

table.dataTable tfoot th, table.dataTable tfoot td {
	padding: 10px 18px 6px 18px;
	border-top: 1px solid #111;
}

table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting {
	cursor: pointer;
}

table.dataTable thead .sorting {
	background: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps/images/sort_both.png") no-repeat center right;
}

table.dataTable thead .sorting.nitro-lazy {
	background: none !important;
}

table.dataTable thead .sorting_asc {
	background: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps/images/sort_asc.png") no-repeat center right;
}

table.dataTable thead .sorting_asc.nitro-lazy {
	background: none !important;
}

table.dataTable thead .sorting_desc {
	background: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps/images/sort_desc.png") no-repeat center right;
}

table.dataTable thead .sorting_desc.nitro-lazy {
	background: none !important;
}

table.dataTable thead .sorting_asc_disabled {
	background: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps/images/sort_asc_disabled.png") no-repeat center right;
}

table.dataTable thead .sorting_asc_disabled.nitro-lazy {
	background: none !important;
}

table.dataTable thead .sorting_desc_disabled {
	background: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps/images/sort_desc_disabled.png") no-repeat center right;
}

table.dataTable thead .sorting_desc_disabled.nitro-lazy {
	background: none !important;
}

table.dataTable tbody tr {
	background-color: #fff;
}

table.dataTable tbody tr.selected {
	background-color: #b0bed9;
}

table.dataTable tbody th, table.dataTable tbody td {
	padding: 8px 10px;
}

table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
	border-top: 1px solid #ddd;
}

table.dataTable.row-border tbody tr:first-child th, table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th, table.dataTable.display tbody tr:first-child td {
	border-top: none;
}

table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

table.dataTable.cell-border tbody tr th:first-child, table.dataTable.cell-border tbody tr td:first-child {
	border-left: 1px solid #ddd;
}

table.dataTable.cell-border tbody tr:first-child th, table.dataTable.cell-border tbody tr:first-child td {
	border-top: none;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
	background-color: #f9f9f9;
}

table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
	background-color: #abb9d3;
}

table.dataTable.hover tbody tr:hover, table.dataTable.hover tbody tr.odd:hover, table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover, table.dataTable.display tbody tr.odd:hover, table.dataTable.display tbody tr.even:hover {
	background-color: #f5f5f5;
}

table.dataTable.hover tbody tr:hover.selected, table.dataTable.hover tbody tr.odd:hover.selected, table.dataTable.hover tbody tr.even:hover.selected, table.dataTable.display tbody tr:hover.selected, table.dataTable.display tbody tr.odd:hover.selected, table.dataTable.display tbody tr.even:hover.selected {
	background-color: #a9b7d1;
}

table.dataTable.order-column tbody tr>.sorting_1, table.dataTable.order-column tbody tr>.sorting_2, table.dataTable.order-column tbody tr>.sorting_3, table.dataTable.display tbody tr>.sorting_1, table.dataTable.display tbody tr>.sorting_2, table.dataTable.display tbody tr>.sorting_3 {
	background-color: #f9f9f9;
}

table.dataTable.order-column tbody tr.selected>.sorting_1, table.dataTable.order-column tbody tr.selected>.sorting_2, table.dataTable.order-column tbody tr.selected>.sorting_3, table.dataTable.display tbody tr.selected>.sorting_1, table.dataTable.display tbody tr.selected>.sorting_2, table.dataTable.display tbody tr.selected>.sorting_3 {
	background-color: #acbad4;
}

table.dataTable.display tbody tr.odd>.sorting_1, table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
	background-color: #f1f1f1;
}

table.dataTable.display tbody tr.odd>.sorting_2, table.dataTable.order-column.stripe tbody tr.odd>.sorting_2 {
	background-color: #f3f3f3;
}

table.dataTable.display tbody tr.odd>.sorting_3, table.dataTable.order-column.stripe tbody tr.odd>.sorting_3 {
	background-color: #f5f5f5;
}

table.dataTable.display tbody tr.odd.selected>.sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1 {
	background-color: #a6b3cd;
}

table.dataTable.display tbody tr.odd.selected>.sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2 {
	background-color: #a7b5ce;
}

table.dataTable.display tbody tr.odd.selected>.sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3 {
	background-color: #a9b6d0;
}

table.dataTable.display tbody tr.even>.sorting_1, table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
	background-color: #f9f9f9;
}

table.dataTable.display tbody tr.even>.sorting_2, table.dataTable.order-column.stripe tbody tr.even>.sorting_2 {
	background-color: #fbfbfb;
}

table.dataTable.display tbody tr.even>.sorting_3, table.dataTable.order-column.stripe tbody tr.even>.sorting_3 {
	background-color: #fdfdfd;
}

table.dataTable.display tbody tr.even.selected>.sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1 {
	background-color: #acbad4;
}

table.dataTable.display tbody tr.even.selected>.sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2 {
	background-color: #adbbd6;
}

table.dataTable.display tbody tr.even.selected>.sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3 {
	background-color: #afbdd8;
}

table.dataTable.display tbody tr:hover>.sorting_1, table.dataTable.display tbody tr.odd:hover>.sorting_1, table.dataTable.display tbody tr.even:hover>.sorting_1, table.dataTable.order-column.hover tbody tr:hover>.sorting_1, table.dataTable.order-column.hover tbody tr.odd:hover>.sorting_1, table.dataTable.order-column.hover tbody tr.even:hover>.sorting_1 {
	background-color: #eaeaea;
}

table.dataTable.display tbody tr:hover>.sorting_2, table.dataTable.display tbody tr.odd:hover>.sorting_2, table.dataTable.display tbody tr.even:hover>.sorting_2, table.dataTable.order-column.hover tbody tr:hover>.sorting_2, table.dataTable.order-column.hover tbody tr.odd:hover>.sorting_2, table.dataTable.order-column.hover tbody tr.even:hover>.sorting_2 {
	background-color: #ebebeb;
}

table.dataTable.display tbody tr:hover>.sorting_3, table.dataTable.display tbody tr.odd:hover>.sorting_3, table.dataTable.display tbody tr.even:hover>.sorting_3, table.dataTable.order-column.hover tbody tr:hover>.sorting_3, table.dataTable.order-column.hover tbody tr.odd:hover>.sorting_3, table.dataTable.order-column.hover tbody tr.even:hover>.sorting_3 {
	background-color: #eee;
}

table.dataTable.display tbody tr:hover.selected>.sorting_1, table.dataTable.display tbody tr.odd:hover.selected>.sorting_1, table.dataTable.display tbody tr.even:hover.selected>.sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1, table.dataTable.order-column.hover tbody tr.odd:hover.selected>.sorting_1, table.dataTable.order-column.hover tbody tr.even:hover.selected>.sorting_1 {
	background-color: #a1aec7;
}

table.dataTable.display tbody tr:hover.selected>.sorting_2, table.dataTable.display tbody tr.odd:hover.selected>.sorting_2, table.dataTable.display tbody tr.even:hover.selected>.sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2, table.dataTable.order-column.hover tbody tr.odd:hover.selected>.sorting_2, table.dataTable.order-column.hover tbody tr.even:hover.selected>.sorting_2 {
	background-color: #a2afc8;
}

table.dataTable.display tbody tr:hover.selected>.sorting_3, table.dataTable.display tbody tr.odd:hover.selected>.sorting_3, table.dataTable.display tbody tr.even:hover.selected>.sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3, table.dataTable.order-column.hover tbody tr.odd:hover.selected>.sorting_3, table.dataTable.order-column.hover tbody tr.even:hover.selected>.sorting_3 {
	background-color: #a4b2cb;
}

table.dataTable.no-footer {
	border-bottom: 1px solid #111;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
	white-space: nowrap;
}

table.dataTable.compact thead th, table.dataTable.compact thead td {
	padding: 5px 9px;
}

table.dataTable.compact tfoot th, table.dataTable.compact tfoot td {
	padding: 5px 9px 3px 9px;
}

table.dataTable.compact tbody th, table.dataTable.compact tbody td {
	padding: 4px 5px;
}

table.dataTable th.dt-left, table.dataTable td.dt-left {
	text-align: left;
}

table.dataTable th.dt-center, table.dataTable td.dt-center, table.dataTable td.dataTables_empty {
	text-align: center;
}

table.dataTable th.dt-right, table.dataTable td.dt-right {
	text-align: right;
}

table.dataTable th.dt-justify, table.dataTable td.dt-justify {
	text-align: justify;
}

table.dataTable th.dt-nowrap, table.dataTable td.dt-nowrap {
	white-space: nowrap;
}

table.dataTable thead th.dt-head-left, table.dataTable thead td.dt-head-left, table.dataTable tfoot th.dt-head-left, table.dataTable tfoot td.dt-head-left {
	text-align: left;
}

table.dataTable thead th.dt-head-center, table.dataTable thead td.dt-head-center, table.dataTable tfoot th.dt-head-center, table.dataTable tfoot td.dt-head-center {
	text-align: center;
}

table.dataTable thead th.dt-head-right, table.dataTable thead td.dt-head-right, table.dataTable tfoot th.dt-head-right, table.dataTable tfoot td.dt-head-right {
	text-align: right;
}

table.dataTable thead th.dt-head-justify, table.dataTable thead td.dt-head-justify, table.dataTable tfoot th.dt-head-justify, table.dataTable tfoot td.dt-head-justify {
	text-align: justify;
}

table.dataTable thead th.dt-head-nowrap, table.dataTable thead td.dt-head-nowrap, table.dataTable tfoot th.dt-head-nowrap, table.dataTable tfoot td.dt-head-nowrap {
	white-space: nowrap;
}

table.dataTable tbody th.dt-body-left, table.dataTable tbody td.dt-body-left {
	text-align: left;
}

table.dataTable tbody th.dt-body-center, table.dataTable tbody td.dt-body-center {
	text-align: center;
}

table.dataTable tbody th.dt-body-right, table.dataTable tbody td.dt-body-right {
	text-align: right;
}

table.dataTable tbody th.dt-body-justify, table.dataTable tbody td.dt-body-justify {
	text-align: justify;
}

table.dataTable tbody th.dt-body-nowrap, table.dataTable tbody td.dt-body-nowrap {
	white-space: nowrap;
}

table.dataTable, table.dataTable th, table.dataTable td {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.dataTables_wrapper {
	position: relative;
	clear: both;
	zoom: 1;
}

.dataTables_wrapper .dataTables_length {
	float: left;
}

.dataTables_wrapper .dataTables_filter {
	float: right;
	text-align: right;
}

.dataTables_wrapper .dataTables_filter input {
	margin-left: .5em;
}

.dataTables_wrapper .dataTables_info {
	clear: both;
	float: left;
	padding-top: .755em;
}

.dataTables_wrapper .dataTables_paginate {
	float: right;
	text-align: right;
	padding-top: .25em;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	box-sizing: border-box;
	display: inline-block;
	min-width: 1.5em;
	padding: .5em 1em;
	margin-left: 2px;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	color: #333 !important;
	border: 1px solid transparent;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: #333 !important;
	border: 1px solid #cacaca;
	background-color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #dcdcdc));
	background: -webkit-linear-gradient(top, #fff 0%, #dcdcdc 100%);
	background: -moz-linear-gradient(top, #fff 0%, #dcdcdc 100%);
	background: -ms-linear-gradient(top, #fff 0%, #dcdcdc 100%);
	background: -o-linear-gradient(top, #fff 0%, #dcdcdc 100%);
	background: linear-gradient(to bottom, #fff 0%, #dcdcdc 100%);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
	cursor: default;
	color: #666 !important;
	border: 1px solid transparent;
	background: transparent;
	box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
	color: white !important;
	border: 1px solid #111;
	background-color: #585858;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
	background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
	background: -moz-linear-gradient(top, #585858 0%, #111 100%);
	background: -ms-linear-gradient(top, #585858 0%, #111 100%);
	background: -o-linear-gradient(top, #585858 0%, #111 100%);
	background: linear-gradient(to bottom, #585858 0%, #111 100%);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
	outline: none;
	background-color: #2b2b2b;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
	background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
	background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
	background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
	background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
	background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
	box-shadow: inset 0 0 3px #111;
}

.dataTables_wrapper .dataTables_processing {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 40px;
	margin-left: -50%;
	margin-top: -25px;
	padding-top: 20px;
	text-align: center;
	font-size: 1.2em;
	background-color: white;
	background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, .9)), color-stop(75%, rgba(255, 255, 255, .9)), color-stop(100%, rgba(255, 255, 255, 0)));
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 25%, rgba(255, 255, 255, .9) 75%, rgba(255, 255, 255, 0) 100%);
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 25%, rgba(255, 255, 255, .9) 75%, rgba(255, 255, 255, 0) 100%);
	background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 25%, rgba(255, 255, 255, .9) 75%, rgba(255, 255, 255, 0) 100%);
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 25%, rgba(255, 255, 255, .9) 75%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 25%, rgba(255, 255, 255, .9) 75%, rgba(255, 255, 255, 0) 100%);
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
	color: #333;
}

.dataTables_wrapper .dataTables_scroll {
	clear: both;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
	-webkit-overflow-scrolling: touch;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody th>div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody td>div.dataTables_sizing {
	height: 0;
	overflow: hidden;
	margin: 0 !important;
	padding: 0 !important;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
	border-bottom: 1px solid #111;
}

.dataTables_wrapper.no-footer div.dataTables_scrollHead table, .dataTables_wrapper.no-footer div.dataTables_scrollBody table {
	border-bottom: none;
}

.dataTables_wrapper:after {
	visibility: hidden;
	display: block;
	content: "";
	clear: both;
	height: 0;
}

@media screen and (max-width: 767px) {
	.dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_paginate {
		float: none;
		text-align: center;
	}
	
	.dataTables_wrapper .dataTables_paginate {
		margin-top: .5em;
	}
}

@media screen and (max-width: 640px) {
	.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
		float: none;
		text-align: center;
	}
	
	.dataTables_wrapper .dataTables_filter {
		margin-top: .5em;
	}
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.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("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/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.nitro-lazy {
	background: none !important;
}

.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 Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.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;
	-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: #fff;
}

.wpgmza_carousel_even {
	background: #fff;
}

/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
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: .15em solid white;
	border-radius: 1em;
	box-shadow: 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: .8em;
	width: .8em;
	margin-top: -.5em;
	margin-left: -.5em;
	display: block;
	position: absolute;
	color: white;
	border: .15em solid white;
	border-radius: 1em;
	box-shadow: 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: .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: .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;
	overflow: auto;
	margin: auto;
	z-index: 102;
	background-color: #f5f5f7;
	border: 1px solid black;
	border-radius: .5em;
	box-shadow: 0 12px 30px rgba(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, .6);
}

@media screen and (max-width: 767px) {
	div.dtr-modal div.dtr-modal-display {
		width: 95%;
	}
}

.wpgmza_modern_infowindow_close {
	position: relative;
}

@media only screen and (min-width:480px) {
	.wpgmza_modern_infowindow {
		width: 50%;
	}
}

@media (min-width:320px) {
	.wpgmza_modern_infowindow {
		width: 50%;
	}
	
	.wpgmza_button {
		width: 100%;
		margin-top: 10px;
	}
	
	.wpgmza_iw_title {
		font-size: 1.1em;
	}
}

@media (min-width:481px) {
	.wpgmza_modern_infowindow {
		width: 50%;
	}
	
	.wpgmza_button {
		width: 100%;
		margin-top: 10px;
	}
	
	.wpgmza_iw_title {
		font-size: 1.1em;
	}
}

@media (min-width:641px) {
	.wpgmza_modern_infowindow {
		width: 35%;
	}
	
	.wpgmza_button {
		width: 100%;
		margin-top: 10px;
	}
	
	.wpgmza_iw_title {
		font-size: 1.1em;
	}
}

@media (min-width:961px) {
	.wpgmza_modern_infowindow {
		width: 25%;
	}
	
	.wpgmza_button {
		width: 46%;
	}
	
	.wpgmza_iw_title {
		font-size: 1.325em;
	}
}

@media (min-width:1025px) {
	.wpgmza_modern_infowindow {
		width: 25%;
	}
	
	.wpgmza_button {
		width: 46%;
	}
	
	.wpgmza_iw_title {
		font-size: 1.325em;
	}
}

@media (min-width:1281px) {
	.wpgmza_modern_infowindow {
		width: 25%;
	}
	
	.wpgmza_button {
		width: 46%;
	}
	
	.wpgmza_iw_title {
		font-size: 1.325em;
	}
}

.wpgmza_modern_infowindow {
	height: auto;
	display: block;
	display: block;
	margin: 10px;
	padding: 10px;
	padding: 10px;
	position: relative;
	z-index: 10000;
	float: left;
	top: 5px !important;
}

.wpgmza_modern_infowindow_inner {}

.wpgmza_iw_title {
	float: left;
	position: absolute !important;
	width: 100%;
	bottom: 0;
	right: 0;
	background-color: #666;
	padding: 10px;
	height: 38px;
	top: 35%;
	margin-bottom: 0;
	color: #fff;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity: .8;
	-khtml-opacity: .8;
	opacity: .8;
}

.wpgmza_iw_image {
	position: relative;
}

.wpgmza_map .wpgmza_iw_image img {
	max-width: 100%;
	max-height: 148px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.wpgmza_iw_description {
	max-height: 115px;
	float: left;
	overflow-y: auto;
	margin-bottom: 10px;
	margin-top: 5px;
	padding-right: 5px;
}

.wpgmza_iw_custom_fields {
	color: white;
}

.wpgmza_modern_infowindow_close {
	cursor: pointer;
	width: 20px;
	height: 20px;
	text-align: center;
	display: block;
	float: right;
	z-index: 9;
}

.wpgmza_button {
	background: #627383;
	margin-bottom: 0;
	padding: 3%;
	font-size: 1.125em;
	box-shadow: none;
	border: 0;
	display: inline-block;
	border-style: solid;
	border-width: 1px;
	cursor: pointer;
	font-family: "Kreon", serif;
	font-weight: bold;
	line-height: 1;
	position: relative;
	text-decoration: none;
	text-align: center;
	border-color: #2284a1;
	color: #fff;
}

.wpgmza_button:last-child {
	margin-left: 10px;
}

.wpgmza_button:hover {
	color: #fff;
}

.wpgmza_left {
	float: left !important;
}

.wpgmza_right {
	float: right !important;
}

.wpgmza_iw_description {
	width: 100%;
	max-height: 90px;
}

.wpgmza_iw_address {
	width: 100%;
}

.wpgmza_iw_address_p {
	margin-top: 1px;
	margin-bottom: 3px;
	font-style: italic;
	font-size: 1.2em;
}

/** OL Overrides */
.wpgmza-ol-modern-infowindow-container .wpgmza_modern_infowindow {
	right: 1px !important;
	top: 35px !important;
	position: absolute;
	font-size: 12px;
}

.wpgmza-ol-modern-infowindow-container {
	width: 100%;
	pointer-events: painted;
}

.wpgmza-pagination {
	text-align: center;
	padding: 1em;
}

.wpgmza-pagination>.paginationjs {
	display: inline-block;
}

.wpgmza-pagination .paginationjs .paginationjs-pages {
	float: none;
}

.paginationjs .paginationjs-pages li {
	margin: 0;
}

.wpgmza_map {
	border: 0;
	max-width: 100% !important;
}

/* This fixes common CSS conflicts, :not added to cater for Google UI changes */
.wpgmza_map img:not(button>img) {
	border: none !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

/* Don't allow white border around Google logo */
.wpgmza_map img[src$="//maps.gstatic.com/mapfiles/api-3/images/google4.png"], img[src='http://maps.gstatic.com/mapfiles/api-3/images/google_white5.png'] {
	box-shadow: none !important;
}

#wpgmza_map img {
	box-shadow: none !important;
}

.wpgmza_table img {
	box-shadow: none !important;
}

.gm-style div {
	margin-top: 0 !important;
}

#wpgmaps_directions_edit {
	padding-top: 20px;
}

.wpgmza_markerbox {
	/* height:auto; */
	
	/* min-height:100px; */
	margin: 0;
	padding: 0;
	color: #000 !important;
}

.wpgmza_markerbox img {
	margin: 3px !important;
}

.wpgmza_markerbox h1, .wpgmza_markerbox h2, .wpgmza_markerbox h3, .wpgmza_markerbox h4, .wpgmza_markerbox h5, .wpgmza_markerbox h6, .wpgmza_markerbox h7, .wpgmza_markerbox h8, .wpgmza_markerbox strong, .wpgmza_markerbox p, .wpgmza_markerbox br {
	margin: 2px;
	padding: 1px;
	color: #000 !important;
}

.wpgmza_markerbox a {
	color: #1982d1 !important;
}

.wpgmaps_mlist_table {
	width: 42px;
}

.wpgmza_table .wpgmaps_mlist_marker {
	width: 32px;
	height: 32px;
	vertical-align: top;
	padding: 0 !important;
}

.wpgmza_table .wpgmaps_mlist_info {
	vertical-align: top;
	text-align: left;
	padding: 0 !important;
}

.wpgmza_table .wpgmaps_mlist_row {
	cursor: pointer;
	border: solid thin !important;
	border-width: 1px 0 0 !important;
	border-color: #d9d9d9 !important;
}

.wpgmza_table .wpgmaps_mlist_row:hover {
	background-color: #eee;
}

.wpgmza_map h2 {
	clear: both;
}

.wpgmaps_user_form {
	clear: both;
}

.wpgmza_table {
	clear: both;
	border-collapse: collapse !important;
}

.wpgmaps_mlist_row img {
	margin-bottom: 0 !important;
}

.wpgmza_table td {
	vertical-align: top !important;
	padding-bottom: 15px !important;
	padding-right: 10px !important;
	border: 0 !important;
}

.wpgmza_table tr {
	border: 0 !important;
}

.wpgmza_table th {
	text-align: left !important;
	padding-bottom: 15px !important;
	border: 0 !important;
	min-width: 100px;
}

.dataTables_filter input[type="text"], .dataTables_filter select {
	display: inline !important;
}

.dataTables_filter label {
	font-weight: bold;
}

table.dataTable tr.child ul li {
	white-space: normal !important;
}

.adp-placemark img {
	width: 24px !important;
	max-width: none !important;
}

.wpgmza_table .sorting {
	background-image: none !important;
}

.wpgmza_table .sorting.nitro-lazy {
	background-image: none !important;
}

/* .wpgmza_table .sorting_asc { background-image: none !important; }
.wpgmza_table .sorting_desc { background-image: none !important; } */
#wpgm_premium {
	display: block;
	overflow: auto;
	margin: 10px;
	margin-left: 0;
	clear: both;
	width: 90%;
}

#wpgm_premium h2 {
	margin-top: 0;
	padding-top: 0;
	font-weight: 200;
	font-size: 20px;
	padding-bottom: 0px;
	margin-bottom: 2px;
}

#wpgm_premium p {
	font-size: 16px;
	line-height: 28px;
}

.wpgm_premium_row {
	margin-top: 20px;
	display: block;
	clear: both;
	width: 100%;
	overflow: auto;
}

.wpgm_details p {
	padding-top: 0px;
	margin-top: 2px;
	color: #666 !important;
}

.wpgm_icon {
	display: block;
	float: left;
	width: 50px;
	height: 70px;
	background-repeat: no-repeat;
}

.wpgm_details {
	display: block;
	float: left;
	width: 80%;
}

.wpgm_notice_message {
	border-radius: 3px 3px 3px 3px;
	border-style: solid;
	border-width: 1px;
	margin: 5px 0 15px;
	padding: 0 .6em;
	background-color: #ffffe0;
	border-color: #e6db55;
}

.wpgmza-form-field:last-of-type {
	margin-bottom: 18px;
}

.wpgmza-form-field--no-pad {
	display: block;
	padding-top: 0;
}

form#wpgmaps_options .wpgmza-form-field__label {
	display: block;
	color: #666;
	font-weight: 400;
}

.wpgmza_map .wpgmza-form-field__label--float {
	width: 100%;
	position: absolute;
	top: 37px;
	background: #fff;
	transition: all ease .3s;
}

.wpgmza-form-field__input:focus ~ label {
	top: 8px;
	color: #333;
	font-weight: 700;
}

.wpgmza_dir_options {
	margin-bottom: 0;
	padding-top: 9px;
}

.wpgmza_dir_options label {
	font-size: 15px;
}

.wpgmza_dir_options label:last-child {
	margin-bottom: 0;
}

.wpgmza_marker_approval_msg {
	font-weight: bold;
}

.scrollFix {
	line-height: 1.35;
}

.wpgmza_infowindow_description {
	white-space: normal;
}

.wpgmza_infowindow_title {
	white-space: normal;
}

.wpgmza_infowindow_address {
	white-space: normal;
}

.wpgmza_infowindow_title {
	font-weight: bold;
}

/* .gm-style-iw div {overflow:visible !important;} */
#wpgmza_marker_list tr {
	vertical-align: middle !important;
}

#wpgmza_marker_list td {
	vertical-align: middle !important;
}

#wpgmza_marker_list td img {
	vertical-align: middle !important;
}

.wpgmza_marker_carousel {
	clear: both;
}

.wpgmza-shadow {
	-webkit-box-shadow: 3px 3px 10px 0px rgba(107, 107, 107, 1);
	-moz-box-shadow: 3px 3px 10px 0px rgba(107, 107, 107, 1);
	box-shadow: 3px 3px 10px 0px rgba(107, 107, 107, 1);
}

.wpgmza-shadow-sm {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(107, 107, 107, .4);
	-moz-box-shadow: 0px 0px 10px 0px rgba(107, 107, 107, .4);
	box-shadow: 0px 0px 10px 0px rgba(107, 107, 107, .4);
}

.wpgmza_innermap_holder {
	padding: 5px;
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.wpgmza_small_img {
	max-width: 14px;
	max-height: 14px;
}

.wpgmza-basic-list-item .wpgmza_small_img {
	max-width: initial !important;
	max-height: initial !important;
}

ul.wpgmza_marker_list_class {
	list-style: none;
	margin-left: 5px;
	padding-left: 0;
}

.wpgmza-basic-list-item {
	float: left;
	cursor: pointer;
}

.wpgmza-basic-list-item.wpgmza_div_title {
	display: block;
	float: none;
	font-weight: 600;
	margin-bottom: 3px;
}

.wpgmaps_blist_row {
	clear: both;
	display: block;
	height: auto;
	overflow: hidden;
}

.wpgmaps_blist_row:hover {
	background-color: #eee;
}

.wpgmza_div_marker {
	width: 17px;
	height: 17px;
}

.wpgmza_div_marker.wpgmza-basic-list-item {
	width: auto;
	height: auto;
	max-width: initial !important;
	max-height: initial !important;
	position: relative;
	top: 2px;
	margin-right: 10px;
}

.wpgmza_div_address {
	padding-left: 2px;
}

.wpgmza-basic-list-item.wpgmza_div_address {
	font-size: .8em;
}

.wpgmza_basic_row {
	display: block;
	border: 1px solid #ccc;
	padding: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	overflow: hidden;
}

.wpgmaps_blist_row > p {
	margin-bottom: 0;
	color: #7c7c7c;
	font-size: .8em;
}

.wpgmza-basic-listing-image-holder {
	float: right;
	width: 20%;
}

.wpgmza-basic-listing-image-holder img {
	border: 1px solid #ccc;
	padding: 5px !important;
	float: right !important;
	height: auto !important;
	width: 100% !important;
}

.wpgmza-basic-listing-content-holder {
	float: left;
	display: block;
	width: 100%;
}

.wpgmza-content-address-holder {
	width: 78%;
	display: block;
	float: left;
	overflow: hidden;
}

.wpgmza-content-address-holder img {
	float: left !important;
	margin: 10px !important;
	max-width: 30px !important;
}

.wpgmza_row {
	width: 100%;
	display: block;
	overflow: auto;
}

.wpgmza_row_col {
	width: 90%;
	float: left;
	display: block;
	overflow: auto;
	margin: .25%;
	padding: .2%;
	min-height: 360px;
}

.wpgmza_row_col h2 {
	font-weight: 900;
}

.wpgmza_row_col ul li {
	margin: .3em 2.5em;
}

.wpgmza_row_col ul {
	list-style-type: disc;
}

@media only screen and (min-width:640px) {
	.wpgmza_row_col {
		width: 31%;
		float: left;
		display: block;
		overflow: auto;
		margin: .25%;
		padding: .2%;
		min-height: 360px;
	}
}

.wpgmaps_mlist_row.wpgmza_basic_row {
	margin: 0;
	border-width: 1px 1px 0;
	padding: 16px;
}

.wpgmaps_mlist_row.wpgmza_basic_row:last-child {
	border-bottom-width: 1px;
}

.wpgmza_basic_row .wpgmza-desc p {
	font-size: .9em;
}

.wpgmza_basic_row .wpgmza-address {
	margin-top: 0;
	font-size: .9em;
	color: #7c7c7c;
}

.wpgmza_basic_row .wpgmza-content-address-holder img {
	transform: scale(.7);
	margin: 0 !important;
	margin-right: 10px !important;
	top: -6px;
	position: relative;
}

.wpgmza-content-address-holder > p {
	margin-bottom: 16px;
	font-size: .9em;
}

.wpgmza-content-address-holder p.wpgmza-content-address-holder-inner {
	font-size: 1em;
}

.wpgmza-content-address-holder > p:last-child {
	margin-bottom: 0;
}

.wpgmza_basic_row .wpgmza-content-address-holder .wpgmza-desc p:empty {
	margin: 0;
}

.wpgmza_marker_holder {
	overflow-x: visible;
	border: 1px solid #d9d9d9;
}

.owl-item p {
	word-break: break-word;
}

.owl-item .wpgmza_marker_directions_link a {
	color: #fff;
	box-shadow: none;
	text-decoration: underline;
}

.wpgmza_marker_address {
	word-break: break-word;
}

.wpgmza_marker_carousel .item {
	padding-right: 10px !important;
	padding-left: 10px !important;
}

.owl-item .wpgmza_carousel_info_holder > p:last-child {
	margin-bottom: 0;
}

.wpgmza_filter_container {
	display: block;
	float: left;
	margin-bottom: 15px;
	min-width: 30%;
}

.wpgmza-filter-widgets input[type="checkbox"] {
	display: inline-block;
}

.wpgmza_cat_checkbox_holder {
	display: block;
	overflow: auto;
	height: 100px;
	overflow-y: auto;
	padding: 5px;
}

.wpgmza_cat_checkbox_item_holder label {
	padding-left: 5px;
}

.wpgmza_cat_checkbox_item_holder_first {
	display: block;
	float: left;
}

.wpgmza_cat_ul {
	margin-left: 10px;
	padding-left: 0;
}

/* .wpgmza_cat_checkbox_item_holder { display:block; float:left; margin-left:5px; } */
.wpgmza_cat_checkbox_item_holder {
	display: block;
}

.wpgmaps_fullscreen {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	z-index: 9999;
}

.wpgmza-modern-shadow {
	box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-webkit-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-moz-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-o-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
}

/*.wpgmza-modern-hover-opaque
{
	opacity: 0.6;
	transition: opacity 0.3s;
}

.wpgmza-modern-hover-opaque:hover
{
	opacity: 0.999;
}*/
.wpgmza-modern-store-locator {
	text-align: center;
	padding-top: 10px;
	max-width: 70%;
}

.wpgmza-modern-store-locator > .wpgmza-inner {
	display: flex !important;
	justify-content: center;
	align-items: center;
	background: white;
	padding: .5em !important;
	border-radius: 2px;
	font-family: Roboto, sans-serif;
	box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-webkit-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-moz-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-o-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
}

.wpgmza-modern-store-locator input, .wpgmza-modern-store-locator select {
	height: 28px !important;
	vertical-align: top;
	padding: 0 6px !important;
	margin: 0 2px;
	color: #777;
	border: 1px solid #ccc;
}

.wpgmza-popout-panel {
	position: absolute;
	z-index: 9999999999;
	background: #fff;
	width: 40%;
	height: 100%;
	top: 0px;
	left: -43%;
	transition: left .3s;
	overflow-y: auto;
	box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-webkit-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-moz-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-o-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
}

.wpgmza-popout-panel.wpgmza-open {
	left: 0%;
}

.wpgmza-popout-panel ul {
	list-style: none;
	margin: 0;
}

.wpgmza-popout-panel .wpgmaps_mlist_row {
	border: none;
	border-bottom: 1px solid #eee;
	padding-top: 10px;
	padding-bottom: 10px;
	font-family: Roboto, sans-serif;
}

.wpgmza-popout-panel .wpgmaps_mlist_row img {
	border-radius: 3px;
}

.wpgmza-marker-listing-pic {
	float: right;
	width: 25%;
	height: auto;
}

.wpgmza-modern-marker-listing li {
	border: 1px solid #d9d9d9;
	padding: .33em;
}

.wpgmza-modern-marker-listing li:not(:last-child) {
	border-bottom: none;
}

.wpgmza-modern-marker-listing [data-name="title"] {
	color: #505050;
	font-size: .9em;
	width: 75%;
}

.wpgmza-modern-marker-listing [data-name="address"] {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #929292;
	font-size: .8em;
	width: 75%;
}

.wpgmza-modern-marker-listing [data-name="desc"] {
	overflow: hidden;
	max-height: 3em;
	color: #929292;
	font-size: .8em;
	width: 75%;
}

.wpgmza-modern-marker-listing .wpgmza-close-container {
	text-align: right;
	padding: 5px;
	background: #585858;
	color: #fff;
	font-size: 16px;
	box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-webkit-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-moz-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-o-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
}

.wpgmza-modern-marker-listing > * {
	cursor: pointer;
}

.wpgmza-modern-marker-listing-marker-view .wpgmza-close-container {
	text-align: right;
	padding: 5px;
	background: #585858;
	color: #fff;
	font-size: 16px;
	z-index: 99;
	box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-webkit-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-moz-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-o-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
}

.wpgmza-modern-marker-listing-marker-view .wpgmza-close-container i {
	cursor: pointer;
}

.wpgmza-modern-marker-listing-marker-view .wpgmza-close.fa-arrow-left {
	float: left;
}

.wpgmza-modern-marker-listing-marker-view {
	color: #929292;
	font-family: Roboto, sans-serif;
	display: flex;
	flex-direction: column;
}

.wpgmza-modern-marker-listing-marker-view [data-name='title'] {
	color: #fff;
	font-size: 1.2em;
	padding-left: 10px;
	padding-right: 10px;
	order: 3;
	background: #5f5f5f;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-bottom: 10px;
	margin-top: 15px;
	box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-webkit-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-moz-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-o-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
}

.wpgmza-modern-marker-listing-marker-view [data-name='address'], .wpgmza-modern-marker-listing-marker-view [data-name='desc'] {
	padding-left: 10px;
	padding-right: 10px;
	font-size: .8em;
	order: 4;
}

.wpgmza-modern-marker-listing-marker-view [data-name='pic'] {
	display: none;
	max-width: 100%;
	order: 1;
	margin-bottom: -11%;
}

.wpgmza-modern-marker-listing-marker-view [data-name='pic'][src] {
	display: block;
}

.wpgmza-modern-marker-listing-marker-view [data-name='category'] {
	order: 8;
	padding: 8px;
}

.wpgmza-modern-marker-listing-marker-view .wpgmza-modern-marker-listing-buttons {
	order: 2;
	display: inline-block;
	margin-bottom: -10%;
	height: 50px;
	z-index: 99;
	padding: 0px 0px 0px 7px;
	position: absolute;
	color: #fff;
	width: auto;
}

.wpgmza-modern-marker-listing-marker-view *[data-custom-field-name] {
	order: 9;
	margin-top: 3px;
	margin-bottom: 3px;
	margin-left: 10px;
	background: #eee;
	margin-right: auto;
	padding: 0 7px;
	border-radius: 5em;
	font-size: .8em;
}

.wpgmza-modern-marker-listing-marker-view *[data-custom-field-name] > svg {
	position: relative;
	top: 1px;
	padding: 1px;
}

.wpgmza-modern-marker-listing-marker-view .wpgmza-modern-marker-listing-button {
	text-align: center;
	display: inline-block;
}

.wpgmza-modern-marker-listing-marker-view .wpgmza-modern-marker-listing-button svg {
	background: #fff;
	color: #5f5f5f;
	width: 50px;
	height: 50px;
	padding: 17px;
	border-radius: 50px;
	box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-webkit-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-moz-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-o-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
}

.wpgmza-modern-marker-listing-marker-view .wpgmza-modern-marker-listing-button > div {
	display: none;
}

.wpgmza-modern-marker-listing-button > * {
	display: block;
	margin: 0 auto;
}

.wpgmza-modern-marker-open-button {
	position: absolute;
	top: 35px;
	left: 10px;
	z-index: 5000000000;
	padding: .5em;
	background: #fff;
	cursor: pointer;
	border-radius: 2px;
	color: #666;
	font-size: 15px;
}

.wpgmza-modern-marker-open-button > svg {
	padding: 2px;
	margin-right: 2px;
}

/*.wpgmza-custom-field-filter-widget-checkboxes.wpgmza-dropdown:hover .wpgmza-placeholder-label > ul.wpgmza-checkboxes {
	display: block;
	opacity: 0.99;
}*/
.wpgmza-placeholder-label > ul.wpgmza-checkboxes > li {
	white-space: nowrap;
}

.wpgmza_basic_list {
	overflow: hidden;
	padding-top: 10px;
}

.wpgmaps_blist_row {
	padding: 8px 0;
	border-bottom: 1px solid #d9d9d9;
}

.wpgmza-modern-marker-listing [data-name="address"] {
	font-size: .8em;
	font-style: italic;
}

.wpgmza-custom-field {
	margin-right: 5px;
}

.wpgmza_basic_list .wpgmza-custom-field {
	margin-left: 10px;
}

.wpgmza_map .wpgmza-inner .wpgmza-form-field__input, .wpgmza_map .wpgmza-form-field input[type="text"], .wpgmza_map .wpgmza-form-field input[type="url"], .wpgmza_map .wpgmza-form-field input[type="password"], .wpgmza_map .wpgmza-form-field input[type="search"], .wpgmza_map .wpgmza-form-field input[type="number"], .wpgmza_map .wpgmza-form-field input[type="tel"], .wpgmza_map .wpgmza-form-field input[type="email"], .wpgmza_map .wpgmza-form-field textarea, .wpgmza_map .wpgmza-form-field select {
	padding: 10px;
	padding-left: 0;
	border: none;
	border-radius: 0;
	transition: all .3s;
	background: none;
	box-shadow: none;
	font-family: Roboto, sans-serif;
}

.wpgmza_map .wpgmza-inner .wpgmza-form-field__input:focus, .wpgmza_map .wpgmza-form-field input[type="text"]:focus, .wpgmza_map .wpgmza-form-field input[type="url"]:focus, .wpgmza_map .wpgmza-form-field input[type="password"]:focus, .wpgmza_map .wpgmza-form-field input[type="search"]:focus, .wpgmza_map .wpgmza-form-field input[type="number"]:focus, .wpgmza_map .wpgmza-form-field input[type="tel"]:focus, .wpgmza_map .wpgmza-form-field input[type="email"]:focus, .wpgmza_map .wpgmza-form-field textarea:focus, .wpgmza_map .wpgmza-form-field select:focus {
	background: none;
}

.wpgmaps_via {
	max-width: 100%;
}

.wpgmza-close, .wpgmza-modern-marker-listing-buttons > * {
	cursor: pointer;
}

.wpgmza-filter-widgets {
	padding: 5px;
	display: inline-block;
	margin-bottom: 5px;
}

.wpgmza-filter-widgets input, .wpgmza-filter-widgets select, .wpgmza-filter-widgets .wpgmza-dropdown {
	background-color: #fff;
	border: none;
	padding: 4px;
	margin: 0;
	margin-right: 4px;
	display: inline;
	font-size: 15px;
	box-sizing: border-box;
	font-family: Roboto, sans-serif;
	color: #585858;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-webkit-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-moz-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-o-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
}

.wpgmza-custom-field-filter-widget-checkboxes.wpgmza-dropdown .wpgmza-placeholder-label {
	cursor: pointer;
	position: relative;
	display: inline;
}

.wpgmza-custom-field-filter-widget-checkboxes.wpgmza-dropdown .wpgmza-placeholder-label > ul.wpgmza-checkboxes {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	z-index: 99;
	list-style: none;
	background: white;
	padding: 5px;
	border-radius: 3px;
}

/** Override the auto complete styles */
.pac-container {
	z-index: 9999999999;
}

.pac-container {
	border-radius: 2px;
	border-top: none;
	font-family: Roboto, sans-serif;
	box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-webkit-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-moz-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
	-o-box-shadow: rgba(0, 0, 0, .3) 0px 1px 4px -1px;
}

.pac-container .pac-item {
	border-top: none;
}

.pac-container .pac-item .pac-item-query {
	color: #333;
}

/** Media Query */
@media only screen and (max-width: 1000px) {
	.wpgmza-modern-store-locator {
		max-width: 55%;
		margin-left: 10%;
	}
}

@media only screen and (max-width: 910px) {
	.wpgmza-modern-store-locator .addressInput {
		display: block;
		float: none;
		text-align: center;
	}
}

@media only screen and (max-width: 860px) {
	.wpgmza-modern-store-locator {
		max-width: 50%;
		margin-left: 10%;
	}
	
	.wpgmza-modern-marker-open-button {
		top: 45px;
	}
}

@media only screen and (max-width: 600px) {
	.wpgmza-popout-panel {
		width: 100%;
		left: -103%;
	}
	
	.wpgmza-modern-store-locator {
		max-width: 40%;
	}
}

@media only screen and (max-width: 450px) {
	.wpgmza-modern-store-locator {
		padding-top: 45px;
	}
	
	.wpgmza-modern-store-locator {
		margin-left: 0%;
	}
}

@media only screen and (max-width: 345px) {
	.wpgmza-modern-store-locator {
		margin-left: -10%;
	}
}

@media screen and (max-width: 960px) {
	.wpgmza-pagination {
		min-height: 48px;
	}
	
	.paginationjs .paginationjs-pages li.active > a, .paginationjs .paginationjs-pages li > a {
		min-width: 48px;
		min-height: 48px;
		line-height: 48px !important;
	}
}

.wpgmza_marker_icon, .wpgmza_map_image {
	margin: 5px auto;
}

.wpgmza-add-map-dialog {
	text-align: left;
}

.wpgmza-add-map-dialog-inner-panels {
	display: flex;
}

.wpgmza-add-map-dialog-inner-panels>div {
	flex: 1;
	padding: .5em;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.wpgmza-center {
	text-align: center;
}

.wpgmza-add-map-dialog-inner-panels select, .wpgmza-add-map-dialog-inner-panels input {
	width: 100%;
}

.wpgmza-add-map-dialog-inner-panels button {
	margin-top: auto;
}

.wpgmza-not-found-msg {
	display: none;
	margin-top: 20px;
	color: #777;
}

.wpgmza-not-found-msg.is-active {
	display: block;
}

.wpgmza-not-found-msg p {
	margin-bottom: 0;
}

/** OL Styles Overrides **/
.wpgmza_map[data-maps-engine="open-layers"] .wpgmza-modern-store-locator {
	position: absolute !important;
	top: 0px;
	left: 0px;
	width: 100%;
	max-width: 100% !important;
	z-index: 99;
}

.wpgmza_map[data-maps-engine="open-layers"] .wpgmza-modern-marker-open-button {
	top: 70px;
}

#
.wpgmza-modern-marker-listing-buttons {
	pointer-events: none;
}

.wpgmza-modern-marker-listing-buttons * {
	pointer-events: all;
}

.wpgmza-preloader {
	width: 32px;
	height: 32px;
	z-index: 10000000000;
	position: absolute;
	left: .5em;
	bottom: .5em;
}

.wpgmza-modern-store-locator button.wpgmza-use-my-location {
	padding: 0;
	width: 21px;
	height: 21px;
	border: 1px solid #ccc;
}

.wpgmza_iw_title {
	z-index: 2;
}

[data-wpgmza-marker-listing] .wpgmza-distance-from-location {
	font-size: .8em;
	opacity: .6;
}

.wpgmza-basic-list-item.wpgmza-distance-from-location {
	padding-right: 10px;
	display: block;
	min-width: 100%;
	text-align: right;
	opacity: .4;
}

.wpgmza-modern-marker-listing [data-name="user-distance"] {
	font-size: .8em;
	font-style: italic;
	color: #929292;
}

.wpgmza_polygon_title {
	margin: 0;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 14px;
}

/* Grid Marker Listing Styles */
.wpgmza-marker-grid {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	width: 100% !important;
	max-width: 100% !important;
}

.wpgmza-grid-row {
	height: auto;
	height: 300px;
	flex-basis: 33.33%;
	-ms-flex: auto;
	position: relative;
	padding: 10px;
	box-sizing: border-box !important;
}

.wpgmza-grid-item {
	border: 1px solid #eee;
	height: 100%;
	box-sizing: border-box;
	box-sizing: border-box;
	transition: all .3s cubic-bezier(.25, .8, .25, 1);
	cursor: pointer;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}

.wpgmza-grid-item:hover {
	box-shadow: 0 10px 10px rgba(0, 0, 0, .02), 0 2px 10px rgba(0, 0, 0, .04);
}

.wpgmza-grid-item .wpgmza_marker_title {
	margin: 0;
	font-weight: bold;
	font-size: .9em !important;
}

.wpgmza-grid-item .wpgmza_marker_icon {
	position: absolute;
	top: 22px;
	right: 17px;
	width: 15px;
	margin: 0 !important;
	z-index: 10;
}

.wpgmza-grid-item .wpgmza-address {
	font-size: .8em;
	width: 100%;
	opacity: .5;
}

.wpgmza-grid-item .wpgmza-desc, .wpgmza-grid-item .wpgmza-desc p {
	font-size: .8em;
	width: 100%;
	opacity: .9;
	margin-top: 5px;
}

.wpgmza-grid-item .wpgmza-distance-from-location {
	bottom: 0;
	bottom: 10px;
	text-align: right;
	display: block;
	font-size: .7em;
	opacity: 1;
	position: absolute;
	padding: 0px 8px;
	border-radius: 2px;
	right: 10px;
	background: #f9f9f9;
	width: max-content;
	z-index: 9;
}

.wpgmza-grid-item-content {
	overflow: auto;
	max-height: 100%;
	padding: 15px;
	box-sizing: border-box;
}

.wpgmza-grid-item .wpgmza-distance-from-location + .wpgmza-grid-item-content {
	padding-bottom: 50px;
}

.wpgmza-grid-item .wpgmza_custom_fields > p {
	border-top: 1px solid #eee;
	padding: 2px 0;
	margin: 0;
	font-size: .8em;
	opacity: .8;
}

.wpgmza-grid-footer {
	font-size: .8em;
	right: 0;
	position: absolute;
	bottom: 0;
	padding: 10px;
	width: 100%;
	border-top: 1px solid #eee;
	background: #fff;
	text-align: right;
	z-index: 10;
	height: 50px;
	line-height: 25px;
}

.wpgmza-grid-footer .wpgmza_gd, .wpgmza-grid-footer .wpgmza-link {
	display: inline-block;
	font-size: .8em;
	margin-left: 7px;
}

.wpgmza-grid-footer ~ .wpgmza-grid-item-content {
	max-height: calc(100% - 50px);
}

.wpgmza-grid-item .wpgmza-basic-listing-image-holder {
	width: 100%;
	max-height: 170px;
	overflow: hidden;
	border: none !important;
	position: relative;
	right: 0;
	border-bottom: 1px solid #eee !important;
	top: 0;
}

.wpgmza-grid-item .wpgmza-basic-listing-image-holder .wpgmza_map_image {
	width: 100%;
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.wpgmza-grid-item .wpgmza-basic-listing-image-holder + .wpgmza_marker_title {
	margin-top: 160px;
}

.wpgmza-grid-item-content {
	padding: 0;
}

.wpgmza-grid-item .wpgmza_marker_title, .wpgmza-grid-item .wpgmza-desc, .wpgmza-grid-item .wpgmza-address, .wpgmza-grid-item .wpgmza_custom_fields {
	padding: 5px 20px;
}

.wpgmza-grid-item .wpgmza_marker_title {
	padding-top: 15px;
}

.wpgmza-grid-item .wpgmza-basic-listing-image-holder img {
	border: none !important;
	padding: 0 !important;
}

.wpgmza-grid-item .wpgmza-gallery-container .wpgmza-marker-gallery {
	overflow: hidden;
	max-width: 290px;
	margin: 0 auto;
}

.wpgmza-grid-item {
	background: #fff;
}

.wpgmza-infowindow .wpgmza-marker-gallery {
	float: right;
}

@media (max-width: 1333px) {
	.wpgmza-grid-row {
		flex-basis: 33.33%;
	}
}

@media (max-width: 1073px) {
	.wpgmza-grid-row {
		flex-basis: 33.33%;
	}
}

@media (max-width: 815px) {
	.wpgmza-grid-row {
		flex-basis: 50%;
	}
}

@media (max-width: 555px) {
	.wpgmza-grid-row {
		flex-basis: 100%;
	}
}

.ol-marker > img {
	max-width: none !important;
}

.wpgmza-directions-step::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	margin-right: .3em;
	position: relative;
	top: -.15em;
	width: 1em;
	height: 1em;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.wpgmza-directions-step.wpgmza-instruction-type-left::before, .wpgmza-directions-step.wpgmza-instruction-type-sharp-left::before, .wpgmza-directions-step.wpgmza-instruction-type-slight-left::before {
	background-image: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps-pro/images/road-signs/left.png");
}

.wpgmza-directions-step.wpgmza-instruction-type-right::before, .wpgmza-directions-step.wpgmza-instruction-type-sharp-right::before, .wpgmza-directions-step.wpgmza-instruction-type-slight-right::before {
	background-image: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps-pro/images/road-signs/right.png");
}

.wpgmza-directions-step.wpgmza-instruction-type-straight::before {
	background-image: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps-pro/images/road-signs/straight.png");
}

.wpgmza-directions-step.wpgmza-instruction-type-enter-roundabout::before {
	background-image: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps-pro/images/road-signs/enter-roundabout.png");
}

.wpgmza-directions-step.wpgmza-instruction-type-keep-left::before {
	background-image: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps-pro/images/road-signs/keep-left.png");
}

.wpgmza-directions-step.wpgmza-instruction-type-keep-right::before {
	background-image: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/www.asahi-america.com/wp-content/plugins/wp-google-maps-pro/images/road-signs/keep-right.png");
}

.wpgmza-directions-step.wpgmza-instruction-type-depart::before, .wpgmza-directions-step.wpgmza-instruction-type-goal::before {
	background-image: url("https://cdn-ilefhkp.nitrocdn.com/fgVmNAsiTzWodNweVupYFElxLRRpWjof/assets/images/optimized/rev-8ab2b80/maps.gstatic.com/mapfiles/api-3/images/spotlight-poi2.png");
}

.wpgmza-directions-step.wpgmza-instruction-type-u-turn::before {}

.wpgmza-not-found input {
	border: 1px solid red;
}

/* New fancy preloader */
.wpgmza-preloader {
	display: inline-block;
	position: relative;
	position: absolute;
	width: 64px;
	height: 64px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.wpgmza-preloader div {
	position: absolute;
	top: 27px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0px 0px 2px black;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.wpgmza-preloader div:nth-child(1) {
	left: 6px;
	animation: wpgmza-preloader1 .6s infinite;
}

.wpgmza-preloader div:nth-child(2) {
	left: 6px;
	animation: wpgmza-preloader2 .6s infinite;
}

.wpgmza-preloader div:nth-child(3) {
	left: 26px;
	animation: wpgmza-preloader2 .6s infinite;
}

.wpgmza-preloader div:nth-child(4) {
	left: 45px;
	animation: wpgmza-preloader3 .6s infinite;
}

@keyframes wpgmza-preloader1 {
	0% {
		transform: scale(0);
	}
	
	100% {
		transform: scale(1);
	}
}

@keyframes wpgmza-preloader3 {
	0% {
		transform: scale(1);
	}
	
	100% {
		transform: scale(0);
	}
}

@keyframes wpgmza-preloader2 {
	0% {
		transform: translate(0, 0);
	}
	
	100% {
		transform: translate(19px, 0);
	}
}

.wpgmza_marker_carousel.owl-carousel .owl-item img.wpgmza_marker_icon {
	margin: .5em auto;
	width: auto;
}

.wpgmza-directions__travel-mode, .wpgmza-directions-to__icon, .wpgmza-directions-from__icon {
	display: none;
}

.wpgmza-modern-directions-box .wpgmza-directions__travel-mode, .wpgmza-modern-directions-box .wpgmza-directions-to__icon, .wpgmza-modern-directions-box .wpgmza-directions-from__icon {
	display: block;
	-khtml-user-select: none;
	-o-user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.wpgmza-modern-directions-box .wpgmza-directions-box__title {
	height: auto;
}

.wpgmza-modern-directions-box h2:before {
	content: none;
}

.wpgmza-rating {
	display: inline-block;
	line-height: 20px;
}

.wpgmza-rating-stars-container > span {
	display: flex;
	flex-direction: row;
	white-space: nowrap;
	position: absolute;
	left: 0;
	top: 0;
}

.wpgmza-directions-box:not(.style-modern) span.wpgmza-travel-mode-option, .wpgmza-directions-box:not(.style-modern) .wpgmza-directions-from__icon, .wpgmza-directions-box:not(.style-modern) .wpgmza-directions-to__icon {
	display: none;
}

.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-print-directions, .wpgmza-reset-directions {
	cursor: pointer;
}

/* STORE LOCATOR MODERN STYLING */
.wpgmza-modern-directions-box {
	width: 30%;
	max-width: 408px;
}

.style-modern input .wpgmza-directions-from {
	color: #fff !important;
	border-bottom: 1px solid rgba(255, 255, 255, .87);
}

.style-modern .wpgmza-directions-locations .wpgmza-use-my-location {
	border: 1px solid rgba(255, 255, 255, .87);
	border-radius: 2px;
	margin-left: 2px;
	color: #fff !important;
	opacity: .5 !important;
}

.style-modern .wpgmza-directions-locations .wpgmza-use-my-location:hover {
	opacity: 1 !important;
}

.style-modern .wpgmza_remove_via {
	border: 1px solid rgba(255, 255, 255, .87);
	border-radius: 2px;
	margin-left: 2px;
	color: #fff !important;
	opacity: .5 !important;
}

.style-modern .wpgmza_remove_via:hover {
	opacity: 1 !important;
}

.style-modern .wpgmza-directions-buttons .wpgmza-get-directions {
	border: 0px !important;
}

/* STORE LOCATOR LEGACY STYLING */
.style-default .wpgmza-directions-options__section {
	background-color: transparent !important;
}

.style-default .wpgmza-form-field__input {
	width: 50%;
	min-width: 200px;
	border: 1px solid #ccc;
	padding: 10px;
}

.style-default .wpgmaps_add_waypoint i {
	color: #ccc;
	margin-right: 2px;
}

.wpgmaps_directions_outer_div.style-default {
	padding-left: 15px;
}

.style-default .wpgmza-travel-mode-option {
	background-color: #333;
}

.style-default .wpgmza-directions__travel-mode {
	display: block !important;
}

.style-default .wpgmza-travel-mode-option {
	display: inline-block !important;
}

.style-default .wpgmza-directions-options__section {
	min-height: inherit;
}

.style-default .wpgmza-use-my-location {
	border: 1px solid #ccc;
	margin-left: 12px;
	border-radius: 5px;
	color: #333;
}

.gm-ui-hover-effect:hover {
	box-shadow: none !important;
}

.wpgmza-modern-directions-box .wpgmaps_directions_outer_div.style-default {
	padding-left: inherit;
}

@media screen and (max-width: 1000px) {
	.wpgmza-modern-directions-box {
		width: 100% !important;
		max-width: 100%;
		left: -100%;
	}
}

.wpgmza-ol-modern-infowindow-container:empty {
	height: 0;
}

.wpgmza_marker_holder {
	max-width: 100% !important;
}
