body {
	margin: 0;
	font-family: -apple-system-font, BlinkMacSystemFont, 'SF Pro SC', 'SF Pro Text', 'SF Pro Icons', 'PingFang SC', 'Hiragino Sans GB', 'Noto', 'Noto Sans CJK SC', 'Noto Sans CJK', 'Source Han Sans', 'source-han-sans-simplified-c', 'Microsoft YaHei UI', 'Microsoft YaHei', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
	font-size: 16px;
	transition: background-color 0.5s cubic-bezier(0.28, 0.11, 0.32, 1);
	transition-property: background-color, backdrop-filter, -webkit-backdrop-filter;
}

.navbar {
	/*-webkit-backdrop-filter: saturate(180%) blur(20px) !important;
	backdrop-filter: saturate(180%) blur(20px) !important;
	background-color: rgba(255, 255, 255, 0.7) !important;*/
	justify-content: center;
	align-items: center;
	margin: auto;
	font-weight: bold;
	transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.nav-blur {
	-webkit-backdrop-filter: saturate(180%) blur(20px) !important;
	backdrop-filter: saturate(180%) blur(20px) !important;
	background-color: rgba(255, 255, 255, 0.7) !important;
}

.navbar:has(.nav-button[aria-expanded=true]) {
	-webkit-backdrop-filter: saturate(180%) blur(20px) !important;
	backdrop-filter: saturate(180%) blur(20px) !important;
	background-color: rgba(255, 255, 255, 0.7) !important;
}

.nav-button {
	border-color: rgba(0, 0, 0, 0) !important;
}

.btn {
	font-weight: bold;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
	outline: none;
	border-color: transparent;
	box-shadow: none;
}

.menu-button {
	opacity: 0.5;
}

.menuicon {
	/*width: 56px;*/
	height: 30px;
	cursor: pointer;
	transition: opacity .2s cubic-bezier(.645,.045,.355,1);
	-webkit-tap-highlight-color: transparent;
	opacity: 0.8;
	margin-right: 15px;
}

.menuicon:hover {
	opacity: 1;
}

.menuicon .chevron {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1),-webkit-transform-origin 1s cubic-bezier(0.86, 0, 0.07, 1);
	transition: -webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1),-webkit-transform-origin 1s cubic-bezier(0.86, 0, 0.07, 1);
	transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1),transform-origin 1s cubic-bezier(0.86, 0, 0.07, 1);
	transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1),transform-origin 1s cubic-bezier(0.86, 0, 0.07, 1),-webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1),-webkit-transform-origin 1s cubic-bezier(0.86, 0, 0.07, 1);
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.menuicon .chevron::before, .menuicon .chevron::after {
	background: #000;
	content: "";
	display: block;
	position: absolute;
	top: 13px;
	width: 11px;
	height: 1px;
	z-index: 1;
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1),-webkit-transform-origin 1s cubic-bezier(0.86, 0, 0.07, 1);
	transition: -webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1),-webkit-transform-origin 1s cubic-bezier(0.86, 0, 0.07, 1);
	transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1),transform-origin 1s cubic-bezier(0.86, 0, 0.07, 1);
	transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1),transform-origin 1s cubic-bezier(0.86, 0, 0.07, 1),-webkit-transform 1s cubic-bezier(0.86, 0, 0.07, 1),-webkit-transform-origin 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.menuicon .chevron::before {
	-webkit-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	-webkit-transform: rotate(40deg) scaleY(1.1);
	transform: rotate(40deg) scaleY(1.1);
	right: 0;
	border-radius: .5px 0 0 .5px;
	animation: 1s cubic-bezier(0.86, 0, 0.07, 1) 0s normal none running chevron-before;
-webkit-animation: 1s cubic-bezier(0.86, 0, 0.07, 1) 0s normal none running chevron-before;
}

.menuicon .chevron::after {
	-webkit-transform-origin: 0% 100%;
	transform-origin: 0% 100%;
	-webkit-transform: rotate(-40deg) scaleY(1.1);
	transform: rotate(-40deg) scaleY(1.1);
	left: 0;
	border-radius: 0 .5px .5px 0;
	animation: 1s cubic-bezier(0.86, 0, 0.07, 1) 0s normal none running chevron-after;
	-webkit-animation: 1s cubic-bezier(0.86, 0, 0.07, 1) 0s normal none running chevron-after;
}

.menuicon[aria-expanded=true] .chevron {
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
}

.menuicon[aria-expanded=true] .chevron::before {
	-webkit-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
	-webkit-transform: rotate(-40deg) scaleY(1.1);
	transform: rotate(-40deg) scaleY(1);
	animation: 1s cubic-bezier(0.86, 0, 0.07, 1) 0s normal none running chevron-before-expanded;
	-webkit-animation: 1s cubic-bezier(0.86, 0, 0.07, 1) 0s normal none running chevron-before-expanded;
}

.menuicon[aria-expanded=true] .chevron::after {
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	-webkit-transform: rotate(40deg) scaleY(1.1);
	transform: rotate(40deg) scaleY(1);
	animation: 1s cubic-bezier(0.86, 0, 0.07, 1) 0s normal none running chevron-after-expanded;
	-webkit-animation: 1s cubic-bezier(0.86, 0, 0.07, 1) 0s normal none running chevron-after-expanded;
}

@keyframes chevron-before{
	0% {
		right: 0;
	}
	
	30% {
		right: 0;
	}
	
	53% {
		right: -0.21px;
	}
	
	68% {
		right: 0;
	}
	
	100% {
		right: 0;
	}
}

