:root {
	--bs-danger: #F8285A;
	--bs-success: #17C653;
	--bs-primary: #1A99D3;
	--bs-bg-hovered: #f1f1f1
}

body,
html {
	overscroll-behavior: none;
	touch-action: none;
	margin: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	font-family: 'Ubuntu', sans-serif;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

body {
	margin: 0;
	min-height: 100dvh;
	background: #eef1f7;
}

body * {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.app-screen {
	position: fixed;
	inset: 0;
	display: grid;
	grid-template-rows: auto 1fr auto;
	background: #eef1f7;
	overflow: hidden;
}

.app-screen img,
.app-screen svg {
	pointer-events: none;
	-webkit-user-drag: none;
	user-drag: none;
	-webkit-touch-callout: none;
}

.app-screen *,
.app-screen *:focus,
.app-screen *:active,
.app-screen *:visited {
	outline: none;
	border: none;
	box-shadow: none;
	-webkit-tap-highlight-color: transparent;
}

.app-screen *:focus-visible {
	outline: none;
}

.top-bar {
	height: 85px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 20px;
	color: #929aaa;
	padding: 5px 20px 0 20px;
}

.object-icon {
	width: 36px;
	height: 36px;
	border-radius: 5px;
	background: var(--bs-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.object-icon i {
	font-size: 17px;
	color: #ffffff;
}

.object-info {
	width: 1px;
	flex: 1;
	overflow: hidden;
}

.object-title {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	color: #071633;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 700;
	white-space: nowrap;
}

.object-title-text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.object-control-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 3px 7px;
	border-radius: 6px;
	background: #eef7fc;
	color: var(--bs-primary);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
}

.object-subtitle {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #9ca4b8;
	font-size: 12px;
	margin-top: 3px;
	font-weight: 400;
}

.object-subtitle i {
	font-size: 12px;
	flex: 0 0 auto;
}

.object-subtitle span {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

/* CENTER */

.alert-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
}

.alert-btn .text {
	padding: 0 20px;
}

.alert-btn h1 {
	margin-top: -50px;
	color: #16233a;
	font-size: 32px;
	line-height: 1.18;
	font-weight: 700;
	letter-spacing: -.8px;
	text-shadow: 0 2px 0 rgba(255,255,255,.65);
}

.alert-btn p {
	margin: 24px 0 54px;
	color: #a0a8b6;
	font-size: 22px;
	font-weight: 400;
}

.alert-btn .sos-wrap {
	position: relative;
	margin-top: 10px;
}

.alert-btn .sos-btn {
	outline: none;
	--progress: 0deg;
	position: relative;
	touch-action: none;
	width: 60vw;
	height: 60vw;
	max-width: 300px;
	max-height: 300px;
	border: 0;
	border-radius: 50%;
	padding: 0;
	cursor: pointer;
	background:
		conic-gradient(
			var(--bs-primary) 0deg,
			var(--bs-primary) var(--progress),
			#ffffff var(--progress),
			#ffffff 360deg
		);
	box-shadow:
		0 20px 25px rgba(68, 80, 110, .25);
	transition: transform .45s cubic-bezier(.22, 1, .36, 1);
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateZ(0);
}

.alert-btn .sos-icon {
	width: 80%;
	height: 80%;
	margin-top: 15px;
	object-fit: contain;
	pointer-events: none;
}

/* Пульсації */

.alert-btn .sos-btn::before,
.alert-btn .sos-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: 50%;
	background: var(--bs-primary);
	opacity: 0;
	pointer-events: none;
}

.alert-btn .sos-btn::before {
	animation: sosPulse 1.8s ease-out infinite;
}

.alert-btn .sos-btn::after {
	animation: sosPulse 1.8s ease-out .45s infinite;
}

.alert-btn .sos-btn.is-holding::before,
.alert-btn .sos-btn.is-holding::after {
	animation: none;
	opacity: 0;
}

.alert-btn .sos-progress {
	position: absolute;
	inset: 3%;
	border-radius: 50%;
	background:
		linear-gradient(
			180deg,
			var(--bs-primary) 0%,
			#1986b8 52%,
			#17749f 100%
		);
	transition:
		inset .45s cubic-bezier(.22, 1, .36, 1),
		transform .45s cubic-bezier(.22, 1, .36, 1);
	overflow: hidden;
	box-shadow:
		inset 0 8px 16px rgba(255,255,255,.18),
		inset 0 -12px 18px rgba(120,0,0,.12);
}

.alert-btn .sos-progress::before {
	content: "";
	position: absolute;
	inset: 3%;
	border-radius: 50%;
	background: #ffffff;
	z-index: -1;
}

.alert-btn .sos-btn.is-holding .sos-progress {
	inset: 9%;
}

/* Центр */

.alert-btn .sos-core {
	position: absolute;
	inset: 18%;
	border-radius: 50%;
	display: grid;
	place-items: center;
	overflow: hidden;
}

/* Цифра */

.alert-btn .sos-value {
	position: relative;
	z-index: 2;
	color: #fff;
	font-size: clamp(100px, 28vw, 180px);
	font-weight: 700;
	line-height: 1;
	background: transparent;
	box-shadow: none;
	text-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Натискання */

.alert-btn .sos-btn.is-holding {
	transform: scale(1.05);
}

/* Завершення */

.alert-btn .sos-btn.is-done .sos-core {
	animation: donePulse 1s ease;
}

/* Анімація пульсації */

@keyframes sosPulse {
	0% {
		opacity: .35;
		transform: scale(1);
	}

	70% {
		opacity: 0;
		transform: scale(1.45);
	}

	100% {
		opacity: 0;
		transform: scale(1.45);
	}
}

/* Анімація завершення */

@keyframes donePulse {
	50% {
		transform: scale(1.04);
	}
}

.page.alert-btn.call-checking {
	visibility: hidden;
}

.tracker-page {
	background: #eef1f7;
	display: flex;
	flex-direction: column;
	padding: 0;
}

.tracker-map-wrap {
	position: relative;
	flex: 1;
	min-height: 0;
}

#trackerMap {
	width: 100%;
	height: 100%;
}

.tracker-info {
	position: absolute;
	top: 35px;
	left: 35px;
	right: 35px;
	z-index: 10;
	background: #fff;
	border-radius: 12px;
	padding: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

.tracker-info-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bs-primary);
	font-size: 32px;
	margin-top: -5px;
}

.tracker-info-title {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 700;
	color: var(--bs-primary);
}

.tracker-info-address {
	font-size: 13px;
	color: #535353;
	margin-top: 3px;
	font-weight: 500;
	line-height: 16px;
}

.tracker-info-address span {
	font-size: 11px;
	font-weight: 400;
}

.tracker-bottom {
	padding: 25px;
	background: #fff;
	box-shadow: 0 -8px 24px rgba(90,100,130,.08);
}

.tracker-text {
	margin-bottom: 10px;
	font-size: 13px;
	text-align: center;
	color: #222;
}

.tracker-actions {
	display: grid;
	gap: 10px;
}

.tracker-btn {
	width: 100%;
	height: 52px;
	border: 0;
	border-radius: 12px;
	background: var(--bs-danger);
	color: #fff;
	font-size: 16px;
	font-weight: 400;
}

.tracker-confirm {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.tracker-btn-no {
	border-radius: 12px 0 0 12px;
	background: var(--bs-danger);
	color: #ffffff;
}

.tracker-btn-yes {
	color: #ffffff;
	border-radius: 0 12px 12px 0;
	background: var(--bs-success);
}

/* BOTTOM */

.bottom-nav {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 72px;
	background: #fff;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	box-shadow: 0 -8px 24px rgba(90, 100, 130, .08);
	z-index: 4;
	overflow: hidden;
}

.bottom-nav .nav-indicator {
	position: absolute;
	top: 0;
	left: 0;
	width: 70px;
	height: 4px;
	border-radius: 0 0 20px 20px;
	background: var(--bs-primary);
	transform: translateX(0);
	transition: transform .35s cubic-bezier(.22, 1, .36, 1);
	z-index: 2;
	pointer-events: none;
}

.bottom-nav .nav-item {
	position: relative;
	height: 100%;
	display: grid;
	place-items: center;
	text-decoration: none;
	color: #777676;
	background: #ffffff;
	font-size: 25px;
	border: 0;
	outline: 0;
	transition: background-color .2s ease, border-left-color .2s ease;
}

.bottom-nav .nav-item.active {
	color: var(--bs-primary);
}

.bottom-nav .nav-icon {
	width: 27px;
	height: 27px;
	position: relative;
	z-index: 1;
}

.d-none {
	display: none !important;
}

.page {
	position: fixed;
	top: 85px;
	left: 0;
	right: 0;
	bottom: 72px;
	background: #eef1f7;
	transform: translateY(100%);
	transition: transform .4s cubic-bezier(.22, 1, .36, 1), opacity .4s cubic-bezier(.22, 1, .36, 1);
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	z-index: 1;
}

.page-full {
	top: 0px;
	bottom: 0px;
	z-index: 5;
}

.page::-webkit-scrollbar {
	display: none;
}

.page.show {
	transform: translateY(0);
}

/* сторінка, яка залишається позаду */

.page.page-under {
	transform: scale(.96);
	opacity: .7;
	pointer-events: none;
}

.page-padding {
	padding: 0 20px 20px 20px;
}

.list-objects h1 {
	margin: 0 0 16px;
	font-size: 16px;
	color: #141414;
}

.app-screen.no-object .list-objects {
	padding-top: 35px;
}

.list-objects .objects {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}

.list-objects .objects .item {
	background: #ffffff;
	box-shadow: 0 6px 16px rgba(90, 100, 130, .10);
	padding: 15px;
	border-radius: 10px;
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr);
	align-items: center;
	gap: 15px;
	border-left: 4px solid transparent;
	transition: background-color .2s ease, border-left-color .2s ease;
	cursor: pointer;
}

.list-objects .objects .item:active {
	background: var(--bs-bg-hovered);
	border-left-color: var(--bs-bg-hovered);
}

.list-objects .objects .item.selected {
	border-left-color: var(--bs-success);
}

.list-objects .objects .item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--bs-primary);
}

