HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/affstore-landing/src/scss/general.scss
@use './typography' as typography;
@use './media';
@use './variables';

html {
	scroll-behavior: smooth;

	&::-webkit-scrollbar {
		width: 0;
		opacity: 0;
		display: none;
	}
}

body {
	color: #989898;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	position: relative;
	overflow-x: hidden !important;
	-webkit-tap-highlight-color: transparent;

	@include typography.P1;
}

.container {
	width: 1222px;
	margin: auto;

	@include media.breakpoint-down('deskS') {
		width: 928px;
	}

	@include media.breakpoint-down('tabM') {
		width: 100%;
		padding-inline: 48px;
	}

	@include media.breakpoint-down('mobM') {
		padding-inline-start: 16px;
		padding-inline-end: 15px;
	}
}

.textAnimation {
	opacity: 0;
	transition: 1.5s variables.$transition-type;
	transform: translate3d(0, 50px, 0);
}
.textActive {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

a {
	text-decoration: none;
	color: #989898;
}

h1 {
	margin-bottom: 16px;
	@include typography.H1;
}
h2 {
	color: #e3e3e3;
	@include typography.H2;
}
h3 {
	@include typography.H3;
}
h4 {
	@include typography.H4;
}
h5 {
	@include typography.H5;
}
h6 {
	@include typography.H6;
}
p {
	@include typography.P1;
}

[dir='rtl'] {
	.ltr-number {
		unicode-bidi: embed;
		direction: ltr;
		display: inline-block;
	}

	[class*='Value'],
	[class*='Price'],
	[class*='Profit'],
	[class*='advantageTitle'],
	[class*='buttonTitle'],
	[class*='affiliateValue'],
	[class*='affiliateCardTitleProfit'] {
		unicode-bidi: embed;
		direction: ltr;
		display: inline-block;
	}
}