/**
 * ar-player.css — estilos do player frontend AR Viva.
 */

/*
 * Blindagem contra o CSS do tema: os botões de controle do player são UI
 * funcional e PRECISAM ser sempre legíveis. Temas costumam forçar cor/borda/
 * fundo em `button`, então aqui reforçamos com escopo + !important.
 */
.ar-viva-container .ar-viva-btn,
.ar-viva-container .ar-viva-fs-exit,
.ar-viva-overlay .ar-viva-overlay-close,
.ar-viva-stereo-ui .ar-stereo-btn {
	color: #fff !important;
	text-shadow: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	background-image: none !important;
	line-height: normal !important;
	min-height: 0 !important;
}

.ar-viva-container .ar-viva-btn,
.ar-viva-container .ar-viva-fs-exit,
.ar-viva-overlay .ar-viva-overlay-close {
	background: rgba(15, 23, 42, 0.86) !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Botões de destaque (VR / Óculos VR) em azul, também blindados. */
.ar-viva-container .ar-viva-btn.ar-btn-vr,
.ar-viva-container .ar-viva-btn.ar-btn-cardboard {
	background: #3b82f6 !important;
	border-color: rgba(255, 255, 255, 0.4) !important;
}

.ar-viva-container .ar-viva-btn:hover,
.ar-viva-container .ar-viva-fs-exit:hover {
	background: rgba(15, 23, 42, 0.96) !important;
}

.ar-viva-overlay .ar-viva-overlay-close:hover {
	background: rgba(220, 38, 38, 0.92) !important;
}

/* Ajuste do óculos VR: botões e textos legíveis sobre o fundo escuro. */
.ar-viva-stereo-ui .ar-stereo-row .ar-stereo-btn {
	background: #3b82f6 !important;
	border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.ar-viva-stereo-ui .ar-stereo-exit {
	background: rgba(15, 23, 42, 0.9) !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.ar-viva-stereo-ui,
.ar-viva-stereo-ui .ar-stereo-label,
.ar-viva-stereo-ui .ar-stereo-val {
	color: #fff !important;
}

/* -------- Container -------- */
.ar-viva-container {
	position: relative;
	width: 100%;
	min-height: 320px;
	overflow: hidden;
	border-radius: 14px;
	background: #0b0f19;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: #fff;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

/* -------- Tela de entrada -------- */
.ar-viva-entry {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.5rem;
	z-index: 3;
}

.ar-viva-thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.45;
	z-index: -1;
	filter: blur(1px);
}

.ar-viva-entry::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(11, 15, 25, 0.35), rgba(11, 15, 25, 0.85));
	z-index: -1;
}

.ar-viva-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.4rem, 3vw, 2.2rem);
	font-weight: 700;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.ar-viva-device-hint {
	margin: 0 0 1.5rem;
	font-size: 0.95rem;
	opacity: 0.85;
	max-width: 32ch;
}

/* -------- Botão de entrada -------- */
.ar-viva-enter-btn {
	appearance: none;
	border: none;
	cursor: pointer;
	padding: 0.9rem 1.8rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, #3b82f6, #60a5fa);
	border-radius: 999px;
	box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ar-viva-enter-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.55);
}

.ar-viva-enter-btn:active {
	transform: scale(0.98);
}

/* -------- Instalação (PWA) na tela de entrada -------- */
.ar-viva-install {
	margin-top: 1rem;
	max-width: 34ch;
}

