.gm-opening-hours {
	position: relative;
}
.gm-opening-hours ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.gm-opening-hours ul li {
	display: flex;
	justify-content: space-between;
}

.gm-opening-hours .toggle {
	border: none;
	background-color: transparent;
	color: currentColor;
	cursor: pointer;
	font-family: inherit;
	font-size: .74rem;
	padding: 1em 2.5em;
	transition: all 0.25s;
	margin-left: 1.5em;
}

.gm-opening-hours .toggle .label {
	position: relative;
}

.gm-opening-hours .toggle .label:before {
	font-family: 'stallbyggen';
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  width: 1em;
  line-height: 1em;
  position: absolute;
  content: "\e0d2";
  top: 50%;
  left: -27px;
  color: #333;
  font-size: 1rem;
}

.gm-opening-hours .toggle .label {
	display: flex;
	align-items: center;
	gap: .25em;
}

.gm-opening-hours .toggle .secondary-label {
	font-size: .95rem;
	font-weight: 600;
}

.gm-opening-hours[data-secondarylabel] .toggle {
	display: flex;
	flex-direction: column;
	gap: 0em;
}

.gm-opening-hours[data-secondarylabel=""] .toggle {
	display: inherit;
}

.gm-opening-hours[data-style="list"] ul li {
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 1.25em .25em;
}

.gm-opening-hours[data-style="list"] ul li:last-of-type {
	border-bottom: none;
}


.gm-opening-hours[data-style="widget"] {
	background-color: #f0f0f0;
	color: #333;
	height: 60px;
}

.gm-opening-hours[data-style="widget"] .content {
	display: none;
	position: absolute;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.gm-opening-hours[data-style="widget"] .content .page-link {
	background-color: #f0f0f0;
	color: #333;
	padding: 1em;
	display: inline-flex;
	justify-content: space-between;
	width: 100%;
	font-weight: 500;
	text-decoration: none;
}

.gm-opening-hours[data-style="widget"] .content .page-link span[class*=icon-] {
	color: #333;
	padding-right: 0px;
}

.gm-opening-hours[data-style="widget"][data-open="true"] .content {
	display: block;
  z-index: 99999999999999;
  background:#fff;
  position: absolute;
	width: 200px;
	color: #1D1D1B;
	font-weight: 400;
	font-size: .85rem;
}

.gm-opening-hours[data-style="widget"] .content ul {
	padding: 1em;
	padding-bottom: .5em;
}

.gm-opening-hours ul li .hours {
	display: inline-flex;
	gap: .25em;
}

.gm-opening-hours ul li .message {
	font-style: italic;
}

.gm-opening-hours[data-style="widget"][data-open="true"] .content ul li {
	padding: .5em 0;
}

@media (max-width: 767px) {
	.gm-opening-hours[data-style="widget"] {
		height: 50px;
	}
}

@media (max-width: 991px) {
	.gm-opening-hours[data-style="widget"] {
		background-color: transparent;
		color: #fff;
	}

	.gm-opening-hours .toggle .label:before {
		color: #fff;
	}

	.gm-opening-hours .toggle {
		margin-left: 0;
	}
}