@font-face {
	font-family: 'Titillium';
	font-style: normal;
	font-weight: 200;
	src: url('fonts/titillium-200.woff2') format('woff2');
}

@font-face {
	font-family: 'Titillium';
	font-style: italic;
	font-weight: 200;
	src: url('fonts/titillium-200italic.woff2') format('woff2');
}

@font-face {
	font-family: 'Titillium';
	font-style: normal;
	font-weight: 300;
	src: url('fonts/titillium-300.woff2') format('woff2');
}

@font-face {
	font-family: 'Titillium';
	font-style: italic;
	font-weight: 300;
	src: url('fonts/titillium-300italic.woff2') format('woff2');
}

@font-face {
	font-family: 'Titillium';
	font-style: normal;
	font-weight: 400;
	src: url('fonts/titillium-regular.woff2') format('woff2');
}

@font-face {
	font-family: 'Titillium';
	font-style: italic;
	font-weight: 400;
	src: url('fonts/titillium-italic.woff2') format('woff2');
}

@font-face {
	font-family: 'Titillium';
	font-style: normal;
	font-weight: 600;
	src: url('fonts/titillium-600.woff2') format('woff2');
}

@font-face {
	font-family: 'Titillium';
	font-style: italic;
	font-weight: 600;
	src: url('fonts/titillium-600italic.woff2') format('woff2');
}

@font-face {
	font-family: 'Titillium';
	font-style: normal;
	font-weight: 700;
	src: url('fonts/titillium-700.woff2') format('woff2');
}

@font-face {
	font-family: 'Titillium';
	font-style: italic;
	font-weight: 700;
	src: url('fonts/titillium-700italic.woff2') format('woff2');
}

@font-face {
	font-family: 'Titillium';
	font-style: normal;
	font-weight: 900;
	src: url('fonts/titillium-900.woff2') format('woff2');
}

@keyframes shake {
	0%, 100% {
		transform: translate(0, 0);
	}

	10%, 30%, 50%, 70%, 90% {
		transform: translate(-12px, 0);
	}

	20%, 40%, 60%, 80% {
		transform: translate(12px, 0);
	}
}

@keyframes shakeModal {
	0%, 100% {
		left: 50%;
	}

	10%, 30%, 50%, 70%, 90% {
		left: calc(50% - 12px);
	}

	20%, 40%, 60%, 80% {
		left: calc(50% + 12px);
	}
}

@keyframes spinner {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.pac-container:after {
	content: none !important;
}

* {
	box-sizing: border-box;
	font-family: 'Titillium';
	-webkit-tap-highlight-color: transparent;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	margin: 0;
	padding: 0;
	border: 0;
	background-repeat: no-repeat;
	align-items: center;
}

::-webkit-input-placeholder, ::placeholder, select:invalid {
	color: #9a9a9a !important;
	font-weight: 400 !important;
}

input:focus::placeholder {
	color: transparent !important;
}

textarea, select, input, button {
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.field {
	width: 360px;
}

.field label {
	background-image: url(res/half-label.svg);
	background-repeat: repeat;
	position: absolute;
	top: 0px;
	left: 9px;
	padding-left: 3px;
	padding-right: 3px;
	font-weight: 400;
}

select {
	background-image: url(res/triangle_select.svg);
	background-size: 24px 24px;
	background-position: center right 10px;
	padding-right: 33px;
}

select, input {
	border: solid 2px rgba(60, 64, 67, 1);
	border-radius: 8px;
	height: 60px;
	font-size: 14px;
	color: rgba(32, 32, 32, 1);
	width: 100%;
	background-color: #ffffff;
}

body {
	overscroll-behavior: none;
	background-color: #ffffff;
	color: #202020;
	font-weight: 300;
}

img {
	font-size: 0;
}

b {
	font-weight: 700;
}

.shake {
	animation-name: shake;
	animation-duration: 750ms;
	animation-fill-mode: both;
}

.shakeModal {
	animation-name: shakeModal;
	animation-duration: 750ms;
	animation-fill-mode: both;
}

#inner {
	position: relative;
	min-height: 100dvh;
}

.hidden {
	display: none !important;
}

.scroller {
	height: 1px;
}

#spinner {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 3000;
	background-color: #00000080;
}

#spinner div {
	position: absolute;
	width: 80px;
	height: 80px;
	border: 5px solid #e0e0e0;
	border-top-color: transparent;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	-webkit-animation: spinner 2s linear infinite;
	animation: spinner 2s linear infinite;
}

/* --------- */

#modal, #submodal {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 2000;
	background-color: #00000080;
}

#submodal {
	position: absolute;
}

#modal>div, #submodal_content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 8px;
	box-shadow: 0 0 16px 0 #00000033;
	overflow: hidden;
}

#modal_content, #submodal_content {
	background-color: #ffffff;
}

.modal_content {
	padding: 48px 48px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.modal_content.modal_login {
	height: 532px;
	width: 376px;
}

.modal_close {
	position: absolute;
	top: 16px;
	right: 16px;
	cursor: pointer;
	width: 28px;
	height: 28px;
	background-image: url('res/X.svg');
}

#panel {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 1000;
	background-color: transparent;
}

