@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url("../fonts/roboto300.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
		U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/roboto500.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
		U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url("../fonts/montserrat300.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
		U+FEFF, U+FFFD;
}
@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/montserrat500.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
		U+FEFF, U+FFFD;
}
*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	font-family: "Roboto", sans-serif;
	font-weight: 300;
}

:root {
	--bg-app: #3b3b47;
	--bg-card-footer: #f8f8f8;
	--divider: #ebebeb;
	--box-shadow: 1px 0 4px -2px rgb(51, 51, 51, 0.5);
	--text-primary: #e0e0e0;
	--text-secondary: #b4b4b4;
	--text-title-primary: #f9c30f;
	--text-temperature-cold: #69a3ff;
	--text-temperature-normal: #ff9632;
	--text-temperature-high: #ed1946;
	--text-went-wrong: #ed1946;
}

html,
body {
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
	background: var(--bg-app);
	cursor: default;
}

html {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	font-size: 62.5%;
	color: var(--text-primary);
}

body {
	font-size: 1.8rem;
}

body[blur="true"] > header,
body[blur="true"] > main,
body[blur="true"] > footer {
	-o-filter: blur(1px);
	-ms-filter: blur(1px);
	-moz-filter: blur(1px);
	-webkit-filter: blur(1px);
	filter: blur(1px);
}

h2,
h3 {
	font-family: "Montserrat", sans-serif;
}

p {
	margin: 0 0 1rem;
}

b {
	font-weight: 500;
}

a {
	text-decoration: none;
	color: var(--text-primary);
}

button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	border: none;
}

input,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	padding: 8px 15px;
	font-size: 1.6rem;
	border-radius: 0.6rem;
	color: #fafafa;
}

