.aps-rail {
	position: absolute;
	right: 18px;
	bottom: 13%;
	z-index: 1100;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.aps-action {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	user-select: none;
	margin-top: 14px;
}
.aps-rail .aps-action {
	margin-top: 0;
}
.aps-btn {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: rgba(14, 14, 18, .5);
	border: 1px solid rgba(255, 255, 255, .16);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: border-color .15s, transform .12s;
}
.aps-action:hover .aps-btn {
	border-color: rgba(255, 255, 255, .34);
}
.aps-action:active .aps-btn {
	transform: scale(.92);
}
.aps-btn svg {
	width: 27px;
	height: 27px;
	display: block;
}
.aps-word {
	font: 800 9.5px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .62);
	text-shadow: 0 1px 3px rgba(0, 0, 0, .7);
}

.aps-pop {
	position: fixed;
	width: 232px;
	background: linear-gradient(180deg, rgba(28, 28, 33, .98), rgba(18, 18, 22, .99));
	-webkit-backdrop-filter: blur(18px) saturate(1.3);
	backdrop-filter: blur(18px) saturate(1.3);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 18px;
	padding: 8px;
	box-shadow: 0 16px 50px rgba(0, 0, 0, .6);
	opacity: 0;
	transform: translateX(-8px) scale(.97);
	transform-origin: left center;
	pointer-events: none;
	transition: opacity .2s, transform .2s;
	z-index: 1300;
}
.aps-pop.aps-on {
	opacity: 1;
	transform: translateX(0) scale(1);
	pointer-events: auto;
}
.aps-pophead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 6px 8px;
}
.aps-potitle {
	font: 800 11px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #c9a45c;
}
.aps-x {
	box-sizing: border-box;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	border-radius: 50%;
	flex: 0 0 auto;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .11);
	color: rgba(255, 255, 255, .8);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	line-height: 0;
	transition: background .15s, transform .1s;
}
.aps-x:hover {
	background: rgba(255, 255, 255, .14);
}
.aps-x:active {
	transform: scale(.9);
}
.aps-x svg {
	width: 16px;
	height: 16px;
	display: block;
}
.aps-x.aps-x-oval {
	width: 44px;
	height: 30px;
}
.aps-pop.aps-sheet .aps-x.aps-x-oval {
	width: 50px;
	height: 34px;
}
.aps-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 11px;
	border-radius: 11px;
	cursor: pointer;
}
.aps-row:hover {
	background: rgba(255, 255, 255, .07);
}
.aps-ic {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	color: #fff;
	background: #2a2b31;
}
.aps-ic.is-x {
	background: #000;
	border: 1px solid #34343c;
}
.aps-ic.is-fb {
	background: #1877f2;
}
.aps-ic.is-wa {
	background: #25d366;
}
.aps-ic svg {
	width: 19px;
	height: 19px;
	display: block;
}
.aps-nm {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}
.aps-feedback {
	font-size: 12px;
	color: #4ad07a;
	font-weight: 700;
	text-align: center;
	padding: 4px 6px 2px;
	min-height: 16px;
	word-break: break-all;
}

.aps-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1290;
	background: rgba(0, 0, 0, .5);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
}
.aps-backdrop.aps-on {
	opacity: 1;
	pointer-events: auto;
}

.aps-pop.aps-sheet {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: auto;
	width: auto;
	max-height: 86vh;
	overflow-y: auto;
	border-radius: 28px 28px 0 0;
	padding: 16px 18px calc(20px + env(safe-area-inset-bottom));
	transform: translateY(100%);
	transform-origin: bottom center;
}
.aps-pop.aps-sheet.aps-on {
	transform: translateY(0);
}
.aps-shead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2px;
}
.aps-stitle {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -.01em;
	color: #fff;
}
.aps-pop.aps-sheet .aps-x {
	width: 34px;
	height: 34px;
}
.aps-pop.aps-sheet .aps-x svg {
	width: 18px;
	height: 18px;
}
.aps-prev {
	display: flex;
	align-items: center;
	gap: 13px;
	margin: 14px 0 16px;
	padding: 11px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 16px;
}
.aps-thumb {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	object-fit: cover;
	flex: 0 0 auto;
	box-shadow: 0 0 0 1px rgba(201, 164, 92, .40), 0 6px 16px rgba(0, 0, 0, .5);
}
.aps-prevmeta {
	min-width: 0;
}
.aps-prevt {
	font: 700 15.5px/1.25 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	color: #fff;
	margin: 0 0 4px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.aps-prevd {
	font: 600 13px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	color: #c9a45c;
}
.aps-apps {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	padding: 2px 0 8px;
}
.aps-app {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	cursor: pointer;
}
.aps-circ {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #2a2b31;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
	transition: transform .12s;
}
.aps-app:active .aps-circ {
	transform: scale(.9);
}
.aps-circ svg {
	width: 27px;
	height: 27px;
	display: block;
}
.aps-c-x {
	background: #000;
	border: 1px solid #34343c;
}
.aps-c-fb {
	background: #1877f2;
}
.aps-c-whatsapp {
	background: #25d366;
}
.aps-c-sms {
	background: #34c759;
}
.aps-c-email {
	background: linear-gradient(180deg, #3aa0ff, #0a6fd6);
}
.aps-aname {
	font: 600 12.5px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	color: rgba(255, 255, 255, .74);
}
.aps-sdiv {
	height: 1px;
	background: rgba(255, 255, 255, .09);
	margin: 8px 0 4px;
}
.aps-pop.aps-sheet .aps-row {
	padding: 14px 6px;
}
.aps-pop.aps-sheet .aps-row + .aps-row {
	border-top: 1px solid rgba(255, 255, 255, .06);
}
.aps-pop.aps-sheet .aps-ic {
	width: 43px;
	height: 43px;
	border-radius: 12px;
}
.aps-pop.aps-sheet .aps-ic svg {
	width: 20px;
	height: 20px;
}
.aps-pop.aps-sheet .aps-nm {
	font-size: 16px;
	flex: 1;
}
.aps-cancel {
	margin-top: 12px;
	width: 100%;
	padding: 16px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, .10);
	background: rgba(255, 255, 255, .07);
	color: #fff;
	font: 800 17px/1 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	text-align: center;
	cursor: pointer;
}

.aps-pop.aps-cluster {
	width: 196px;
}
.aps-clgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.aps-clgrid .aps-app {
	gap: 0;
}
.aps-cluster .aps-circ {
	width: 48px;
	height: 48px;
}
.aps-cluster .aps-circ svg {
	width: 22px;
	height: 22px;
}

.aps-pop.aps-gridsheet .aps-tilegrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 14px;
}
.aps-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	padding: 14px 4px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 16px;
	cursor: pointer;
}
.aps-tile:active {
	background: rgba(255, 255, 255, .08);
}
.aps-tile .aps-circ {
	width: 50px;
	height: 50px;
}
.aps-tile .aps-circ svg {
	width: 23px;
	height: 23px;
}

.aps-pop.aps-inline {
	width: auto;
	background: none;
	border: 0;
	box-shadow: none;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 11px;
}
.aps-iorb {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .4);
}
.aps-iorb svg {
	width: 22px;
	height: 22px;
	display: block;
}
.aps-iclose {
	background: rgba(40, 40, 46, .95);
	border: 1px solid rgba(255, 255, 255, .16);
}
.aps-pop.aps-inline .aps-feedback {
	background: rgba(20, 20, 24, .9);
	border-radius: 8px;
	padding: 4px 8px;
}