.panel {
	z-index: 1001;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 8px;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
	border: solid 1px #a4a4a4;
	position: relative;
}

/* --------- */

.mainColor {
	color: var(--main_color);
}

.titleColor {
	color: var(--title_color);
}

.f24_300 {
	font-size: 24px;
	font-weight: 300;
}

.f24_700 {
	font-size: 24px;
	font-weight: 700;
}

.f22_700 {
	font-size: 22px;
	font-weight: 700;
}

.f22_700_color {
	font-size: 22px;
	font-weight: 700;
	color: var(--main_color);
}

.f24_700_color {
	font-size: 24px;
	font-weight: 700;
	color: var(--main_color);
}

.f24_600_color {
	font-size: 24px;
	font-weight: 600;
	color: var(--main_color);
}

.f18_400 {
	font-size: 18px;
	font-weight: 400;
}

.f18_700 {
	font-size: 18px;
	font-weight: 700;
}

.f18_700_color {
	font-size: 18px;
	font-weight: 700;
	color: var(--main_color);
}

.f19_600 {
	font-size: 19px;
	font-weight: 600;
}

.f12_700 {
	font-size: 12px;
	font-weight: 700;
}

.f14_700 {
	font-size: 14px;
	font-weight: 700;
}

.f16_400 {
	font-size: 16px;
	font-weight: 400;
}

.f16_300 {
	font-size: 16px;
	font-weight: 300;
}

.f16_700_color {
	font-size: 16px;
	font-weight: 700;
	color: var(--main_color);
}

.f16_700 {
	font-size: 16px;
	font-weight: 700;
}

.f28_700 {
	font-size: 28px;
	font-weight: 700;
}

.f28_700_white {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
}

.f20_400_white {
	font-size: 20px;
	font-weight: 400;
	color: #ffffff;
}

.f20_600 {
	font-size: 20px;
	font-weight: 600;
}

.f20_700_white {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
}

.f16_400_white {
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
}

.f16_200_white {
	font-size: 16px;
	font-weight: 200;
	color: #ffffff;
}

.f20_700 {
	font-size: 20px;
	font-weight: 700;
}

.f20_700_white {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
}

.f20_700_color {
	font-size: 20px;
	font-weight: 700;
	color: var(--title_color);
}

.f26_700 {
	font-size: 26px;
	font-weight: 700;
}

.f26_600 {
	font-size: 26px;
	font-weight: 600;
}

.f28_700_color {
	font-size: 28px;
	font-weight: 700;
	color: var(--title_color);
}

.f32_700 {
	font-size: 32px;
	font-weight: 700;
}

.f36_700_color {
	font-size: 36px;
	font-weight: 700;
	color: var(--title_color);
}

.f40_700 {
	font-size: 40px;
	font-weight: 700;
}

.f40_700_white {
	font-size: 40px;
	font-weight: 700;
	color: white;
	line-height: normal;
}

.f56_700_white {
	font-size: 56px;
	font-weight: 700;
	color: white;
	line-height: normal;
}

.container_872 {
	width: 872px;
	margin: 0 auto;
	max-width: 90vw;
}

.container_912 {
	width: 912px;
	margin: 0 auto;
	max-width: 90vw;
}

.container_944 {
	width: 944px;
	margin: 0 auto;
	max-width: 90vw;
	min-width: 944px;
}

.container_772 {
	width: 772px;
	margin: 0 auto;
	max-width: 90vw;
}

.container_564 {
	position: relative;
	width: 564px;
	margin-left: 40px;
}

.container_564 .list {
	list-style-type: square;
	padding-left: 24px;
	width: 50%;
}

.container_564 .list2 {
	list-style: none;
	width: 100%;
	padding-left: 64px;
}

.container_680 {
	width: 680px;
	margin: 0 auto;
}

.line {
	width: 100%;
	height: 4px;
	background-color: rgba(234, 234, 234, 1);
}

.circled-point {
	border: 2px solid #A5A7A8;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.circled-point .point {
	font-size: 16px;
	margin: 0;
}

.smll_line {
	width: 24px;
	height: 1px;
	background-color: #A5A7A8;
	margin-right: 8px;
}

.modal_scroller {
	padding-right: 20px;
	overflow: auto;
}

.borderLeftNone {
	border-left: 0 !important;
	padding-left: 0 !important;
}

/* --------- */

input[type=text], input[type=password], input[type=tel], select, .pickdate, textarea {
	height: 56px;
	font-size: 16px;
	padding-left: 14px;
	padding-right: 14px;
	border: solid 1px #3c4043;
	border-radius: 8px;
	width: 100%;
}

input[type=password] {
	padding-right: 42px;
}

input[type=text]:focus, input[type=password]:focus, input[type=tel]:focus {
	border-width: 2px;
	padding-left: 13px;
	padding-right: 13px;
}

input[type=password]:focus {
	padding-right: 41px;
}

input[type=checkbox], input[type=radio] {
	height: 24px !important;
	width: 24px !important;
	min-width: 24px;
	border: solid 1px #3c4043;
	border-radius: 4px;
	cursor: pointer;
}

input[type=radio] {
	vertical-align: middle;
	padding: 0;
	border-radius: 50%;
}