.list-objects .objects .item .name {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 5px;
	font-size: 13px;
	font-weight: 500;
	color: #141414;
}

.list-objects .objects .item .control-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 3px 8px;
	border-radius: 6px;
	background: #eef7fc;
	color: var(--bs-primary);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}

.list-objects .objects .item .adress {
	font-size: 11px;
	line-height: 1.4;
	font-weight: 400;
	color: #686d76;
}

.list-objects .objects .item .object-item-content {
	min-width: 0;
}

.list-objects .objects .item .object-name {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.list-objects .objects .item .service-name {
	margin-bottom: 3px;
	color: var(--bs-primary);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.3;
}

.object-subtitle-content {
	min-width: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.object-service-name {
	color: var(--bs-primary);
	font-weight: 500;
}

.object-service-separator {
	color: #b3bac8;
}

.objects-empty {
	padding: 30px 20px;
	border-radius: 10px;
	background: #ffffff;
	color: #7b828d;
	text-align: center;
	font-size: 13px;
}

.app-screen.auth-pending {
	visibility: hidden;
}

.app-screen.auth-mode .top-bar,
.app-screen.auth-mode .bottom-nav {
	display: none;
}

.app-screen.no-object .top-bar {
	display: none;
}

.app-screen.no-object .page {
	top: 0;
}

.auth-page {
	position:fixed;
	inset:0;
	z-index:100;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:35px 24px;
	box-sizing:border-box;
	background:#fff;
}

.auth-content {
	width:100%;
	max-width:420px;
	min-height:620px;
	display:flex;
	flex-direction:column;
	align-items:center;
	text-align:center;
}

.auth-logo {
	margin-top:35px;
}

.auth-logo img {
	display:block;
	width:120px;
	height:120px;
	object-fit:contain;
	filter:drop-shadow(0 1px 4px rgba(20,35,65,.18));
}

.auth-logo img {
	display:block;
	width:320px;
	height:320px;
	object-fit:contain;
}

.auth-text {
	margin-top:auto;
	margin-bottom:138px;
}

.auth-text h1 {
	margin:0 0 10px;
	color:#16233a;
	font-size:30px;
	line-height:1.15;
	font-weight:700;
	letter-spacing:-.5px;
}

.auth-text p {
	margin:0;
	color:#8b929e;
	font-size:17px;
	line-height:1.5;
	font-weight:400;
}

.auth-actions {
	width:100%;
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:12px;
	margin-bottom:20px;
}

.auth-btn {
	height:54px;
	border:0;
	border-radius:10px;
	font-family:inherit;
	font-size:14px;
	font-weight:400;
	cursor:pointer;
	transition:transform .15s ease, opacity .15s ease;
}

.auth-btn:active {
	transform:scale(.97);
}

.auth-btn-primary {
	background:var(--bs-primary);
	color:#fff;
}

.auth-btn-secondary {
	background:#f1f3f6;
	color:#16233a;
}

.profile-page {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

.profile-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 25px 0 35px;
	text-align: center;
}

.profile-photo {
	width: 110px;
	height: 110px;
	margin-bottom: 18px;
	border-radius: 50%;
	overflow: hidden;
	background: #e4e8ef;
}

.profile-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-photo-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 55px;
	color: #9299a5;
}

.profile-name {
	font-size: 24px;
	font-weight: 700;
}

.profile-phone {
	margin-top: 7px;
	font-size: 15px;
	color: #7b828d;
}

.profile-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.profile-info-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
	border-radius: 16px;
	background: #fff;
}