.ar-viva-gate-title {
	display: block;
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.ar-viva-install-tip {
	display: block;
	font-size: 0.82rem;
	line-height: 1.5;
	opacity: 0.9;
	background: rgba(15, 23, 42, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 0.6rem 0.85rem;
	border-radius: 12px;
	margin-top: 0.5rem;
}

.ar-viva-install-tip b {
	color: #60a5fa;
	font-weight: 700;
}

.ar-viva-install-btn {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	padding: 0.65rem 1.2rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: #fff;
	background: rgba(15, 23, 42, 0.7);
	border-radius: 999px;
	transition: background 0.18s ease, transform 0.18s ease;
}

.ar-viva-install-btn:hover {
	background: rgba(15, 23, 42, 0.92);
	transform: scale(1.04);
}

/* -------- Loader -------- */
.ar-viva-loader {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3;
}

.ar-viva-loader-ring {
	width: 54px;
	height: 54px;
	border: 4px solid rgba(255, 255, 255, 0.2);
	border-top-color: #60a5fa;
	border-radius: 50%;
	animation: ar-spin 0.9s linear infinite;
}

@keyframes ar-spin {
	to {
		transform: rotate(360deg);
	}
}

/* -------- Wrapper da cena -------- */
.ar-viva-scene-wrapper {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.ar-viva-scene-wrapper .a-canvas,
.ar-viva-scene-wrapper a-scene {
	width: 100% !important;
	height: 100% !important;
}

/* Impede que arrastar o dedo role/zoome a página — o gesto é para girar a cena. */
.ar-viva-scene-wrapper .a-canvas {
	touch-action: none;
}

/* -------- Mensagem de erro -------- */
.ar-viva-error-msg {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.5rem;
	z-index: 4;
	background: rgba(11, 15, 25, 0.9);
}

.ar-viva-error-msg p {
	margin: 0 0 1rem;
	font-size: 1rem;
	max-width: 36ch;
}

.ar-viva-retry-btn {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: transparent;
	color: #fff;
	padding: 0.6rem 1.3rem;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.95rem;
	transition: background 0.18s ease;
}

.ar-viva-retry-btn:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* -------- Oculta o botão padrão do A-Frame -------- */
.a-enter-vr,
.a-enter-ar {
	display: none !important;
}

/* -------- Barra de controles -------- */
.ar-viva-controls {
	position: absolute;
	bottom: 1.1rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
	max-width: calc(100% - 2rem);
}

/* Auto-ocultar: some após inatividade, reaparece ao tocar na tela. */
.ar-viva-controls,
.ar-viva-fs-exit,
.ar-viva-stereo-ui {
	transition: opacity 0.35s ease;
}

.ar-viva-container.ar-viva-hide-ui .ar-viva-controls,
.ar-viva-container.ar-viva-hide-ui .ar-viva-fs-exit,
.ar-viva-container.ar-viva-hide-ui .ar-viva-stereo-ui {
	opacity: 0;
	pointer-events: none;
}

.ar-viva-btn {
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.25);
	cursor: pointer;
	padding: 0.6rem 1.1rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: #fff;
	background: rgba(15, 23, 42, 0.82);
	border-radius: 999px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(4px);
	transition: transform 0.18s ease, background 0.18s ease;
	white-space: nowrap;
}

.ar-viva-btn:hover {
	transform: scale(1.05);
	background: rgba(15, 23, 42, 0.95);
}

.ar-viva-btn:active {
	transform: scale(0.97);
}

/* Botões de VR / óculos em destaque azul */
.ar-viva-btn.ar-btn-vr,
.ar-viva-btn.ar-btn-cardboard {
	background: rgba(59, 130, 246, 0.92);
	border-color: rgba(255, 255, 255, 0.35);
}

.ar-viva-btn.ar-btn-vr:hover,
.ar-viva-btn.ar-btn-cardboard:hover {
	background: #3b82f6;
}

/* Play/pause: largura fixa para o ícone não "pular" */
.ar-viva-btn.ar-play-pause {
	min-width: 2.8rem;
	padding-left: 0.8rem;
	padding-right: 0.8rem;
}

/* -------- Tela cheia (fallback CSS para iOS) -------- */
.ar-viva-container.ar-viva-fullscreen {
	position: fixed !important;
	inset: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	max-width: none !important;
	z-index: 999999 !important;
	border-radius: 0 !important;
	margin: 0 !important;
}

/* Também zera o arredondamento na tela cheia nativa */
.ar-viva-container:fullscreen {
	width: 100vw;
	height: 100vh;
	border-radius: 0;
}

/* -------- Botão de sair da tela cheia -------- */
.ar-viva-fs-exit {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 7;
	display: none;
	appearance: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
	cursor: pointer;
	width: 2.6rem;
	height: 2.6rem;
	font-size: 1.1rem;
	line-height: 1;
	color: #fff;
	background: rgba(15, 23, 42, 0.82);
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
	transition: background 0.18s ease;
}

.ar-viva-fs-exit:hover {
	background: rgba(220, 38, 38, 0.9);
}

/* Mostra o "sair" apenas quando em tela cheia (nativa ou pseudo) */
.ar-viva-container.ar-viva-fullscreen .ar-viva-fs-exit,
.ar-viva-container:fullscreen .ar-viva-fs-exit {
	display: block;
}

/* -------- Ajuste do modo Óculos VR (estéreo) -------- */
.ar-viva-stereo-ui {
	position: absolute;
	left: 50%;
	bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
	transform: translateX(-50%);
	z-index: 8;
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 0.9rem;
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 14px;
	backdrop-filter: blur(4px);
	max-width: 90%;
	text-align: center;
}

.ar-stereo-label {
	font-size: 0.8rem;
	opacity: 0.9;
}

.ar-stereo-row {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.ar-stereo-val {
	min-width: 2.5rem;
	font-weight: 700;
	font-size: 1rem;
}

.ar-stereo-btn {
	appearance: none;
	cursor: pointer;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(59, 130, 246, 0.9);
	border-radius: 999px;
	font-weight: 700;
}

.ar-stereo-row .ar-stereo-btn {
	width: 3rem;
	height: 3rem;
	font-size: 1.5rem;
	line-height: 1;
}

.ar-stereo-exit {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	background: rgba(15, 23, 42, 0.85);
}

.ar-stereo-exit:hover {
	background: rgba(220, 38, 38, 0.9);
}

/* -------- Overlay de transição -------- */
.ar-viva-transition-overlay {
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0;
	pointer-events: none;
	z-index: 6;
	transition: opacity 0.4s ease;
}

.ar-viva-transition-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}

/* -------- Aviso (shortcode inválido) -------- */
.ar-viva-notice {
	padding: 12px 16px;
	background: #fcf9e8;
	border-left: 4px solid #dba617;
	color: #1d2327;
	border-radius: 6px;
}

/* -------- Responsivo -------- */
@media (max-width: 600px) {
	.ar-viva-enter-btn {
		padding: 0.8rem 1.4rem;
		font-size: 1rem;
	}

	.ar-viva-btn {
		font-size: 0.85rem;
		padding: 0.55rem 0.9rem;
	}
}

/* -------- Celular: mantém os botões dentro da tela e fora das bordas -------- */
@media (max-width: 900px) {
	.ar-viva-controls {
		bottom: calc(0.7rem + env(safe-area-inset-bottom, 0px));
		gap: 0.4rem;
	}

	.ar-viva-fs-exit {
		top: calc(0.7rem + env(safe-area-inset-top, 0px));
		right: calc(0.7rem + env(safe-area-inset-right, 0px));
	}
}

/* Em paisagem no celular, o player de 600px é mais alto que a tela e cortava
   os botões. Limita a altura ao viewport visível para tudo caber. */
@media (max-width: 900px) and (orientation: landscape) {
	.ar-viva-container:not(.ar-viva-fullscreen) {
		height: 100vh !important;
		height: 100dvh !important;
	}
}

/**
 * gallery.css — galeria imersiva de cenas + overlay de cena em tela cheia.
 *
 * Cores/estilos-base são customizáveis pelos controles do widget Elementor
 * (que sobrescrevem estas regras via seletores {{WRAPPER}}).
 */

/* -------- Grid -------- */
.ar-gallery {
	--ar-cols: 3;
	--ar-accent: #60a5fa;
	display: grid;
	grid-template-columns: repeat(var(--ar-cols), minmax(0, 1fr));
	gap: 22px;
	width: 100%;
}

@media (max-width: 1024px) {
	.ar-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.ar-gallery {
		grid-template-columns: 1fr;
	}
}

/* -------- Card -------- */
.ar-gallery-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: linear-gradient(165deg, #101a30 0%, #0b0f19 70%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	isolation: isolate;
}

.ar-gallery-card:hover {
	transform: translateY(-6px);
	border-color: color-mix(in srgb, var(--ar-accent) 65%, transparent);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4),
		0 0 0 1px color-mix(in srgb, var(--ar-accent) 40%, transparent),
		0 12px 40px -12px color-mix(in srgb, var(--ar-accent) 55%, transparent);
}

/* -------- Preview 360° -------- */
.ar-gallery-media {
	position: relative;
	display: block;
	width: 100%;
	height: 230px;
	border: 0;
	padding: 0;
	margin: 0;
	cursor: pointer;
	background-color: #0e1730;
	background-repeat: repeat-x;
	background-size: auto 100%;
	background-position: 0 center;
	overflow: hidden;
}

.ar-gallery-media.ar-gallery-noimg {
	background-image: radial-gradient(120% 120% at 30% 20%, #1e2b48 0%, #0b0f19 70%);
}

.ar-gallery-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.ar-gallery-card:hover .ar-gallery-video {
	transform: scale(1.06);
}

/* Sombreado inferior para dar profundidade e leitura */
.ar-gallery-scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(11, 15, 25, 0) 45%, rgba(11, 15, 25, 0.65) 100%);
}