select {
	display: inline-block;
	height: 40px;
	padding: 0 8px;
	margin: 0;
	vertical-align: middle;
	border: 1px solid #fafafa;
	background-color: transparent;
	border-radius: 4px;
	line-height: 39px;
	font-size: 1.5rem;
	color: #fafafa;
}
select {
	background: #333;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
/* *** */
.btn-primary {
	margin: 0 1rem 0 0;
	background: rgba(249, 195, 15, 0.1);
	border: 1px solid #f9c30f;
	color: #f9c30f;
}
.form__bnt {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	width: 100%;
	height: 40px;
	margin: 0;
	overflow: hidden;
	z-index: 0;
	cursor: pointer;
	border-radius: 4px;
	line-height: 39px;
	text-decoration: none;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 600;
	color: #fafafa;
}
.form__bnt::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: #444;
}
.form__bnt:hover::before {
	-webkit-filter: brightness(0.9);
	filter: brightness(0.9);
}
.form__bnt--search {
	width: 44px;
	background: #c5c5c5;
}
.form__bnt--search::before {
	background: #c5c5c5;
}
.form__bnt--gray::before {
	background: #c5c5c5;
}
.form__bnt--green {
	color: #fafafa;
}
.form__bnt--green::before {
	background: #009966;
}
.form__bnt--red {
	color: #fafafa;
}
.form__bnt--red::before {
	background: #cd2122;
}
.form__bnt--yellow {
	color: #000;
}
.form__bnt--yellow::before {
	background: #f9c30f;
}
/* *** */
.home .main {
	display: contents;
}
.main {
	width: 100%;
	min-height: 100%;
}
.boxCenter {
	position: relative;
	display: block;
	width: 100%;
	max-width: 1232px;
	padding: 0 16px;
	margin: auto;
}
.displayNone {
	display: none;
}
.bodyPadding16 {
	display: block;
	padding: 16px 0 0;
}
.bodyPadding32 {
	display: block;
	padding: 32px 0 0;
}
.bodyPadding64 {
	display: block;
	padding: 64px 0 0;
}
/***/
.bodyHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 115px;
	position: relative;
	box-shadow: 0px 0 15px 10px var(--bg-app);
	z-index: 4;
}
.bodyHeader .boxCenter {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.bodyHeader__left {
	width: 120px;
	z-index: 10;
}
.bodyHeader__logo {
	height: 150px;
	padding: 16px 0;
}
.bodyHeader__right {
	width: 120px;
	text-align: right;
	z-index: 10;
}
.bodyHeader__leftLogo {
	display: block;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.bodyHeader .bodyHeaderMobile {
	display: none;
}
/**/
.bodyHeader__menu {
	position: relative;
	display: flex;
	flex-direction: row;
	list-style: none;
}
.bodyHeader__menuLi {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	margin: 0 20px;
	color: #fafafa;
}
.bodyHeader__menuLiA {
	position: relative;
	cursor: pointer;
	text-transform: uppercase;
}
.bodyHeader__menuLiA::before {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 40px;
	height: 2px;
	background: #f9c310;
	transition: width 0.2s linear;
}
.bodyHeader__menuLi:hover .bodyHeader__menuLiA::before {
	width: 100%;
}
.bodyHeader__menuLi:hover .bodyHeader__menuLiA {
	color: var(--text-title-primary);
}
.bodyHeader__sub {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 32px 16px;
	visibility: hidden;
}
.bodyHeader__sub::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 300%;
	height: 100%;
	background: var(--bg-app);
	box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.4);
}
.bodyHeader__menuLi:hover .bodyHeader__sub {
	visibility: visible;
}
.bodyHeader__submenu {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	list-style: none;
}
.bodyHeader__submenuLiA {
	position: relative;
	display: inline-block;
	height: 30px;
	line-height: 30px;
	margin: 6px 0;
	cursor: pointer;
	color: #fafafa;
}
.bodyHeader__submenuLiA::before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 1px;
	background: #fafafa;
	transition: width 0.2s linear;
}
.bodyHeader__submenuLiA:hover::before {
	width: 100%;
}
/**/
.bodyHeader__btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	border-radius: 4rem;
	background: var(--text-title-primary);
}
.bodyHeader__menu-user {
	display: none;
	position: absolute;
	/* bottom: -8rem; */
	top: calc(50% + 3rem);
	right: 1.6rem;
	padding: 1.6rem 0;
	box-shadow: 4px 4px 10px -9px #fafafa;
	background: #eee;
	border-radius: 0.6rem;
	/* white-space: pre; */
}
.bodyHeader__btn.active + .bodyHeader__menu-user {
	display: block;
}
.bodyHeader__menu-user li {
	display: block;
	list-style: none;
	margin: 0.8rem 0;
}
.bodyHeader__menu-user li a {
	display: block;
	padding: 0.8rem 1.6rem;
	text-align: left;
	font-weight: 400;
	color: #333;
}
.bodyHeader__menu-user li a:hover {
	background: rgb(249, 195, 15, 0.3);
}
/**/
.footer {
	display: flex;
	flex-direction: column;
	margin: 100px 0 16px;
}
.footer .boxCenter {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 64px 16px;
	border: 1px solid #a8a8a8;
}
.bodyFooter__logo {
	margin-left: 32px;
	height: 150px;
}
.bodyFooter__socialLinks {
	display: flex;
	gap: 16px;
}
.bodyFooter__socialLinksA {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4rem;
	height: 4rem;
	border-radius: 4rem;
	border: 1px solid #ffffff;
}
.bodyFooter__socialLinksA:hover {
	border-color: #f9c310;
}
.bodyFooter__socialLinksSvg {
	width: 2rem;
	height: 2rem;
	fill: #ffffff;
}
.bodyFooter__menu {
	display: flex;
	flex-direction: row;
	gap: 100px;
	list-style: none;
}
.bodyFooter__menuLi {
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 0 20px;
}
.bodyFooter__menuLiA {
	text-transform: uppercase;
	font-weight: 500;
	color: var(--text-title-primary);
}
.bodyFooter__submenu {
	list-style: none;
	display: flex;
	flex-direction: column;
}
.bodyFooter__submenuLiA {
	position: relative;
	display: inline-block;
	margin: 16px 0 0;
	transition: color 0.2s linear;
	font-weight: 300;
	color: #b8b8b8;
}
.bodyFooter__submenuLiA:hover {
	color: #fafafa;
}
.bodyFooter__submenuLiA::before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0;
	height: 1px;
	background: #fafafa;
	transition: width 0.2s linear;
}
.bodyFooter__submenuLiA:hover::before {
	width: 100%;
}
.bodyFooter__submenuBtn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 40px;
	margin: 32px 0 0;
	transition: all 0.2s linear;
	background: rgba(249, 195, 15, 0.1);
	border: 2px solid #f9c30f;
	box-sizing: border-box;
	border-radius: 99px;
	font-weight: 500;
	font-size: 2rem;
	color: #f9c30f;
}
.bodyFooter__submenuBtn:hover {
	box-shadow: 0 0 0 3px #f9c30f;
	background: #f9c30f;
	color: #333333;
}
/*****/
.bodyHeaderMobile__fixed {
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	max-width: 320px;
	height: 100%;
	transition: left 0.3s linear;
	background: var(--bg-app);
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 40%);
	z-index: 10;
}
.bodyHeaderMobile__fixed.open {
	left: 0;
}
.bodyHeaderMobile__fixedHeader {
	display: flex;
	justify-content: space-between;
	padding: 16px;
}
/*****/
@media (max-width: 980px) {
	.bodyHeader .bodyHeaderMobile {
		display: flex;
	}
	.bodyHeader .bodyHeaderDesktop {
		display: none;
	}
	.bodyHeader {
		height: 70px;
	}
	.footer {
		padding: 0 16px;
	}
	.footer .boxCenter {
		flex-direction: column;
		align-items: center;
	}
	.bodyFooter__left {
		text-align: center;
	}
	.bodyFooter__logo {
		margin: 0;
	}
	.bodyFooter__socialLinksTitle {
		display: none;
	}
	.bodyFooter__socialLinks {
		padding: 0 0 64px;
	}
	/**/
	.bodyHeader__menu {
		flex-direction: column;
	}
	.bodyHeader__menuLi {
		height: 40px;
		line-height: 40px;
	}
	.bodyHeader__menuLi:hover {
		height: auto;
	}
	.bodyHeader__sub {
		position: relative;
		top: inherit;
		padding: 0 16px;
	}
	.bodyHeader__sub::before {
		display: none;
	}
}