.profile-info-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	border-radius: 12px;
	background: #eef1f7;
	font-size: 22px;
}

.profile-info-label {
	margin-bottom: 3px;
	font-size: 12px;
	color: #8b919b;
}

.profile-info-value {
	font-size: 15px;
	font-weight: 500;
}

.profile-actions {
	margin-top: 25px;
}

.profile-logout {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	height: 54px;
	border: 0;
	border-radius: 14px;
	background: #fff;
	color: #e02d36;
	font-family: inherit;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
}

.profile-logout i {
	font-size: 22px;
}

.profile-logout:disabled {
	opacity: .5;
	pointer-events: none;
}

.api-error-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px;
	background: rgba(7, 22, 51, .35);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

.api-error-popup.show {
	opacity: 1;
	visibility: visible;
}

.api-error-box {
	width: 100%;
	max-width: 360px;
	padding: 25px;
	box-sizing: border-box;
	border-radius: 18px;
	background: #fff;
	text-align: center;
	box-shadow: 0 20px 50px rgba(30, 40, 65, .2);
	transform: translateY(15px) scale(.97);
	transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}

.api-error-popup.show .api-error-box {
	transform: translateY(0) scale(1);
}

.api-error-icon {
	margin-bottom: 12px;
	color: var(--bs-danger);
	font-size: 48px;
	line-height: 1;
}