/* Selo 360° com leve pulsar */
.ar-gallery-badge {
	position: absolute;
	top: 0.7rem;
	left: 0.7rem;
	z-index: 3;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #fff;
	background: var(--ar-accent);
	padding: 0.24rem 0.6rem;
	border-radius: 999px;
	box-shadow: 0 0 0 0 color-mix(in srgb, var(--ar-accent) 60%, transparent);
	animation: ar-badge-pulse 2.4s ease-out infinite;
}

@keyframes ar-badge-pulse {
	0% {
		box-shadow: 0 0 0 0 color-mix(in srgb, var(--ar-accent) 55%, transparent);
	}
	70% {
		box-shadow: 0 0 0 10px color-mix(in srgb, var(--ar-accent) 0%, transparent);
	}
	100% {
		box-shadow: 0 0 0 0 color-mix(in srgb, var(--ar-accent) 0%, transparent);
	}
}

.ar-gallery-hint {
	position: absolute;
	bottom: 0.7rem;
	right: 0.7rem;
	z-index: 3;
	font-size: 0.72rem;
	color: #fff;
	background: rgba(15, 23, 42, 0.7);
	backdrop-filter: blur(3px);
	padding: 0.22rem 0.6rem;
	border-radius: 999px;
	opacity: 0.92;
	transition: opacity 0.25s ease;
}

