:root {
	--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--pwa-color-primary: #ffffff;
	--pwa-color-secondary: #ffffff;
	--pwa-color-accent: #a0b5ff;
	--pwa-color-font: #000000;
	--pwa-color-button: #4C84FF;
	--pwa-color-button-hover: #3c669b;
}
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	scroll-behavior: smooth;
	scrollbar-color: var(--pwa-color-button) var(--pwa-color-secondary);
	scrollbar-width: thin;
}
body {
	margin: 0;
	font-family: sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: var(--pwa-color-font);
	text-align: center;
	background-color: var(--pwa-color-primary);
}
footer {
	text-align: left;
}
footer h6 {
	font-size: 20px;
}
.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.container-column {
	flex-direction: column;
}
.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.column-0 {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	position: relative;
	width: 100%;
	max-width: 100%;
	margin-bottom: 2rem;
}
.items-header {
	max-height: 75px;
}
.item {
	flex: 1;
	position: relative;
	margin: 1rem 1rem 4rem 1rem;
	padding-bottom: 4rem;
}
.item[style*="display: block;"] + .item-divider {
	border: none;
	background: var(--pwa-color-button);
	width: 6px;
	margin-top: 25px;
	border-radius: 6px;
	z-index: 0;
}
@media (max-width:566px) {
	.item[style*="display: block;"] + .item-divider {
		width: 100%;
		margin: 0;
		visibility: hidden;
	}
}
.item .big-img {
	max-height: 200px;
}
.item .small-img {
	max-height: 65px;
}
.item .small-img:hover {
	opacity: 0.8;
}
.install-btn {
	width: 240px;
	height: 65px;
	border-radius: 6px;
	border: none;
	background-color: #000000;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 600;
}
.install-btn:hover {
	filter: opacity(0.8);
	cursor: pointer;
}
.btn-container {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	transform: translateY(50%);
}
.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.4);
	visibility: hidden;
	opacity: 0;
	overflow-y: hidden;
	overscroll-behavior: contain;
}
.overlay:target {
	visibility: visible;
	opacity: 1;
	z-index: 9998;
}
.overlay:target .popup {
	opacity: 1;
}
.popup {
	width: 50%;
	max-height:calc(100% - 80px);
	padding: 20px;
	background: var(--pwa-color-secondary);
	border-radius: 8px;
	position: relative;
	top:50%;
	left:50%;
	text-align: center;
	box-shadow: var(--pwa-color-button) 0px 0px 10px 0px;
	opacity: 0;
	transition: opacity .4s;
	transform: translate(-50%,-50%);
}
.popup-header {
	word-break: break-word;
}
.popup-header:after {
	content: "";
	display: block;
	width: 100%;
	height: 0;
	overflow: visible;
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 1px solid rgba(0,0,0,.1);
}
.small-popup {
	width: 40%;
}
.popup-close {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.popup-body {
	overflow:auto;
	max-height:calc(100vh - 215px);
	overflow: auto;
	display: flex;
	align-items: center;
	flex-direction: column;
	word-break: break-word;
	overscroll-behavior: contain;
}
@media (max-width:768px) {
	.popup {
		width: 80%;
	}
	.popup-body {
		align-items: initial;
	}
}
.small-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 16px;
	height: 16px;
	border-radius: 8px;
	line-height: 16px;
	text-align: center;
	text-decoration: none;
	font-size: 8px;
	color: var(--pwa-color-font);
	background-color: var(--pwa-color-button);
}
.small-close:before {
	content: "\2716";
}
.small-close:hover {
	background-color: var(--pwa-color-button-hover);
}
.btn {
	display: inline-block;
	font-weight: 400;
	color: var(--pwa-color-primary);
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-decoration: none;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.5;
	background-color: var(--pwa-color-button);
	border: none;
	border-radius: 8px;
	max-width: 100%;
	cursor: pointer;
}
.btn:hover {
	background-color: var(--pwa-color-button-hover);
	border: none;
	text-decoration: none;
	outline: 0;
	box-shadow: none;
}
.btn:focus {
	box-shadow: var(--pwa-color-button) 0px 0px 5px 0px;
	border: none;
	outline: 0;
}
.content-container {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.img-fluid {
	max-width: 100%;
	height: auto;
}

#pwa-img-btn {
	width: 5px;
	height: 5px;
}
.loader {
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border-radius: 50%;
    border: 5px solid #c0c0c0;
    border-top: 5px solid var(--pwa-color-button);
    animation: spin .3s linear infinite;
    cursor: progress;
}
.logo {
	animation: pwa-bounce 2s ease infinite;	
}
@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}
@keyframes pwa-bounce {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(0.95);
	}
	100% {
		transform: scale(1);
	}
}