#wpwrap {
	background-color: #f5f5f5;
}

.text-logo {
	position: absolute;
	top: 30px;
	left: 24px;
	z-index: 10;
}

.text-logo img {
	display: block;
}

#successfully-connected {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 80px;
}

#successfully-connected.is-complete-setup {
	min-height: calc(100vh - 32px);
	padding: 0 0 24px;
}

@media (max-width: 782px) {
	#successfully-connected.is-complete-setup {
		min-height: calc(100vh - 46px);
	}
}

#successfully-connected .wrapper {
	border-radius: 20px;
	padding: 40px 32px;
	width: 544px;
	box-sizing: border-box;
	background: #ffffff;
}

#successfully-connected .title,
#successfully-connected .description,
#successfully-connected .link-paragraph,
#successfully-connected .complete-setup-button,
#successfully-connected .see-visitors-live-button,
#successfully-connected .footer-description,
#successfully-connected .footer-anchor,
#successfully-connected .button-disconnect,
#successfully-connected .account-meta-row {
	font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-style: normal;
}

#successfully-connected .title,
#successfully-connected .description,
#successfully-connected .footer-description {
	text-align: center;
}

#successfully-connected .logo-frame {
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
}

#successfully-connected .logo-frame img {
	display: block;
	max-width: 100%;
	height: auto;
}

#successfully-connected .title {
	font-size: 24px;
	font-weight: 600;
	line-height: 36px;
	color: #131317;
	margin: 0 0 16px 0;
}

#successfully-connected .description {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #131317;
	margin: 0;
}

#successfully-connected.is-complete-setup .title {
	margin-bottom: 12px;
}

#successfully-connected .links-wrapper {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

#successfully-connected .link-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 460px;
	height: 58px;
	padding: 10px 24px;
	gap: 10px;
	color: #1e1e1e;
	background: #ffffff;
	text-decoration: none;
	border-radius: 16px;
	border: 1px solid rgba(19, 19, 23, 0.13);
	box-sizing: border-box;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

#successfully-connected .link-line:focus:not(:focus-visible) {
	outline: none;
	box-shadow: none;
	border-color: rgba(19, 19, 23, 0.13);
}

#successfully-connected .link-line:hover,
#successfully-connected .link-line:focus-visible {
	border: 1px solid #43434b;
	box-shadow:
		0 22px 6px 0 rgba(0, 0, 0, 0),
		0 14px 6px 0 rgba(0, 0, 0, 0.01),
		0 8px 5px 0 rgba(0, 0, 0, 0.05),
		0 3px 3px 0 rgba(0, 0, 0, 0.09),
		0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

#successfully-connected .link-line-left-column {
	display: flex;
	align-items: center;
}

#successfully-connected .link-image {
	margin-right: 8px;
}

#successfully-connected .link-paragraph {
	font-size: 14px;
	font-weight: 500;
	line-height: 21px;
	color: #131317;
	margin: 0;
}

#successfully-connected .see-visitors-live-button {
	outline: none;
	border: none;
	display: flex;
	align-items: center;
	gap: 4px;
	width: fit-content;
	margin: 32px auto 20px;
	padding: 12px;
	text-decoration: none;
	background-color: #131317;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	border-radius: 8px;
	cursor: pointer;
}

#successfully-connected .complete-setup-button {
	appearance: none;
	-webkit-appearance: none;
	outline: none;
	border: none;
	display: flex;
	align-items: center;
	gap: 4px;
	width: fit-content;
	margin: 40px auto 20px;
	padding: 12px;
	text-decoration: none;
	background-color: #131317;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

#successfully-connected .complete-setup-button:visited,
#successfully-connected .complete-setup-button:link {
	color: #ffffff;
	text-decoration: none;
	background-color: #131317;
}

#successfully-connected .link-chevron,
#successfully-connected .complete-setup-button-icon,
#successfully-connected .see-visitors-live-button-icon {
	display: block;
	flex-shrink: 0;
}

#successfully-connected .complete-setup-button:active,
#successfully-connected .complete-setup-button:focus,
#successfully-connected .complete-setup-button:focus-visible,
#successfully-connected .see-visitors-live-button:active,
#successfully-connected .see-visitors-live-button:focus,
#successfully-connected .see-visitors-live-button:focus-visible {
	box-shadow: none;
}

#successfully-connected .complete-setup-button:focus,
#successfully-connected .see-visitors-live-button:focus {
	color: #ffffff;
	background-color: #43434b;
	outline: none;
}

#successfully-connected .complete-setup-button:hover,
#successfully-connected .see-visitors-live-button:hover,
#successfully-connected .see-visitors-live-button:focus-visible {
	background-color: #43434b;
}

#successfully-connected .complete-setup-button:active,
#successfully-connected .see-visitors-live-button:active {
	background-color: #131317;
}

#successfully-connected .complete-setup-button:focus-visible {
	background-color: #131317;
	outline: 2px solid #43434b;
	outline-offset: 2px;
}

#successfully-connected .footer-description {
	margin: 16px 0 24px 0;
	color: #131317;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
}

#successfully-connected .footer-anchor {
	color: #0059e1;
	text-decoration: none;
	box-shadow: none;
	font-size: 14px;
	font-weight: 600;
	line-height: 21px;
}

#successfully-connected .footer-anchor:hover {
	text-decoration: underline;
}

#successfully-connected .footer-anchor:focus {
	color: #0059e1;
	text-decoration: underline;
	box-shadow: none;
	outline: none;
}

#successfully-connected .button-disconnect {
	color: #cc1818;
	box-shadow: none;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	text-decoration: none;
}

#successfully-connected .button-disconnect:focus {
	color: #8d0004;
	box-shadow: none;
	outline: none;
}

#successfully-connected .button-disconnect:hover,
#successfully-connected .button-disconnect:focus-visible {
	text-decoration: none;
	color: #8d0004;
}

#successfully-connected .button-disconnect:active {
	text-decoration: none;
	color: #6f090e;
}

#successfully-connected .account-meta {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

#successfully-connected .account-meta-row {
	margin: 0;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	color: #62626d;
	display: flex;
	align-items: center;
	gap: 4px;
}

#successfully-connected .account-meta-organization {
	gap: 6px;
}

#successfully-connected .account-meta-value {
	color: inherit;
}

#successfully-connected .copy-organization-button {
	background: transparent;
	border: 0;
	padding: 0;
	margin: 0 0 0 2px;
	line-height: 0;
	cursor: pointer;
}

#successfully-connected .copy-organization-button img {
	display: block;
	width: 14px;
	height: 14px;
}