@keyframes chevron-after{
	0% {
		left: 0;
	}
	
	30% {
		left: 0;
	}
	
	53% {
		left: -0.21px;
	}
	
	68% {
		left: 0;
	}
	
	100% {
		left: 0;
	}
}

@keyframes chevron-before-expanded{
	0% {
		right: 0;
	}
	
	30% {
		right: 0;
	}
	
	53% {
		right: -0.21px;
	}
	
	68% {
		right: 0;
	}
	
	100% {
		right: 0;
	}
}

@keyframes chevron-after-expanded{
	0% {
		left: 0;
	}
	
	30% {
		left: 0;
	}
	
	53% {
		left: -0.21px;
	}
	
	68% {
		left: 0;
	}
	
	100% {
		left: 0;
	}
}

.sps--abv {
	background-color: transparent !important;
}

.android.sps--abv {
	background-color: #ffffff !important;
	/*box-shadow: 0 0 15px rgba(0, 0, 0, .2);*/
}

.nav-shadow {
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.sps--blw {
	-webkit-backdrop-filter: saturate(180%) blur(20px) !important;
	backdrop-filter: saturate(180%) blur(20px) !important;
	background-color: rgba(255, 255, 255, 0.7) !important;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.android.sps--blw {
	background-color: #ffffff !important;
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.nav-wrap {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	max-width: 990px;
}

.container {
	max-width: 990px;
	padding-left: 2rem;
	padding-right: 2rem;
}

.nowrap {
	display: inline-block;
	text-decoration: inherit;
	white-space: nowrap;
}

.section-hero {
	background: #ffffff;
	border-radius: 0;
	margin-bottom: 0;
}

.content-hero {
	padding-bottom: 0 !important;
}

.headline-name {
	font-size: 1.5rem;
}

.description-container a {
	color: #0070c9;
}

.headline-slogan {
	font-size: 1.6em;
	font-weight: 200;
	margin-bottom: 40px;
}

.image-device {
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-device-img {
	width: 100%;
	max-width: 500px;
}

.intro {
	font-size: 18px;
	line-height: 1.6;
	font-weight: 200;
}


.qrcode {
	display: flex;
	justify-content: center;
	align-items: center;
}

.desc {
	font-weight: bold;
	margin-top: 10px;
}

.download-instruction {
	text-align: left;
	color: #333333;
	font-size: 11px;
}

.download-app {
	justify-content: center;
	display: grid;
}

.download-instruction li,
.download-instruction ul,
.download-instruction ol {
	font-size: 11px;
}

.download-instruction h3 {
	font-size: 15px;
}

.section-footer {
	background-color: #f5f5f7;
	border-radius: 0;
	font-weight: 400;
}

.section-footer a {
	color: #515154;
}

.footer-nav-list {
	background-color: inherit;
	border-radius: 0;
	border-bottom: 1px solid #d6d6d6;
	font-size: 14px;
	padding-left: 0;
	padding-right: 0;
}

.footer-nav-logo {
	width: 20px;
}

.breadcrumb-item {
	padding-top: 3px;
	padding-bottom: 3px;
}

.breadcrumb-item+.breadcrumb-item::before {
	width: 8px;
	height: 18px;
	background-size: 8px 18px;
	background-repeat: no-repeat;
	background-image: url(../img/support/breadcrumbs-separator-icon.svg);
	margin-right: 11px;
	content: '';
	display: inline-block;
	vertical-align: middle;
	margin-top: -1px;
}

.more {
	display: inline-block;
}

.more img {
	width: 16px;
	height: 16px;
	position: relative;
	bottom: 1.5px;
	display: inline-block;
	vertical-align: middle;
}

.copyright {
	text-align: left;
	color: #86868b;
	font-size: 12px;
	padding: 1rem;
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
}

.icp {
	color: #666;
	font-size: 12px;
	margin-bottom: 0;
	padding-left: 0;
	padding-right: 0;
}

.note {
	border-bottom: 1px solid #d6d6d6;
	color: #86868b;
	padding: 0.8rem 1em;
	font-size: 14px;
	padding-left: 0;
	padding-right: 0;
}

.note ul {
	list-style: none;
	padding: 0;
	margin: 0;
}


/* Show & Hide */

@media only screen and (max-width: 735px) {
	br.hide-for-small {
		display: none
	}
}

@media only screen and (max-width: 1024px) {
	br.hide-for-medium {
		display: none
	}
}

br.hide-for-large {
	display: none
}

@media only screen and (max-width: 1024px) {
	br.hide-for-large {
		display: block
	}
}

@media only screen and (max-width: 735px) {
	br.show-for-small {
		display: block
	}
}

br.show-only-for-small {
	display: none
}

@media only screen and (max-width: 735px) {
	br.show-only-for-small {
		display: block
	}
}

@media only screen and (max-width: 1024px) {
	br.show-for-medium {
		display: block
	}
}

br.show-only-for-medium {
	display: none
}

@media only screen and (max-width: 1024px) {
	br.show-only-for-medium {
		display: block
	}
}

@media only screen and (max-width: 735px) {
	br.show-only-for-medium {
		display: none
	}
}

br.show-for-large {
	display: block
}

br.show-only-for-large {
	display: block
}

@media only screen and (max-width: 1068px) {
	br.show-only-for-large {
		display: none
	}
}

@media only screen and (max-width: 1024px) {
	br.show-only-for-large {
		display: none
	}
}

@media only screen and (max-width: 735px) {
	br.show-only-for-large {
		display: none
	}
}

@media only screen and (max-width: 320px) {
	br.hide-for-xsmall {
		display: none
	}
}

br.show-only-for-xsmall {
	display: none
}

@media only screen and (max-width: 320px) {
	br.show-only-for-xsmall {
		display: block
	}
}

/* Show & Hide End*/