.api-error-title {
	margin-bottom: 10px;
	color: #16233a;
	font-size: 19px;
	font-weight: 700;
}

.api-error-message {
	margin-bottom: 22px;
	color: #707784;
	font-size: 14px;
	line-height: 1.5;
}

.api-error-close {
	width: 100%;
	height: 48px;
	border: 0;
	border-radius: 12px;
	background: var(--bs-primary);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
}

.install-mode {
	background:#eef1f7;
}

.install-screen {
	width:100%;
	height:100dvh;
	min-height:100dvh;
	box-sizing:border-box;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:flex-start;
	padding:max(25px, env(safe-area-inset-top)) 30px max(20px, env(safe-area-inset-bottom));
	background:#eef1f7;
	text-align:center;
	overflow:hidden;
}

.install-logo {
	margin-bottom:25px;
}

.install-logo img {
	display:block;
	width:90px;
	height:90px;
	margin:0 auto;
	object-fit:contain;
}

.install-title {
	margin-bottom:10px;
	color:#16233a;
	font-size:26px;
	line-height:1.2;
	font-weight:700;
}

.install-description {
	max-width:420px;
	margin-bottom:30px;
	color:#7b828d;
	font-size:15px;
	line-height:1.5;
}

.qr-screen {
	justify-content:center;
}

.install-qr {
	display:flex;
	align-items:center;
	justify-content:center;
	margin:0 0 25px;
	padding:10px;
	border-radius:18px;
	background:#fff;
	box-shadow:0 8px 30px rgba(20,35,65,.12);
}

.install-qr img {
	display:block;
	width:220px;
	height:220px;
	max-width:100%;
	object-fit:contain;
}

.install-qr-text {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	color:#7b828d;
	font-size:14px;
}

.install-qr-text i {
	color:var(--bs-primary);
	font-size:22px;
}

.install-open-browser {
	margin-top:14px;
	color:#8a919d;
	font-size:13px;
	line-height:1.5;
}

.install-open-browser a {
	color:var(--bs-primary);
	font-weight:500;
	text-decoration:none;
}

.install-slider {
	width:100%;
	max-width:430px;
	flex:1 1 auto;
	min-height:0;
	display:flex;
	flex-direction:column;
	align-items:center;
	overflow:hidden;
}

.install-slides {
	position:relative;
	width:100%;
	flex:1 1 auto;
	min-height:0;
	touch-action:pan-y;
}

.install-slide {
	display:none;
	width:100%;
	height:100%;
	min-height:0;
	text-align:center;
}

.install-slide.active {
	display:flex;
	flex-direction:column;
	align-items:center;
	animation:installSlideIn .25s ease;
}

.install-slide-image {
	width:100%;
	flex:1 1 auto;
	min-height:0;
	margin-bottom:15px;
	display:flex;
	align-items:center;
	justify-content:center;
	overflow:hidden;
}

.install-slide-image img {
	display:block;
	max-width:100%;
	max-height:100%;
	object-fit:contain;
	border-radius:16px;
}

.install-slide-title {
	margin-bottom:7px;
	color:#16233a;
	font-size:17px;
	font-weight:700;
}