input[type=checkbox]:active {
	border-width: 2px;
	background-position: -2px -2px;
}

input[type=checkbox]:checked {
	background-image: url('res/check.svg');
	background-size: 24px 24px;
	background-position: -1px -1px;
}

input[type=radio]:checked {
	background-image: url(res/ball.svg);
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: center;
}

input.err {
	border-color: #E40000;
}

input:disabled {
	border: solid 1px #B8B8B8;
	color: #B8B8B8;
}

input:disabled+label {
	color: #848484;
}

input:disabled::-webkit-input-placeholder {
	opacity: 0.4;
}

input+.err_msg, select+.err_msg, textarea+.err_msg, .pickdate+.err_msg {
	color: red;
	font-size: 12px;
	display: none;
}

input.err+.err_msg, select.err+.err_msg, textarea.err+.err_msg, .pickdate.err+.err_msg {
	display: block;
}

.field {
	position: relative;
	padding-top: 8px;
	padding-bottom: 32px;
}

.hc .field {
	padding-bottom: 12px;
}

.hc .field input {
	padding-left: 14px;
	padding-right: 14px;

}

.field .eye {
	width: 24px;
	height: 24px;
	position: absolute;
	right: 11px;
	top: 24px;
}

.field label {
	background-color: #ffffff;
	font-size: 10px;
	font-weight: 400;
	line-height: 12px;
	padding: 2px;
	padding-left: 4px;
	padding-right: 4px;
	position: absolute;
	left: 8px;
	top: 0px;
	opacity: 1;
}

.field input:invalid+label {
	opacity: 0;
}

.field input:focus+label {
	opacity: 1;
}

#infClaimModal .field .err_msg {
	display: none;
}


.field .err_msg, #infClaimModal input.err+label+.err_msg {
	color: #E40000;
	font-size: 12px;
	line-height: 14px;
	font-weight: 400;
	position: absolute;
	left: 0px;
	bottom: 16px;
}

#infClaimModal input.err+label+.err_msg {
	display: block;
	left: 14px;
	bottom: 12px;
}


.check {
	padding-top: 16px;
	padding-bottom: 32px;
	display: flex;
	gap: 12px;
}

.check label {
	font-size: 16px;
	font-weight: 400;
}

.fakelink, a {
	display: inline-flex;
	font-size: 16px;
	font-weight: 300;
	text-decoration: underline;
	cursor: pointer;
	gap: 8px;
	color: #202020;
	white-space: nowrap;
}

.fakelink_small {
	font-size: 14px;
	color: var(--main_color);
}

.fakelink img, a img {
	width: 24px;
	height: 24px;
}

.fakelink:hover, a:hover {
	color: #606060;
}

button, .button {
	height: 48px;
	width: 100%;
	background-color: var(--main_color);
	display: inline-flex;
	border-radius: 8px;
	justify-content: center;
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	color: #ffffff;
	gap: 16px;
	cursor: pointer;
}

button:hover, .button:hover {
	background-image: url('res/active-btn.svg');
	color: #ffffff;
	;
}

button:disabled {
	background-color: #ededed;
	border: solid 1px #d0d0d0;
	color: #d0d0d0;
	cursor: default;
}

button:disabled:hover {
	background-image: none;
}

button.ghost {
	background-color: transparent;
	width: 160px;
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	border-radius: 6px;
	border: 2px solid rgba(255, 255, 255, 0.40);
	color: #A5A7A8;
}

button.ghost.outlined {
	border: 1px solid #CCCCCC;
	color: #A5A7A8;
}



/* --------- */

.superhead {
	height: 26px;
	background: linear-gradient(-90deg, var(--gradient_start) 25%, var(--gradient_end) 100%);
	min-width: 944px;
}

.superhead.gray {
	background: none;
	background-color: #404040;
}

.head, .splash {
	min-width: 944px;
	display: flex;
	justify-content: center;
}

.head>div {
	width: 944px;
	min-width: 944px;
	height: 108px;
	display: flex;
	justify-content: center;
	gap: 64px;
}

.head.logged {
	background-color: #f5f5f5;
}


.head.logged>div {
	padding-left: 16px;
	padding-right: 40px;
	height: 140px;
	gap: 34px;
}

.head.logged .tabs {
	flex-grow: 1;
	display: flex;
	padding-top: 24px;
	gap: 24px;
}

.head.logged .tabs .tab_sep {
	height: 24px;
	width: 1px;
	background-color: #a4a4a4;
}

.head.logged .tabs>div {
	height: 24px;
	font-size: 24px;
	line-height: 24px;
	font-weight: 300;
	position: relative;
	cursor: pointer;
}

.head.logged .tabs>div .selector {
	display: none;
}

.head.logged .tabs>div.selected .selector {
	display: block;
	height: 4px;
	border-radius: 2px;
	background-color: var(--main_color);
	position: absolute;
	bottom: -10px;
	left: -3px;
	right: -3px;
}

.head.logged .tabs>div.disabled {
	color: #d0d0d0;
	cursor: default;
}

.white-funnel {
	background: #FFF;
	width: 960px;
	margin: 0 auto;
	padding-bottom: 180px;
}