.ar-gallery-card:hover .ar-gallery-hint {
	opacity: 0;
}

/* Ícone de play que surge no hover, indicando "clique para entrar" */
.ar-gallery-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	width: 3.4rem;
	height: 3.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: #fff;
	background: color-mix(in srgb, var(--ar-accent) 85%, #000 0%);
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0.6);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.28s ease, opacity 0.28s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.ar-gallery-card:hover .ar-gallery-play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

/* -------- Corpo do card -------- */
.ar-gallery-body {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding: 1.1rem 1.15rem 1.25rem;
	flex: 1;
}

.ar-gallery-title {
	margin: 0;
	font-size: 1.18rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #fff;
	line-height: 1.25;
}

/* -------- Botão -------- */
.ar-gallery-btn {
	margin-top: auto;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	appearance: none;
	cursor: pointer;
	border: 1px solid transparent;
	color: #fff;
	background: linear-gradient(135deg, var(--ar-accent), color-mix(in srgb, var(--ar-accent) 55%, #ffffff));
	font-size: 0.95rem;
	font-weight: 700;
	padding: 0.62rem 1.35rem;
	border-radius: 999px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.ar-gallery-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px -6px color-mix(in srgb, var(--ar-accent) 70%, transparent);
}

.ar-gallery-btn-arrow {
	transition: transform 0.2s ease;
}

.ar-gallery-btn:hover .ar-gallery-btn-arrow {
	transform: translateX(4px);
}

/* Fallback para navegadores sem color-mix() */
@supports not (background: color-mix(in srgb, #000 50%, #fff)) {
	.ar-gallery-card:hover {
		border-color: var(--ar-accent);
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
	}
	.ar-gallery-play {
		background: var(--ar-accent);
	}
	.ar-gallery-btn {
		background: var(--ar-accent);
	}
}

/* -------- Banner de instalação (PWA) -------- */
.ar-viva-install-banner {
	grid-column: 1 / -1;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	flex-wrap: wrap;
	text-align: center;
	background: rgba(96, 165, 250, 0.12);
	border: 1px solid rgba(96, 165, 250, 0.4);
	color: inherit;
	border-radius: 12px;
	padding: 0.85rem 1rem;
	font-size: 0.9rem;
}

.ar-gallery-install-btn {
	appearance: none;
	cursor: pointer;
	border: none;
	color: #fff;
	background: var(--ar-accent, #3b82f6);
	font-weight: 700;
	padding: 0.5rem 1.2rem;
	border-radius: 999px;
}

/* -------- Overlay de cena em tela cheia -------- */
.ar-viva-overlay {
	position: fixed !important;
	inset: 0 !important;
	width: 100vw !important;
	height: 100vh !important;
	height: 100dvh !important;
	z-index: 999999 !important;
	border-radius: 0 !important;
	background: #000;
}

html.ar-viva-noscroll,
html.ar-viva-noscroll body {
	overflow: hidden !important;
	overscroll-behavior: none;
}

.ar-viva-overlay-close {
	position: absolute;
	top: calc(0.8rem + env(safe-area-inset-top, 0px));
	right: calc(0.8rem + env(safe-area-inset-right, 0px));
	z-index: 10;
	appearance: none;
	cursor: pointer;
	width: 2.8rem;
	height: 2.8rem;
	font-size: 1.2rem;
	line-height: 1;
	color: #fff;
	background: rgba(15, 23, 42, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	transition: background 0.18s ease;
}

.ar-viva-overlay-close:hover {
	background: rgba(220, 38, 38, 0.9);
}

/* -------- Modal de instalação (portão do celular) -------- */
.ar-viva-install-modal {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.2rem;
	background: rgba(0, 0, 0, 0.7);
}

.ar-viva-install-card {
	max-width: 22rem;
	background: #0b0f19;
	color: #fff;
	border-radius: 16px;
	padding: 1.4rem;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.ar-viva-install-card h3 {
	margin: 0 0 0.6rem;
	font-size: 1.15rem;
}

.ar-viva-install-card p {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	line-height: 1.5;
	opacity: 0.9;
}

.ar-viva-install-card b {
	color: #60a5fa;
}

.ar-viva-install-actions {
	display: flex;
	gap: 0.6rem;
	justify-content: center;
	flex-wrap: wrap;
}

.ar-viva-install-actions button {
	appearance: none;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 999px;
	padding: 0.55rem 1.2rem;
	font-weight: 600;
	color: #fff;
	background: rgba(15, 23, 42, 0.9);
}

.ar-viva-install-actions .ar-viva-install-do {
	background: #3b82f6;
	border-color: #3b82f6;
}

