
/* Description */
.products .description {
	position: relative;
	padding: 60px 0 74px;
	overflow: hidden;
	background: #141A22;
}
.products .description h1 {
	position: relative;
	display: inline-block;
	width: fit-content;
	max-width: 100%;
	margin-top: 6px;
	margin-left: -0.04em;
	margin-bottom: 20px;
	line-height: 1.3;
	font-size: 44px;
	font-weight: 700;
	white-space: nowrap;
	text-decoration: none;
}
.products .description h1 span.colored {
	position: relative;
	display: inline-block;
	background: linear-gradient(90deg, #02C6ED 0%, #0168F8 80%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.products .description h1 span.colored::before {
	content: "React";
	position: absolute;
	inset: 0;
	background: linear-gradient(35deg, transparent 0%, transparent 45%, rgba(96,232,255,0.88) 50%, transparent 55%, transparent 100%);
	background-size: 240% 240%;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0;
	pointer-events: none;
	animation: react-title-shine 10s ease-in-out infinite;
}
@keyframes react-title-shine {
	0%, 10%, 68%, 100% {
		background-position: 120% -120%;
		opacity: 0;
	}
	12% {
		opacity: 0.86;
	}
	38% {
		background-position: -120% 120%;
		opacity: 0.86;
	}
	46% {
		background-position: -120% 120%;
		opacity: 0;
	}
}
.products .description h3 {
	margin-bottom: 0;
	font-size: 23px;
	font-weight: 700;
}
.products .description span.colored {
	color: #01A9F8;
}
.products .description .middle {
	position: relative;
	flex-direction: column;
	flex-wrap: nowrap;
	z-index: 10;
}
.products .description .middle span.description-text {
	display: block;
	max-width: 610px;
}
.products .description img:nth-child(1) {
	position: absolute;
	top: 126px;
	margin-left: -183px;
	z-index: 1;
	will-change: transform;
}
.products .description img:nth-child(2) {
	position: absolute;
	top: 90px;
	margin-left: 185px;
	z-index: 1;
	will-change: transform, opacity;
	animation: rr-grid-breathe 3.6s ease-in-out infinite;
}
.products .description img:last-child {
	position: relative;
	z-index: 2;
	will-change: transform;
}
@media (min-width: 861px) {
	.products .description .side-by-side > div:first-child {
		position: relative;
	}
	.products .description img:nth-child(1) {
		width: 442px;
		max-width: none;
		top: -37px;
		left: -240px;
		margin-left: 0;
	}
	.products .description img:nth-child(2) {
		width: 350px;
		max-width: none;
		top: -220px;
		left: -19px;
		margin-left: 0;
	}
	.products .description img:last-child {
		width: 222px;
		top: 19px;
		transform: translateX(-130px);
	}
}
@media (min-width: 861px) and (max-width: 1130px) {
	.products .description img:nth-child(1) {
		width: 360px;
		top: -2px;
		left: -90px;
	}
	.products .description img:nth-child(2) {
		width: 280px;
		top: -154px;
		left: 90px;
	}
	.products .description img:last-child {
		width: 180px;
		top: 44px;
		transform: none;
	}
}
@media (min-width: 1000px) and (max-width: 1130px) {
	.products .description .side-by-side > div:first-child {
		transform: translateX(-90px);
	}
}
@keyframes rr-grid-breathe {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}
.products-description-tooltip {
	--tooltip-arrow-left: 50%;
	position: fixed;
	z-index: 10000;
	box-sizing: border-box;
	width: max-content;
	max-width: min(340px, calc(100vw - 24px));
	padding: 6px 12px;
	background: rgba(13, 21, 34, 0.96);
	border: 1px solid rgba(51, 138, 219, 0.45);
	border-radius: 6px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
	color: #FFFFFF;
	font-size: 13px;
	line-height: 1.35;
	text-align: center;
	white-space: normal;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.products-description-tooltip::after {
	content: '';
	position: absolute;
	left: var(--tooltip-arrow-left);
	bottom: -5px;
	width: 9px;
	height: 9px;
	background: rgba(13, 21, 34, 0.96);
	border-right: 1px solid rgba(51, 138, 219, 0.45);
	border-bottom: 1px solid rgba(51, 138, 219, 0.45);
	transform: translateX(-50%) rotate(45deg);
}
.products-description-tooltip.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
@media (max-width: 1050px) {
	.products .description div.article.side-by-side.reverse > div:last-child {
		padding: 0;
	}
}
@media (max-width: 860px) {
	.products .description .side-by-side > div:first-child {
		position: relative;
		z-index: 1;
		margin-top: 28px;
		pointer-events: none;
	}
	.products .description img:last-child {
		width: min(240px, 54vw);
		padding: 0;
		margin: 0 auto;
	}
	.products .description img:nth-child(1) {
		width: min(500px, 102vw);
		max-width: none;
	}
	.products .description img:nth-child(2) {
		width: min(240px, 52vw);
		max-width: none;
	}
	.products .description img:not(:last-child) {
		margin: 0 0 0 calc(50% - 145px);
	}
	.products .description .middle {
		box-sizing: border-box;
		width: min(810px, calc(100% - 40px));
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		z-index: 20;
	}
	.products .description .middle span.description-text {
		max-width: 100%;
	}
	.products .description .middle .buttons.left {
		position: relative;
		z-index: 21;
		justify-content: center;
	}
}
@media (max-width: 860px) {
	.products .description h1 {
		font-size: 36px;
		white-space: normal;
	}
}
@media (max-width: 480px) {
	.products .description {
		padding: 0;
	}
	.products .description .side-by-side > div:first-child {
		margin-top: 18px;
	}
	.products .description h1 {
		font-size: 28px;
		margin-bottom: 15px;
	}
	.products .description h3 {
		font-size: 15px;
	}
}

/* Report Viewer */
.products .viewer {
	position: relative;
	z-index: 1;
	overflow-x: clip;
	background: #FFFFFF;
}
.products .viewer .container {
	position: relative;
}
.products .viewer .container::before {
	content: '';
	position: absolute;
	z-index: -1;
	top: var(--viewer-band-top, 70px);
	bottom: var(--viewer-band-bottom, -70px);
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	background: #E6F4FF;
	pointer-events: none;
}
.products .viewer a.image {
	margin-top: 65px;
}
.products .viewer a.arrow::after {
	content: '\2192';
	top: 0;
	line-height: 1;
}
@media (max-width: 860px) {
	.products .viewer a.image {
		margin-top: 0;
   }
}
.products .viewer .frame {
	position: relative;
	padding-bottom: calc(100% * 9 / 16);
}
.products .viewer iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.products .viewer .switcher a {
	display: inline-block;
	width: 140px;
	height: 195px;
	margin: 0 10px 40px 10px;
	background-size: cover;
	border-radius: 8px;
}
.products .viewer .switcher a.active:after {
	content: '';
	display: block;
	margin-left: -2px;
	margin-top: -1px;
	width: 138px;
	height: 191px;
	border: 4px solid #338adb;
	border-radius: 8px;
}
.products .viewer .switcher a:hover::after {
	content: '';
	display: block;
	margin-left: -2px;
	margin-top: -1px;
	width: 138px;
	height: 191px;
	border: 4px solid #338adb;
	border-radius: 8px;
}
.products .viewer-down {
	content: '';
	background: #FFFFFF;
	margin-top: -600px;
	padding-top: 450px;
}
@media (max-width: 920px) {
	.products .viewer .switcher a {
		width: 70px;
		height: 97px;
		border-radius: 3px;
   }
	.products .viewer .switcher a.active:after {
		width: 69px;
		height: 95px;
		border: 2px solid #338adb;
		border-radius: 3px;
		margin-left: -1px;
   }
   .products .viewer .switcher a:hover::after {
	width: 69px;
	height: 95px;
	border: 2px solid #338adb;
	border-radius: 3px;
	margin-left: -1px;
}
}
@media (max-width: 550px) {
	.products .viewer .frame {
		height: 500px;
	}
}
@media (max-width: 489px) {
	.products .viewer .switcher a {
		margin: 40px 5px 0 5px;
   }
	.products .viewer .switcher {
		margin: 0 -20px 40px -20px;
   }
}
@media (max-width: 400px) {
	.products .viewer .frame {
		margin-bottom: 10px;
	}
	.products .viewer .switcher a {
		margin: 5px 5px 0 5px;
   }
	.products .viewer .switcher {
		padding: 0 50px 0 50px;
   }
}
@media (max-width: 339px) {
	.products .viewer .switcher {
		padding: 0 30px 0 30px;
   }
}
@media (max-width: 299px) {
	.products .viewer .switcher {
		padding: 0;
   }
}


/* Discover products */
.products .discover-products {
	background: linear-gradient(180deg, #010512 0%, #000F25 50%, #010512 100%);
}
.products .discover-products .article {
	min-height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background: url('/images/products/reports-react/discover-products.svg') center center / cover no-repeat;
}
.products .discover-products .colored {
	text-decoration: none;
	background: linear-gradient(90deg, #02C6ED 0%, #0168F8 80%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.products .discover-products a.arrow {
	display: inline-block;
	max-width: 100%;
	text-align: center;
	color: #FFFFFF;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	background-image: linear-gradient(90deg, #02C6ED 0%, #0168F8 45%, #02C6ED 70%, #0168F8 100%);
	background-repeat: no-repeat;
	background-position: 100% 0;
	background-size: 220% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	transition: background-position 0.8s ease, color 0.25s ease;
}
.products .discover-products a.arrow:hover,
.products .discover-products a.arrow:focus {
	text-decoration: none;
	background-position: 0 0;
	color: transparent;
}
.products .discover-products a.arrow:hover .colored,
.products .discover-products a.arrow:focus .colored {
	background: none;
	color: inherit;
}
.products .discover-products .colored {
	display: inline;
	margin: 0;
}
.products .discover-products .colored::before,
.products .discover-products .colored::after {
	content: '';
}
.products .discover-products a.arrow::after {
	content: '';
	position: static;
	display: inline-block;
	vertical-align: middle;
	width: 56px;
	height: 31px;
	margin: 0 0 0 1px;
	top: auto;
	background: linear-gradient(90deg, #02C6ED 0%, #0168F8 45%, #02C6ED 70%, #0168F8 100%);
	background-size: 220% 100%;
	background-position: 100% 0;
	-webkit-mask: url('/images/products/reports-react/arrow.svg') center center / contain no-repeat;
	mask: url('/images/products/reports-react/arrow.svg') center center / contain no-repeat;
	transition: background-position 0.8s ease;
}
.products .discover-products a.arrow:hover::after,
.products .discover-products a.arrow:focus::after {
	background-position: 0 0;
}
@media (max-width: 640px) {
	.products .discover-products .article {
		min-height: 132px;
		padding-right: 20px;
		padding-left: 20px;
		background-size: auto 100%;
	}
	.products .discover-products a.arrow {
		font-size: 22px;
	}
	.products .discover-products a.arrow::after {
		margin-left: 1px;
		width: 38px;
		height: 22px;
	}
}

/* Install */
.products .install {
	padding: 60px 20px;
	background: #FFFFFF;
}
.products .install .article {
	box-sizing: border-box;
	padding: 80px 72px;
	background: linear-gradient(247.58deg, #123C64 0%, #15243B 54.89%);
	color: #FFFFFF;
}
.products .install .buttons .button.colored {
	background: linear-gradient(90deg, #02C6ED 0%, #0168F8 90%);
	border: 0;
	padding: 12px 34px;
}
.products .install .buttons .button.transparent {
	border: 2px solid #338ADB;
	color: #FFFFFF;
}
@media (max-width: 860px) {
	.products .install {
		padding: 40px 20px;
	}
	.products .install .article {
		padding: 60px 28px;
	}
}
@media (max-width: 480px) {
	.products .install {
		padding: 40px 14px;
	}
	.products .install .article {
		padding: 44px 16px;
	}
}

/* Viewer code */
.products .viewer-code > .article {
	padding-top: 0;
}
.products .viewer-code .columns > div:first-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (max-width: 480px) {
	.products .viewer-code .columns > div:first-child {
		margin-bottom: 30px;
	}
}

/* Export code */
.products .export-code {
	background: #E6F4FF;
}
.products .export-code .columns > div:first-child {
	position: relative;
	width: 55%;
}
.products .export-code .columns > div:last-child {
	position: relative;
	width: 45%;
}
.products .export-code .formats-panel {
	position: absolute;
	inset: 0;   
	background: #2741CE;
	border-radius: 16px;
	overflow: hidden;   
}
.products .export-code .formats-inner {
	position: absolute;
	display: flex;    
	gap: 40px;
	inset: 0; 
	justify-content: center;
	transform: rotate(5deg);
}
.products .export-code .formats-track {
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.products .export-code .formats-track img {
	width: 130px;
	height: auto;
}
.products .export-code .formats-column--up .formats-track {
	animation: scroll-up 40s linear infinite;
}
.products .export-code .formats-column--down .formats-track {
	animation: scroll-up 40s linear infinite reverse;
}
@keyframes scroll-up {
	from { transform: translateY(0); }
	to   { transform: translateY(-50%); }
}
@media (max-width: 860px) {
	.products .export-code .columns > div:first-child {
		width: 100%;
		margin-bottom: 0;
	}
	.products .export-code .columns > div:last-child {
		display: none;
	}
}

/* Viewer controller */
.products .viewer-controller .code-window {
	margin-top: 50px;
}

/* Designer */
.products .designer .columns {
	align-items: center;
}
@media (max-width: 860px) {
	.products .designer .columns {
		flex-direction: column;
	}
	.products .designer .columns > div {
		width: 100%;
	}
	.products .designer .columns > div:first-child {
		margin: 0 0 40px 0;
	}
}

/* Reports.WEB */
.products .reports-web:not(.product) {
	position: relative;
	overflow: hidden;
	background: #010E19;
}
.products .reports-web:not(.product) .article {
	min-height: 500px;
	display: flex;
	align-items: center;
}
.products .reports-web:not(.product) h2 {
	position: relative;
	display: inline-block;
	width: fit-content;
	margin-top: -5px;
	margin-left: -0.06em;
	margin-bottom: 0.2em;
	line-height: 1.3;
	font-size: 46px;
	font-weight: 700;
	text-decoration: none;
	background: linear-gradient(90deg, #40BD73 0%, #08788B 80%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.products .reports-web:not(.product) h3 {
	margin-bottom: 0;
	font-size: 24px;
	font-weight: 700;
}
.products .reports-web:not(.product) span.colored {
	color: #01A9F8;
}
.products .reports-web .middle {
	flex-direction: column;
	z-index: 10;
}
.products .reports-web:not(.product) img:nth-child(1) {
	position: absolute;
	top: -60px;
	margin-left: 180px;
	z-index: 1;
}
.products .reports-web:not(.product) img:last-child {
	position: relative;
	z-index: 2;
}
.products .reports-web:not(.product) img:last-child {
	will-change: transform;
}
.products .reports-web:not(.product) img:nth-child(1) {
	will-change: transform, opacity;
	animation: rr-grid-breathe 3.6s ease-in-out infinite;
}
.products .reports-web:not(.product) .buttons .button.colored {
	background: linear-gradient(90deg, #02C6ED 0%, #0168F8 90%);
	border: 0;
	padding: 12px 34px;
}
.products .reports-web:not(.product) .buttons .button.transparent {
	border: 2px solid #338ADB;
	color: #FFFFFF;
}
@media (min-width: 861px) and (max-width: 1130px) {
	.products .reports-web:not(.product) img:last-child {
		width: 300px;
		max-width: none;
	}
	.products .reports-web:not(.product) img:nth-child(1) {
		width: 255px;
		top: -42px;
		margin-left: 150px;
	}
}
@media (max-width: 1050px) {
	.products .reports-web:not(.product) div.article.side-by-side.reverse > div:last-child {
		padding: 0;
	}
}
@media (min-width: 861px) and (max-width: 1050px) {
	.products .reports-web:not(.product) div.article.side-by-side.reverse > div:last-child {
		padding-right: 44px;
	}
}
@media (max-width: 860px) {
	.products .reports-web:not(.product) .side-by-side > div:first-child {
		z-index: 1;
		margin-top: 42px;
		pointer-events: none;
	}
	.products .reports-web:not(.product) img:last-child {
		width: min(260px, 56vw);
		padding: 0;
		margin: 0 auto;
	}
	.products .reports-web:not(.product) img:nth-child(1) {
		width: min(240px, 52vw);
		max-width: none;
	}
	.products .reports-web:not(.product) img:not(:last-child) {
		margin: 0 0 0 calc(50% - 145px);
	}
}
@media (max-width: 860px) {
	.products .reports-web:not(.product) h2 {
		font-size: 40px;
	}
}
@media (max-width: 480px) {
	.products .reports-web:not(.product) {
		padding: 0;
	}
	.products .reports-web:not(.product) h2 {
		font-size: 32px;
	}
	.products .reports-web:not(.product) h3 {
		font-size: 20px;
	}
}

@media (max-width: 860px) {
	.products .description .side-by-side > div:first-child,
	.products .reports-web:not(.product) .side-by-side > div:first-child {
		position: relative;
	}
	.products .description img:nth-child(2),
	.products .reports-web:not(.product) img:nth-child(1) {
		top: auto;
		bottom: calc(50% - 20px);
		left: 50%;
		margin: 0;
		transform: none;
	}
	.products .description img:nth-child(1) {
		top: calc(50% - 20px);
		left: 50%;
		margin: 0;
		transform: translate(-50%, -50%);
	}
}

@media (max-width: 860px) {
	.products .viewer-code .buttons.left,
	.products .export-code .buttons.left,
	.products .designer .buttons.left {
		justify-content: flex-start;
	}
}

/* Code example */
.code-window {
	margin: 20px 0;
	border-radius: 12px;
	overflow: hidden;
	background: #0D1522;  
	text-align: left;
}
.code-window .code-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	background: #121A27;
	border-bottom: 1px solid #2A364A;
}
.code-window .code-header .dots {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #FF5F57;
	box-shadow: 24px 0 0 #FEBC2E,
	            48px 0 0 #28C840;
	margin-right: 48px;        
}
.code-window .code-header .filename {
	color: #A0A3A9;
	font-size: 18px;
}
.code-window pre[class*="language-"] {
	margin: 0;
	padding: 24px 130px 24px 24px;
	background: transparent;
	text-shadow: none;
	border-radius: 0;
}
.code-window code {
	color: #1FC3F3;
	font-size: 18px;
	line-height: 1.6;
}
.code-window .token.operator {
	background: none;
}
.code-window button.copy-code {
	position: absolute;
	top: 20px;
	right: 24px;
	padding: 8px 18px;
	background: #1B2433;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 8px;
	cursor: pointer;
	font-size: 18px;
	font-family: inherit;
	color: #FFFFFF;
	z-index: 10;
	transition: background 0.15s, border-color 0.15s;
}
.code-window button.copy-code:hover {
	background: #26334A;
	border-color: rgba(255, 255, 255, 0.45);
}
.code-window button.copy-code:active {
	background: #2F3E59;
}
@media (max-width: 860px) {
	.code-window .code-header {
		padding: 14px 18px;
	}
	.code-window .code-header .filename {
		font-size: 16px;
	}
	.code-window pre[class*="language-"] {
		padding: 20px 100px 20px 20px;
	}
	.code-window code {
		font-size: 15px;
	}
	.code-window button.copy-code {
		top: 16px;
		right: 18px;
		font-size: 15px;
		padding: 7px 14px;
	}
}
@media (max-width: 480px) {
	.code-window .code-header {
		padding: 12px 14px;
	}
	.code-window .code-header .filename {
		font-size: 13px;
	}
	.code-window .code-header .dots {
		margin-right: 24px;
	}
	.code-window pre[class*="language-"] {
		padding: 16px 64px 16px 14px;
	}
	.code-window code {
		font-size: 13px;
		line-height: 1.5;
	}
	.code-window button.copy-code {
		top: 11px;
		right: 12px;
		font-size: 12px;
		padding: 5px 10px;
	}
}