.install-slide-text {
	color:#7b828d;
	font-size:13px;
	line-height:1.5;
}

.install-dots {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:7px;
	margin:20px 0;
}

.install-dots span {
	width:7px;
	height:7px;
	border-radius:50%;
	background:#d8dce3;
	transition:all .2s ease;
}

.install-dots span.active {
	width:20px;
	border-radius:10px;
	background:var(--bs-primary);
}

.install-navigation {
	width:100%;
	max-width:430px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:12px;
}

.install-prev,
.install-next {
	height:50px;
	border:0;
	border-radius:12px;
	font-family:inherit;
	font-size:14px;
	font-weight:600;
	cursor:pointer;
}

.install-prev {
	width:50px;
	flex:0 0 50px;
	background:#fff;
	color:#16233a;
}

.install-next {
	width:100%;
	max-width:430px;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	background:var(--bs-primary);
	color:#fff;
}

.install-navigation.has-prev .install-next {
	flex:1;
	width:auto;
	max-width:none;
}

.offline-screen {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	padding: 30px;
	text-align: center;
}

.offline-content {
	width: 100%;
	max-width: 420px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.offline-icon {
	width: min(72vw, 320px);
	height: auto;
	margin-bottom: 50px;
	opacity: .95;
}

.offline-title {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	color: #20252b;
	margin-bottom: 12px;
}

.offline-text {
	font-size: 16px;
	line-height: 1.5;
	color: #7a838c;
	max-width: 320px;
}

@keyframes installSlideIn {
	from {
		opacity:0;
		transform:translateX(15px);
	}

	to {
		opacity:1;
		transform:translateX(0);
	}
}

@media (max-width:500px) {
	.install-screen {
		padding:max(20px, env(safe-area-inset-top)) 20px max(15px, env(safe-area-inset-bottom));
	}

	.install-slide-image {
		height:360px;
	}
}

@keyframes installSlideIn {
	from {
		opacity:0;
		transform:translateX(15px);
	}

	to {
		opacity:1;
		transform:translateX(0);
	}
}

/* MOBILE SMALL */

@media (max-width: 390px) {
	.top-bar {
		padding-left: 22px;
		padding-right: 22px;
	}

	.alert-btn h1 {
		font-size: 38px;
	}

	.alert-btn p {
		font-size: 20px;
		margin-bottom: 42px;
	}
}

/* LANDSCAPE CONTENT */

@media (orientation: landscape) {
	html,
	body {
		overflow: hidden;
	}

	.app-screen {
		overflow: hidden;
	}

	.top-bar {
		height: 66px;
		padding: 20px 10px 0 30px;
	}

	.page {
		top: 80px;
		bottom: 52px;
	}

	.alert-btn {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-evenly;
		padding: 0 40px;
	}

	.alert-btn .text {
		flex: 0 0 40%;
		text-align: left;
	}

	.alert-btn h1 {
		font-size: 32px;
	}

	.alert-btn p {
		margin: 16px 0 0;
		font-size: 18px;
	}

	.alert-btn .sos-wrap {
		flex: 0 0 auto;
		margin: 0;
	}

	.alert-btn .sos-btn {
		width: min(220px, 45vh);
		height: min(220px, 45vh);
		max-width: none;
		max-height: none;
	}

	.alert-btn .sos-icon {
		margin-top: 10px;
	}

	.alert-btn .sos-value {
		font-size: clamp(30px, 12vw, 100px);
	}

	.bottom-nav {
		height: 52px;
	}
}

@media (max-height:750px) {
	.install-logo {
		margin-bottom:15px;
	}

	.install-logo img {
		width:70px;
		height:70px;
	}

	.install-title {
		margin-bottom:7px;
		font-size:22px;
	}

	.install-description {
		margin-bottom:18px;
		font-size:14px;
	}

	.install-slide-title {
		font-size:16px;
	}

	.install-slide-text {
		font-size:12px;
	}

	.install-dots {
		margin:12px 0;
	}

	.install-prev,
	.install-next {
		height:46px;
	}
}

@media (max-height:620px) {
	.install-logo img {
		width:60px;
		height:60px;
	}

	.install-description {
		margin-bottom:12px;
		font-size:13px;
	}

	.install-slide-image {
		margin-bottom:10px;
	}

	.install-slide-title {
		margin-bottom:4px;
		font-size:15px;
	}

	.install-slide-text {
		font-size:11px;
	}

	.install-dots {
		margin:8px 0;
	}

	.install-prev,
	.install-next {
		height:42px;
	}
}