.white-funnel .container {
	width: 600px;
	margin: 0 auto;
}

.navHistory {
	max-width: 740px;
	width: 100%;
	font-size: 16px;
	line-height: 1.5;
	padding: 20px 0;
	text-align: left;
	margin: 0 auto;
	color: #A5A7A8;
}

.navHistory .active {
	color: #3C4043;
	font-weight: 600;
}

#employee_container {
	position: relative;
}

#employee_container>svg {
	width: 24px;
	height: 24px;
	stroke: #202020;
}

#employee_container:hover>svg, #employee_container.open>svg {
	stroke: var(--main_color) !important;
}

#employee_menu {
	width: 240px;
	padding-top: 24px;
	position: absolute;
	top: 42px;
	left: -108px;
}

#employee_menu .arrow {
	position: absolute;
	top: -12px;
	left: 108px;
	height: 12px;
	width: 22px;
}

#employee_menu .menu_closer {
	position: absolute;
	top: -60px;
	width: 224px;
	height: 48px;
}

#employee_menu .f16_700_color {
	padding-left: 8px;
	padding-right: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 20px;
}

.employee_email {
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
	font-size: 12px;
	color: #a4a4a4;
}

.menu_voice {
	font-size: 14px;
	line-height: 16px;
	padding: 8px;
	border-radius: 2px;
	cursor: pointer;
}

.menu_voice:hover {
	background-color: #ededed;
}

.head_logo {
	width: 180px;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	color: #3c4043;
	font-weight: 300;
	line-height: 14px;
	gap: 8px;
}

.head_logo img {
	max-height: 70px;
	max-width: 180px;
	width: 180px;
	object-fit: contain;
}

.head.gray.logged {
	background-color: #3c4043;
}

.head.gray.logged>div {
	height: 100px;
	gap: 64px;
}

.head.gray.logged .tabs {
	display: flex;
	padding-top: 0px;
	gap: 24px;
}

.head.gray.logged .tabs>div {
	color: #ffffff;
}

.employee_name {
	text-align: right;
	margin-right: 16px;
}

.gray #employee_container>svg {
	stroke: #ffffff;
}

.gray #employee_menu {
	left: -170px;
}

.gray #employee_menu .arrow {
	left: 170px;
}

.gray_section {
	background-color: rgba(217, 217, 217, .2);
	padding: 18px 0;
}

.gray_section>.flex {
	width: 848px;
	margin: 0 auto;
	justify-content: center;
}

.gray_section .sep {
	width: 1px;
	height: 200px;
	background: #A5A7A8;
	min-width: 0;
	margin-left: 20px;
	margin-right: 28px;
}

.gray_section p {
	width: 550px;
	font-size: 16px;
}

.text-italic {
	font-style: italic;
	font-size: 26px;
	font-weight: 600;
	line-height: 32px;
	color: var(--title_color);
	text-align: right;
}

.text-italic span {
	display: block;
	font-size: 12px;
	line-height: 18px;
	color: #202020;
	font-style: normal;
	font-weight: 400;
	text-align: right;
	margin-top: 20px;
}

.container_points {
	width: 599px;
	margin: 34px auto 80px;
}

.point {
	color: var(--main_color);
	font-size: 32px;
	font-weight: 700;
	line-height: normal;
	margin-right: 24px;
}

.digAssBox {
	background-color: #FAFAFA;
	border: 2px dashed var(--Grey-2, #A5A7A8);
	border-radius: 12px;
	padding: 18px 40px 16px;
	margin-bottom: 80px;
}

.digAssSep {
	height: 156px;
	width: 1px;
	background-color: #EDEDED;
}

.splash {
	background: linear-gradient(#f3f3f3 50%, #ffffff 100%);
}

.splash>div {
	width: 744px;
	min-width: 744px;
	height: 220px;
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.splash_girl {
	position: absolute;
	width: 422px;
	left: 0px;
	top: 22px;
}

.splash_logo {
	width: 280px;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	line-height: 14px;
	font-weight: 300;
	gap: 8px;
}

.splash_logo img {
	max-height: 90px;
	max-width: 210px;
	width: 210px;
}

.sep {
	min-width: 944px;
	height: 16px;
	background-color: var(--main_color);
}

.login_form {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 40px;
	padding-top: 42px;
	padding-bottom: 120px;
	min-width: 944px
}

.login_text {
	padding-top: 44px;
	min-width: 344px;
	width: 344px;
}

.login_fields {
	min-width: 296px;
	width: 296px;
	padding-left: 16px;
	padding-bottom: 8px;
	border-left: solid 1px #a4a4a4;
}

.footer {
	background-color: #404040;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	line-height: 18px;
	gap: 32px;
	padding-top: 40px;
	padding-bottom: 150px;
	min-width: 944px;
	font-size: 11px;
	color: #ffffff;
}

.footer a {
	font-size: 12px;
	color: #ffffff;
	text-decoration: none;
}

.capsoc {
	opacity: 0.6;
}


.card_stage {
	min-width: 944px;
	padding-top: 80px;
	height: auto;
	background:
		linear-gradient(92deg, var(--gradient_end) 27.82%, var(--gradient_start) 108.06%);
}

.card_stage_becard {
	min-width: 872px;
	height: 500px;
	padding-top: 60px;
	background-image:
		url('res/back-card.svg'),
		linear-gradient(-90deg, var(--gradient_start) 25%, var(--gradient_end) 100%);
	background-position: 50% 50%;
	position: relative;
}

.card_stage>.flex {
	width: 872px;
	margin: 0 auto;
	justify-content: space-between;
}

.card_stage_becard .f28_700_white {
	text-align: center;
}

.card_stage_becard .f20_400_white {
	width: 420px;
	position: absolute;
	top: 200px;
	right: calc(50% + 16px);
}

.card_stage_becard .fakelink {
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
}

.card_stage_becard #the_card {
	width: 320px;
	transform: rotate(-15deg);
	position: absolute;
	bottom: 94px;
	left: calc(50% + 88px);
}

.card_stage_becard #grid {
	width: 700px;
	height: 400px;
	position: absolute;
	opacity: 0.6;
	mix-blend-mode: hard-light;
	bottom: 0;
	left: calc(50% - 220px);
}

.card_stage_becard .cardValidity {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	color: #ffffff;
}

.area_box {
	padding: 16px 48px 40px;
	border-radius: 8px;
	border: 1px solid #D1D1D1;
	display: grid;
	min-width: 436px;
	height: 100%;
	background-color: white;
}

.area_box button {
	height: 60px;
	width: 260px;
	align-self: end;
	justify-self: center;
}

.metahome_main {
	padding: 0 24px 80px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 70%, rgba(180, 180, 180, 0.1) 83%, rgba(97, 95, 95, 0.1) 95%);
}

