html, body {

	overscroll-behavior-y: none; /* disable pull to refresh, keeps glow effects */

}

#pwainstall {

	display: block;
	color: #fff;
	position: fixed;
	bottom: 0;
	padding: 15px;
	width: 100%;
	background: rgba(54,50,56,.6);
	z-index: 100500;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	transform: translateY(0);

}

#pwainstall.pwa-hide {
	
	transform: translateY(100%);
	overflow: hidden;
	
}

#pwainstall .pwa-title {
		
	display: inline-block;
	font-weight: bold;
	margin-top: 0;

}

#pwainstall .btn-pwa-install {
	
	background: #4571C3;
	border-color: #4571C3;
	color: #fff;
	font-weight: bold;

}

#pwainstall .close {

	cursor: pointer;
	margin-top: .25rem;	
	text-indent: 0px !important;
	width: auto !important;
	background-image: none !important;

}

/* refresher */

body.refreshing .m-body {
	
	filter: blur(1px);
	touch-action: none; /* prevent scrolling */

}

body.refreshing .refresher {

	transform: translate3d(0,150%,0) scale(1);
	z-index: 100500;
	visibility: visible;

}

.refresher {

	pointer-events: none;
	--refresh-width: 65px;
	background: #363238;
	width: var(--refresh-width);
	height: var(--refresh-width);
	border-radius: 50%;
	position: fixed;
	left: calc(50% - var(--refresh-width) / 2);
	padding: 8px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
	0 1px 5px 0 rgba(0, 0, 0, 0.12),
	0 3px 1px -2px rgba(0, 0, 0, 0.2);
	transition: all 300ms cubic-bezier(0,0,0.2,1);
	will-change: transform, opacity;
	display: inline-flex;
	justify-content: space-evenly;
	align-items: center;
	visibility: hidden;
	
}

.refresher .ring {
	
	width: 40px;
	position: absolute;
	top: 7px;
	
}

.refresher .star {
	
	position: absolute;
    width: 8px;
    animation: loading 1s ease-in-out infinite;	
	
}

.refresher .star-color {
	
	fill:#89BE5C;
	
}

body.refreshing .refresher.shrink {
	
	transform: translate3d(0,150%,0) scale(0);
	opacity: 0;

}

.refresher.done {

	transition: none;

}

.refresher .stars {
	
	position: absolute;
	bottom: 13px;
	text-align: center;
	width: 100%;
	
}

.refresher .stars .star:nth-child(1) {
	
	margin-left: -20px;
	margin-top: -5px;
	animation-delay: 0;
	rotate: 40deg;
	
}

.refresher .stars .star:nth-child(2) {
	
	margin-left: -12px;
	margin-top: -1px;
	animation-delay: 0.09s;
	rotate: 20deg;
	
}

.refresher .stars .star:nth-child(3) {
	
	margin-left: -4px;
	margin-top: 0px;
	animation-delay: .18s;
	
}

.refresher .stars .star:nth-child(4) {
	
	margin-left: 4px;
	margin-top: -1px;
	animation-delay: .27s;
	rotate: -20deg;
	
}

.refresher .stars .star:nth-child(5) {
	
	margin-left: 12px;
	margin-top: -5px;
	animation-delay: .36s;
	rotate: -40deg;
	
}

@keyframes loading {
	
	0% {
	
		transform: scale(1);
	
	}
	20% {
		
		transform: scale(1.75);
	
	}
	40% {
		
		transform: scale(1);
	
	}

}

/* end of refresher */

#pwainstall .btn-pwa-install, #pwainstall .btn-primary {
	
	background: var(--color-main) !important;
	border-color: var(--color-main) !important;
	font-size: .85rem;
	padding: .5rem;
	
}

.text-primary {
	
	color: #1c1c1b !important;
	
}

#iosinstall {
	
	-webkit-transition: visibility 0.35s ease,-webkit-transform 0.35s ease;
	-webkit-transition: visibility 0.35s ease,transform 0.35s ease;
	transition: visibility 0.35s ease,transform 0.35s ease;
	transform: translate(-100%, 0px);
	z-index: 100500;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: #eee;
	overflow-y: scroll;
	
}

#iosinstall.on {
	
	transform: translate(0px, 0px);
	
}

.preheader {
	
	font-weight: bold;
	background: var(--color-main);
	color: #fff;		
	
}

.steps {
	
	background: #fff;
	
}

.steps ul {
	
	list-style: none;
	margin: 0;
	padding: 0;
	
}

.steps ul li.with-line {
	
	border-top: solid 1px var(--color-main);
	
}

#lhc_status_widget_v2 {
	
	bottom: 80px !important;
	
}