@media (max-width: 850px) {
	.bodyFooter__menu {
		flex-direction: column;
		gap: 32px;
	}
}

/*  */
/* -------------------------------------- */
.psx-modal {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1035;
	font-family: monospace;
}
.psx-modal[data-active="true"] {
	display: flex;
}
.psx-modal .psx-modal__area {
	display: flex;
	flex-flow: column nowrap;
	min-width: 540px;
	max-width: 620px;
	max-height: 80%;
}
.psx-modal .psx-modal__titlebar {
	display: flex;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
	background: #5a5a5a;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	text-transform: uppercase;
	color: #fafafa;
}
.psx-modal .psx-modal__titlebar__h4 {
	font-weight: 500;
}
.psx-modal .psx-modal__close {
	cursor: pointer;
	background: none;
	border: none;
	height: auto;
	line-height: normal;
	color: #fafafa;
}
.psx-modal .psx-modal__close .icon-svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
}
.psx-modal .psx-modal__content {
	display: block;
	width: 100%;
	padding: 0 1.5rem 0;
	overflow-y: auto;
	z-index: 1;
	background: #5a5a5a;
	border: 1px solid var(--theme-color);
}
.psx-modal .psx-modal__txt {
	padding: 1rem 0;
}
.psx-modal .psx-modal__txt div span:first-child {
	font-weight: 700;
}
.psx-modal .psxmodalno {
	visibility: hidden;
}
.psx-modal .psx-modal__footer {
	display: flex;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
	background: #5a5a5a;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
	border: 1px solid var(--theme-color);
	text-transform: uppercase;
	color: #fafafa;
}
.psx-modal-loading {
	display: none;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1035;
	background: #000 1f;
}
.psx-modal-loading[data-active="true"] {
	display: flex;
}
.psx-modal-loading .psx-modal__area-loading {
	display: flex;
	flex-flow: column nowrap;
	min-width: 540px;
	max-width: 620px;
	max-height: 80%;
}
.psx-modal-loading .psx-modal__content-loading {
	display: block;
	width: 100%;
	padding: 2rem;
	overflow-y: auto;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
	background: #5a5a5a;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
	border: 1px solid var(--theme-color);
}
.psx-modal-loading .psx-modal__txt-loading {
	padding: 1rem 0;
}
.psx-modal-loading .psx-modal__txt-loading div span:first-child {
	font-weight: 700;
}
/* placeHolder Shimmer */
@-webkit-keyframes placeHolderShimmer {
	0% {background-position: -468px 0;}
	100% {background-position: 468px 0;}
}
@keyframes placeHolderShimmer {
	0% {background-position: -468px 0;}
	100% {background-position: 468px 0;}
}
.linear-background {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-name: placeHolderShimmer;
	animation-timing-function: linear;
	background: #3b3b47;
	background: linear-gradient(to right, #3b3b47 8%, #545465 18%, #3b3b47 33%);
	background-size: 1000px 104px;
	position: relative;
	overflow: hidden;
	color: #3b3b47;
}
.input-placeholder-loading {
	width: 100%;
	height: 40px;
	border-radius: 0.6rem;
	margin: 0 0 2rem;
}
.label-placeholder-loading {
	height: 20px;
	border-radius: 0.6rem;
	color: #3b3b47;
}

/* notification psx */
/* placeHolder Shimmer */
@-webkit-keyframes showNotificationPsx {
	0% {bottom: -100%;}
	100% {bottom: 10rem;}
}
@keyframes showNotificationPsx {
	0% {bottom: -100%;}
	100% {bottom: 10rem;}
}
@-webkit-keyframes hideNotificationPsx {
	0% {bottom: 10rem;}
	100% {bottom: -100%;}
}
@keyframes hideNotificationPsx {
	0% {bottom: 10rem;}
	100% {bottom: -100%;}
}
.psxnotification {
	position: fixed;
	bottom: -100%;
	left: 50%;
	width: 50%;
	transform: translateX(-50%);
	z-index: 999;
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	background: #6b6346;
	padding: 2rem;
	border-radius: 2rem;
	text-align: center;
}
.psxnotification.show {
	animation-name: showNotificationPsx;
}
.psxnotification.hide {
	bottom: 10rem;
	animation-name: hideNotificationPsx;
}
.psxnotification__text {
	font-weight: 700;
}