.area_box.becard {
	background-image: url(res/grid.png), linear-gradient(180deg, #474747 0%, #4A4844 100%);
	background-position: 50% 60%;
	color: white;
	position: relative;
	height: 100%;
}

.area_box.becard #grid {
	position: relative;
	width: 100%;
}

.area_box.becard .the_card {
	transform: rotate(-15deg);
	position: relative;
	bottom: 0;
	width: 248px;
	height: auto;
}

.area_box.becard::before {
	content: "";
	position: absolute;
	left: 0;
	right: 49%;
	top: 25%;
	bottom: 44%;
	background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.50) 12%, rgba(0, 0, 0, 0.00) 50%) bottom right / 50% 50% no-repeat, linear-gradient(to bottom left, rgba(0, 0, 0, 0.50) 12%, rgba(0, 0, 0, 0.00) 50%) bottom left / 50% 50% no-repeat, linear-gradient(to top left, rgba(0, 0, 0, 0.50) 12%, rgba(0, 0, 0, 0.00) 50%) top left / 50% 50% no-repeat, linear-gradient(to top right, rgba(0, 0, 0, 0.50) 12%, rgba(0, 0, 0, 0.00) 50%) top right / 50% 50% no-repeat;
	filter: blur(13px);
}

.services {
	min-width: 944px;
	padding-top: 48px;
	padding-bottom: 100px;
}

.services .f28_700_color {
	text-align: center;
}

.services_box {
	display: flex;
	align-items: stretch;
	padding-top: 48px;
	justify-content: center;
	max-width: 900px;
	margin: 0 auto;
}

.service_box {
	width: 324px;
	border-left: dashed 1px #a4a4a4;
	padding-left: 32px;
	padding-right: 32px;
	text-align: center;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.service_box .fakelink {
	text-transform: uppercase;
	width: 100%;
	justify-content: center;
}


.service_box:first-child {
	border-left: 0;
	padding-left: 0;
	width: 292px;
}

.service_box:last-child {
	padding-right: 0;
	width: 292px;
}

.service_box svg {
	width: 200px;
	height: 140px;
	margin-bottom: 32px;
}

.service_box .f16_400 {
	padding-top: 24px;
}

.service_box .fakelink {
	padding-top: 48px;
	color: var(--main_color);
	font-size: 16px;
	font-weight: 600;
}

.ns2 .services_box .service_box {
	width: 456px;
	text-align: left;
}

.ns2 .services_box .service_box:first-child {
	padding-right: 64px;
}

.ns2 .services_box .service_box:last-child {
	padding-left: 64px;
}

.ns2 .service_box .f16_400 {
	height: 216px;
}

.ns1 .services_box .service_box {
	width: 900px;
	text-align: left;
	display: flex;
	padding-inline: 120px;
}

.ns1 .service_box svg {
	min-width: 240px;
	height: auto;
}

.ns1 .f20_700>br, .ns4 .f20_700>br {
	display: none;
}

.ns1 .f20_700 {
	text-align: left;
}

.ns1 .f28_700_color {
	width: 900px;
	margin-inline: auto;
	padding-inline: 120px;
}

.ns4 .services_box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* flex-wrap: wrap; */
	row-gap: 64px;
}

.ns4 .service_box {
	width: 100%;
	height: auto;
	text-align: left;
	/* align-items: stretch; */
}

.offers {
	display: flex;
	flex-direction: column;
	min-width: 944px;
	background-image: url('res/gray_wawe.svg');
	background-position: center top;
	padding-top: 64;
}

.offers_head {
	display: flex;
	gap: 32px;
	align-items: flex-start;
	justify-content: center;
}

.offers_head>img {
	height: 320px;
	width: 260px;
}

.offers_head>div {
	width: 320px;
	text-align: center;
}

.offers_head button {
	height: 52px;
	border: solid 2px #ffffff;
}

.offers_head .f16_400 {
	padding-top: 24px;
	padding-bottom: 40px;
}

.offers_banners {
	padding-top: 38px;
	text-align: left;
}

.offers_banners .banners {
	padding-top: 30px;
	padding-bottom: 80px;
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	max-width: 904px;
}

.offers_banners .banner {
	width: 280px;
	height: 360px;
	border-radius: 8px;
	border: 1px solid #bdbdbd;
	background-color: #ffffff;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
	padding: 12px;
	padding-top: 8;
	padding-bottom: 8px;
	cursor: pointer;
}

.banner_brand {
	height: 52px;
	padding-bottom: 8px;
	display: flex;
	align-items: flex-end;
	font-size: 16px;
	font-weight: 700;
}

.banner>img {
	width: 250px;
	height: 119px;
	border-radius: 4px;
	border: solid 1px #a4a4a4;
	overflow: hidden;
	box-sizing: content-box;
}

.banner_desc {
	font-size: 14px;
	line-height: 20px;
	padding-top: 24px;
	height: 104px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.banner_discount {
	padding-top: 16px;
	padding-bottom: 16px;
	text-align: center;
	font-size: 16px;
}

.some_brands {
	padding-bottom: 80px;
	display: flex;
	flex-direction: column;
}

.some_brands .f16_300 {
	color: #808080;
	padding-bottom: 24;
}

.gray_logos {
	max-width: 888px;
	opacity: 0.4;
	display: flex;
	flex-wrap: wrap;
	gap: 8px
}

.gray_logos img {
	width: 216px;
	height: 110px;
}

.nimble_splash {
	min-width: 944px;
	padding-top: 64px;
	padding-bottom: 64px;
	background: linear-gradient(90deg, var(--gradient_start) 25%, var(--gradient_end) 100%);
	display: flex;
	flex-direction: column;
}

.nimble_main {
	width: 912px;
	height: 270px;
	display: flex;
}

.nimble_main>div {
	flex-grow: 1;
}

.nimble_main>img {
	mix-blend-mode: overlay;
}

.pac-item, .pac-matched {
	font-family: 'Titillium' !important;
	font-size: 16px;
}

.prd_nimble_main {
	height: auto;
}

/* carousel */

.carousel_section {
	position: relative;
	background: linear-gradient(180deg, #474747 0%, #4A4844 100%);
	padding: 60px 0 78px;
	text-align: center;
	overflow: hidden;
	min-width: 960px;
	color: #202020;
}

.carousel_section:not(.becard) button {
	color: #3C4043;
	background-color: white;
	border: 2px solid var(--Grey-2, #A5A7A8);
}

.carousel_section:not(.becard) button:hover {
	color: #1F2326;
	border: 2px solid #6B6D6F;
	background-color: #E5E5E5;
}

.carousel_section.becard {
	color: white;
}

.carousel_section.becard button {
	color: white;
}

.carousel_section.metahome {
	background: white;
}

.metahome .f28_700_white.mb-50 {
	color: var(--title_color);
}

.benefit .f28_700_white.mb-50 {
	color: #202020;
}

.carousel_section.benefit {
	background: #EDEDED;
}

.carousel_cnt {
	position: relative;
	display: flex;
	align-items: flex-start;
	width: 100%;
	overflow: auto;
	padding-left: calc((100% - 912px) / 2);
	padding-right: calc((100% - 912px) / 2);
	margin: 0 auto 46px;
	height: 480px;
	scrollbar-width: thin;
	scrollbar-color: transparent transparent;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	/* per scroll fluido su iOS */
	scrollbar-width: none;
	/* Firefox */
}

.carousel_cnt.active {
	scroll-snap-type: none;
}

.carousel_cnt.disabled {
	pointer-events: none;
}

.carousel_cnt::-webkit-scrollbar {
	width: 0;
	display: none;
	/* Safari e Chrome */
}

.carousel_cnt.small {
	height: 488px;
	margin: 0 auto 0;
	display: flex;
	align-items: stretch;
	gap: 66px;
}

.carousel_cnt button:hover {
	background: rgba(255, 255, 255, 0.10);
}

.carousel_item {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	scroll-snap-align: center;
	user-select: none;
}

.small .carousel_item {
	width: 260px;
}

.carousel_cnt .img_cnt {
	cursor: pointer;
}

.carousel_cnt.toSx .img_cnt {
	cursor: url('res/pill_sx.svg') 25 15, auto;
}

.carousel_cnt.toDx .img_cnt {
	cursor: url('res/pill_dx.svg') 25 15, auto;
}

.carousel_item .img_cnt {
	padding: 0 33px !important;
}

.small .carousel_item .img_cnt {
	padding: 0 !important;
}

.carousel_item:first-child .img_cnt {
	padding-left: 0 !important;
}

.carousel_item:first-child .img_cnt>div:not(.img_overlay), .carousel_item:first-child .img_overlay {
	left: 0;
}

.carousel_item:first-child .prod_desc {
	padding-left: 9px;
}

.carousel_item:last-child .img_cnt {
	padding-right: 0 !important;
}

.carousel_item:last-child .prod_desc {
	padding-right: 9px;
}

.becard .carousel_item .prod_desc {
	color: #ffffff;
}

.carousel_item .img_cnt img {
	height: 280px;
	width: 260px;
	border-radius: 8px;
	user-select: none;
}

.carousel_item .img_cnt>div:not(.img_overlay) {
	position: absolute;
	top: 0;
	left: 33px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 260px;
	height: 64px;
	background-color: var(--main_color);
	opacity: 0.8;
	padding: 8px;
	line-height: 24px;
	border-radius: 8px 8px 0 0;
	z-index: 2;
}

.carousel_item .img_overlay {
	position: absolute;
	top: 0;
	left: 33px;
	width: 260px;
	height: 280px;
	border-radius: 8px;
	mix-blend-mode: overlay;
	_cursor: none;
}

.small .carousel_item .img_overlay, .small .carousel_item .img_cnt>div:not(.img_overlay) {
	left: 0;
}

.small .prod_desc {
	padding: 16px 9px 24px;
}

.carousel_item .img_cnt:hover .img_overlay {
	background-color: rgba(255, 255, 255, 0.3);
}

#dots {
	display: inline-flex;
	gap: 16px;
}

.prod_desc {
	text-align: left;
	padding: 16px 42px 24px;
	flex-grow: 2;
}

.prod {
	margin-top: 26px;
}


.carousel_dot {
	cursor: pointer;
	opacity: 0.2;
}

.carousel_dot.active {
	opacity: 1;
}

.arrow.arrowSx2, .arrow.arrowDx2 {
	position: absolute;
	top: 35%;
	height: 60px;
	width: 44px;
	opacity: 1 !important;
}

.arrowDx2:hover {
	background-image: url(res/arrow_dx_hover_benefit.svg);
}

.arrowSx2:hover {
	background-image: url(res/arrow_sx_hover_benefit.svg);
}

.arrow.arrowSx2.disabled, .arrow.arrowDx2.disabled {
	display: none;
}

.arrowSx2 {
	background-image: url(res/arrow_sx_active.svg);
	left: calc((100% - 912px) / 2);
	transform: translateX(-50%);
}

.becard .arrowSx2 {
	background-image: url(res/arrow_sx_active_becard.svg);
}

.becard .arrowSx2:hover {
	background-image: url(res/arrow_sx_hover.svg);
}

.arrowDx2 {
	background-image: url(res/arrow_dx_active.svg);
	right: calc((100% - 912px) / 2);
	transform: translateX(50%);
}

.becard .arrowDx2 {
	background-image: url(res/arrow_dx_active_becard.svg);
}

.becard .arrowDx2:hover {
	background-image: url(res/arrow_dx_hover.svg);

}


.policy_desc {
	display: grid;
	grid-template-columns: 448px 448px;
	row-gap: 40px;
	column-gap: 16px;
	align-items: self-start;
	margin-bottom: 64px;
}

.policy_desc2 {
	display: flex;
	column-gap: 16px;
	align-items: self-start;
	margin-bottom: 64px;
}

.policy_desc>div, .policy_desc2>ul {
	padding: 8px;
}

.policy_desc2>div {
	width: 50%;

}

.policy_desc p {
	width: 420px;
}

.arrow {
	cursor: pointer;
}

.arrow.disabled {
	opacity: 0.1;
	cursor: not-allowed;
}

.box_inOfferta {
	padding: 22px;
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	border-radius: 8px;
	background: #F5F5F5;
}

.box_inOfferta3 {
	padding: 24px 32px 32px;
	text-align: center;
	font-size: 24px;
	border-radius: 8px;
	background: #F5F5F5;
}

.box_inOfferta3>div {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 34px;
}

.box_inOfferta2 {
	border-radius: 8px;
	background: #F5F5F5;
	padding: 32px;
	display: flex;
	gap: 32px;
}

.box_inOfferta2>.box, .box_inOfferta3 .box {
	padding-top: 32px;
	padding-bottom: 32px;
	padding-left: 18px;
	padding-right: 18px;
	text-align: center;
	background: #ffffff;
	border: 2px solid #DFDFDF;
	border-radius: 8px;
	width: 33.3333%
}

.box_inOfferta3 .box {
	height: 295px;
	display: flex;
	flex-direction: column;
}

.box_piano {
	border-radius: 8px;
	border: 2px solid #DFDFDF;
	padding: 16px;
	width: 320px;
}

.covers {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-width: 944px;
	margin: 0 auto;
	gap: 80px;
	width: fit-content;
	padding: 48px 32px 0;
	align-items: start;
}

.covers.horizontal {
	grid-template-columns: 1fr;
	gap: 0;
	min-width: 944px;
	max-width: 90%;
	padding: 0 52px 0;
}

.covers .cover {
	height: 100%;
	display: flex;
	flex-direction: column;
}



.covers .cover .description {
	flex-grow: 2;
}

.covers .cover .guide_cnt {
	gap: 32px;
	height: 48px;
	width: 100%;
	padding-left: 14px;
}

.covers .cover .guide_cnt {
	padding-left: 0;
}

.covers .cover p {
	width: 389px;
}

.covers.horizontal .cover {
	position: relative;
	display: flex;
	padding-right: 80px;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row;
	padding-block: 48px;
	border-bottom: 1px dashed #A5A7A8;
	width: 872px;
	margin: 0 auto;
}

.covers.horizontal .cover.last {
	border-bottom: 0;
	padding-bottom: 0;
}

.covers .cover:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.covers.horizontal .cover .description {
	width: 392px;
}

.covers.horizontal .cover .img {
	order: 2;
	position: absolute;
	right: 80px;
}

.updates {
	padding: 104px 32px 0;
}

.update_row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	border-bottom: 1px dashed #A5A7A8;
}

.update_row:not(:first-of-type) {
	padding-top: 16px;
}

.update_row:last-of-type {
	border-bottom: 0;
	padding-bottom: 0;
}

.user_data {
	display: flex;
	background-color: rgba(237, 237, 237, 0.2);
	padding: 20px 30px 42px;
	margin-bottom: 84px;
}

.user_data .address_info {
	padding-right: 184px;
	margin-right: 48px;
	border-right: 1px solid #ccc;
}

.relative_box {
	border-top: 1px solid #EDEDED;
	padding: 16px 32px 12px;
}

.upd_mob_label {
	font-size: 12px;
	bottom: -25px;
	left: 8px;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

input.relative_field:disabled {
	border: 0;
	color: inherit;
	text-transform: capitalize;
	height: 44px;
	padding-left: 12px;
}

.toApprove input.relative_field:disabled {
	color: #A5A7A8;
	opacity: 0.6;
}

.toApprove input:disabled+label {
	opacity: 0.6;
}

.relative_box .field {
	padding-bottom: 0;
}

.contact_banner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 22px;
	background-color: var(--main_color);
	color: white;
	font-size: 24px;
	font-weight: 300;
}

.pickdate {
	display: flex;
	width: 204px;
	justify-content: space-between;
}

.radio-cnt {
	position: relative;
	display: grid;
	align-items: center;
	grid-template-columns: 330px 1fr 1fr;
	white-space: nowrap;
}

.radio-cnt>div {
	width: 50%;
}

input[type="file"] {
	cursor: pointer;
	opacity: 0;
	position: absolute;
	left: 0;
	top: -100%;
	width: calc(100% - 28px);
	height: 200%;
}

.empty input[type="file"] {
	width: 100%;
}

.openable input[type="file"] {
	left: 28px;
	width: calc(100% - 56px);
}

.pickfile {
	display: inline-flex;
	position: relative;
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	border: solid 1px #3c4043;
	border-radius: 8px;
	height: 56px;
	background-color: #ffffff;
	cursor: pointer;
	user-select: none;
	overflow: hidden;
}

.pickfile div {
	font-size: 16px;
	font-weight: 700;
	color: #4e4d4e;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex-grow: 1;
	max-width: 304px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pickfile img {
	width: 18px;
	height: 18px;
	margin-right: 0px;
	margin-left: 6px;
}

.pickfile img.opendoc {
	margin-right: 6px;
	margin-left: 0;
}

.pickfile.empty {
	background-color: #f8f8f8;
	border-style: dashed;
	padding-left: 10px;
	padding-right: 14px;
	width: auto;
}

.pickfile.empty div {
	font-weight: 400;
}

.pickfile.empty img {
	width: 18px;
	height: 18px;
	margin-right: 6px;
	margin-left: 0px;
}

.video-preview {
	position: relative;
	cursor: pointer;
	width: 82px;
	min-width: 82px;
	height: 46px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	border: 1px solid white;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);

	.overlay {
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.2);
		border-radius: 4px;
	}
}

.video-preview img {
	width: 100%;
	display: block;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

#videoModal {
	display: none;
	position: fixed;
	z-index: 3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.60);
	padding-top: 60px;

	.video-modal-content {
		margin: auto;
		display: block;
		width: 700px;
		height: 394px;
		background: white;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border: 1px solid white;

		#videoIframe {
			border: 1px solid white;
		}

		.close {
			background-color: white;
			position: absolute;
			right: -19px;
			top: -15px;
			cursor: pointer;
			border-radius: 50%;
			padding: 4px;
		}
	}
}

.video-sep {
	position: relative;
	background-color: var(--gradient_end);
	display: flex;
	justify-content: center;
	gap: 20px;
	color: white;
	padding-block: 16px;

	&.empty {
		background-color: var(--gradient_end);
		height: 16px;
		padding-block: 0;
	}

	.video-preview {
		border: 1px solid white;
		width: 118px;
		height: 68px;

		.overlay {
			background-color: var(--gradient_end);
			opacity: 0.2;
			mix-blend-mode: multiply;
		}

		.overlay.overlay-black {
			background-color: black;
			opacity: 0.2;
		}

		svg {
			width: 100%;
			height: 100%;
		}
	}

	&::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.25);
	}

	.play-button {
		svg {
			width: 54px;
			height: 54px;
		}
	}
}