:root {
	--sitePrimaryColor: #ff6b09;
	--transition: all 0.3s ease-in-out;
}

html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
	font-family: "Outfit", sans-serif;
	line-height: 25px;
	outline: none;
}
body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: var(--peraColor);
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	overflow: hidden;
}
a,
a:hover {
	color: inherit;
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Outfit", sans-serif;
}
.d-none {
	display: none !important;
}
/*=============================
Button Style
=============================*/
.frm_btn {
	display: inline-block;
	line-height: 50px;
	border: none;
	color: #ffffff;
	text-align: center;
	font-weight: 400;
	padding: 0 30px;
	outline: none;
	cursor: pointer;
	width: 120px;
	height: 50px;
	border-radius: 25px;
	background-color: var(--sitePrimaryColor);
	transition: 0.5s;
	font-size: 14px;
}
button.frm_btn:focus {
	border: 1px solid var(--sitePrimaryColor) !important;
	background-color: #0000;
	color: var(--sitePrimaryColor);
	outline: none;
}
button.frm_btn {
	position: relative;
	overflow: hidden;
}
.frm_btn:before {
	content: "";
	width: 0;
	height: 100%;
	background: #000;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.05;
	transition-duration: 1s;
	-webkit-transition-duration: 1s;
	transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}
.frm_btn:hover:before {
	width: 100%;
}
.frm_btn:focus:before {
	display: none;
}

/*=============================
 Font-Family Style
=============================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;500;600;700;800;900&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

/*=============================
 Login Style
=============================*/
.body_wrapper {
	height: 100vh;
}
.auth_log img {
	max-width: 230px;
	height: auto;
	object-fit: contain;
}
.formify_body {
	height: 100%;
	overflow-y: auto;
	width: 100%;
	position: relative;
	z-index: 1;
	background-image: url(../images/login_bgt.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.f_content {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
}
.custom_container {
	max-width: 1480px;
}
.login_left_img {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.formify_form_inner_content::before {
	position: absolute;
	content: "";
	width: 1070px;
	height: 553px;
	border-radius: 20px;
	background-image: url(../images/login_inner_bg.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.auth_loginForm {
	max-width: 448px;
	width: 100%;
	padding: 65px 60px 35px;
	overflow: hidden;
	height: auto;
	border-radius: 20px;
	background-color: #ffffff;
	margin-left: 40px;
}
.login_left_img img {
	max-width: 546px;
	margin: 0 -54px;
}
.auth_log img {
	max-width: 230px;
	height: auto;
	object-fit: contain;
}
.auth_loginForm h1 {
	margin: 35px 0 10px 0;
	text-transform: capitalize;
	font-size: 22px;
	line-height: normal;
	color: #454b63;
	font-weight: 300;
	font-family: "Outfit", sans-serif;
}
.auth_loginForm h1 span {
	color: var(--sitePrimaryColor);
	font-weight: 700;
	font-size: 22px;
}
.auth_loginForm h6 {
	margin: 0 0 15px 0;
	font-size: 15px;
	color: #b0b2bd;
	line-height: 1.4;
	font-weight: 400;
}
.auth_inputWrapper {
	overflow: hidden;
	margin-bottom: 8px;
}
.auth_input {
	background-color: #fff;
	padding: 12px 0 12px;
	position: relative;
	margin-bottom: 19px;
	border-bottom: 1px solid #e5e5e5;
}
.auth_input label {
	line-height: 1.4;
	padding-left: 2px;
	font-size: 15px;
	color: #b0b2bd;
}
.auth_input input {
	width: 100%;
	border: none;
	background-color: transparent;
	color: var(--peraColor);
	font-size: 16px;
	padding: none;
	outline: none;
	height: 30px;
	padding: 0 50px 0 0;
}
img.log_form_svg {
	position: absolute;
	bottom: 14px;
	right: 6%;
}
.auth_remember {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: capitalize;
	margin-bottom: 20px;
}
.auth_remember a {
	font-size: 15px;
	line-height: 1.4;
	color: #b0b2bd;
	font-family: "Outfit";
	font-weight: 400;
}
.auth_loginForm p.get_start {
	line-height: 1.4;
	font-size: 15px;
	color: #b0b2bd;
	margin-top: 30px;
}
.auth_loginForm p.get_start a {
	color: var(--sitePrimaryColor) !important;
}
.auth_input > input::placeholder {
	font-size: 15px;
	color: #b0b2bd;
}
.auth_input > input {
	line-height: 1.4;
	font-size: 15px;
	color: #66738b;
	font-weight: 400;
}
.auth_remember .checkbox label {
	font-size: 15px;
	line-height: 1.4;
	color: #b0b2bd;
	margin-left: 7px;
}
.fr_vecter_shap_main {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.auth_remember a:hover {
	color: var(--sitePrimaryColor);
}
.fr_preloader .loader img {
    width: 166px;
    height: 34px;
    object-fit: contain;
    margin: 0 auto;
}
img.fr_v_1 {
	position: absolute;
	top: 5%;
	left: -150px;
	transition: 0.8s;
	animation: 6s installation infinite alternate;
	overflow: hidden;
}
.active_animation img.fr_v_1 {
	left: 2.8%;
}
img.fr_v_2 {
	position: absolute;
	bottom: 5%;
	left: -150px;
	transition: 0.8s;
	animation: 6s installation infinite alternate;
	overflow: hidden;
}
.active_animation img.fr_v_2 {
	left: 4.8%;
}
img.fr_v_3 {
	position: absolute;
	bottom: 5%;
	left: -150px;
	transition: 0.8s;
	animation: 6s installation infinite alternate;
	overflow: hidden;
}
.active_animation img.fr_v_3 {
	left: 41.3%;
}
img.fr_v_4 {
	position: absolute;
	bottom: 10%;
	right: -150px;
	transition: 0.8s;
	animation: 6s installation infinite alternate;
	overflow: hidden;
}
.active_animation img.fr_v_4 {
	right: 4.3%;
}

img.fr_v_5 {
	position: absolute;
	bottom: 46%;
	right: -150px;
	transition: 0.8s;
	animation: 6s installation infinite alternate;
	overflow: hidden;
}
.active_animation img.fr_v_5 {
	right: 17.3%;
}

img.fr_v_6 {
	position: absolute;
	top: 4%;
	right: -150px;
	transition: 0.8s;
	animation: 6s installation infinite alternate;
	overflow: hidden;
}
.active_animation img.fr_v_6 {
	right: 5%;
}
img.fr_v_7 {
	position: absolute;
	top: 4%;
	left: -150px;
	transition: 0.8s;
	animation: 6s installation infinite alternate;
	overflow: hidden;
}
.active_animation img.fr_v_7 {
	left: 50%;
}
img.fr_v_8 {
	position: absolute;
	top: 30%;
	right: -150px;
	transition: 0.8s;
	animation: 6s installation infinite alternate;
	overflow: hidden;
}
.active_animation img.fr_v_8 {
	left: 30%;
}
@keyframes installation {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}
img.unedr_img {
	position: absolute;
	z-index: 9;
	animation: 6s installation infinite alternate;
}
img.inner_vc_1 {
	position: absolute;
	top: -21%;
	right: 0%;
}
img.inner_vc_2 {
	position: absolute;
	left: 6%;
	top: -9%;
}
img.inner_vc_3 {
	position: absolute;
	bottom: -17%;
	left: 13%;
}
img.inner_vc_4 {
	position: absolute;
	right: -5%;
	bottom: -10%;
}
.inner_vc_1 {
	animation: 6s fr_anim_1 infinite alternate;
}

@keyframes fr_anim_1 {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(10px);
	}
}
.inner_vc_2 {
	animation: 6s fr_anim_2 infinite alternate;
}
@keyframes fr_anim_2 {
	0% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(-10px);
	}
}
.inner_vc_3 {
	animation: 6s fr_anim_3 infinite alternate;
}
@keyframes fr_anim_3 {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}
.inner_vc_4 {
	animation: 6s fr_anim_4 infinite alternate;
}
@keyframes fr_anim_4 {
	0% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(-10px);
	}
}
.main_icon {
	position: absolute;
	width: 434px;
	height: 310px;
}

/*=============================
 Login Checkbox Style
=============================*/
.fr_checkbox label {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 15px;
	line-height: 1.4;
	color: #b0b2bd;
}
.fr_checkbox label:before {
	content: "";
	-webkit-appearance: none;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 11px;
	width: 16px;
	height: 16px;
	border-radius: 3px;
	background-color: #ffffff;
	border: 2px solid #e5e5e5;
}
.fr_checkbox input:checked + label:after {
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 7px;
	width: 5px;
	height: 12px;
	border: solid var(--sitePrimaryColor);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.fr_checkbox input {
	display: none;
}

/*=============================
NotificationPopup Style
=============================*/
.Rectangle_3 {
	border-radius: 20px;
	background-color: rgb(255, 255, 255);
	position: absolute;
	left: 1177px;
	top: 135px;
	width: 541px;
	height: 680px;
	z-index: 9;
}
/* .notification_open .notificationPopup {
    right: 48%;
} */
/* .notificationPopup:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 40px;
    border-radius: 3px;
    background-color: #49d642;
}
.notificationPopup.success:before{
    background-color: #49d642;
}
.notificationPopup.error:before{
    background-color: #ff2448;
}
.notificationPopup .noti_icon {
    display: flex;
}
.notificationPopup .noti_msg {
    margin-left: 14px;
}
.notificationPopup .close {
    position: absolute;
    top: 8px;
    right: 12px;
    line-height: 9px;
    cursor: pointer;
}
.notificationPopup .noti_msg .noti_heading {
    font-weight: 600;
    font-size: 16px;
    color: #ff2448;
}
.notificationPopup .noti_msg>span {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #b0b2bd;
    font-weight: 300;
    padding-top: 7px;
} */
.Oops__Something_went_wrong {
	font-size: 16px;
	font-family: "Inter", sans-serif;
	color: rgb(255, 62, 90);
	line-height: 1.5;
	text-align: left;
	position: absolute;
	left: 1688.162px;
	top: 886.546px;
	z-index: 82;
}
.formify_form_inner_content {
	position: relative;
}
/* .notificationPopup {
    position: absolute;
    z-index: 1;
    border-radius: 10px;
    background-color: #fff;
    padding: 12px 10px;
    overflow: hidden;
    max-width: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-4%, 260%);
}
.notificationPopup.success .noti_msg .noti_heading{
	color:#49d642;
} */

/*=============================
NotificationPopup Style
=============================*/
.fr_notification {
	position: fixed;
	right: -515px;
	top: 25px;
	background-color: #fff;
	padding: 4px 5px;
	overflow: hidden;
	max-width: 396px;
	width: 100%;
	z-index: 1;
	border-radius: 6px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	box-shadow: 0 0.25rem 1.75rem rgba(30, 34, 40, 0.07) !important;
}
.notification_open .fr_notification {
	right: 25px;
}
.notification_hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 6px;
	background-color: #eaedf3;
	padding: 10px 20px;
}
.fr_notification .notification_hd h6 {
	font-size: 18px;
	line-height: 1.4;
	color: #202b3f;
	font-weight: bold;
	font-family: "Outfit";
	margin: 0;
}
.fr_nt_content_item p {
	font-size: 14px;
	line-height: 1.4;
	color: #778aab;
	font-family: "Outfit";
	margin: 0;
}
button.notification_btn {
	width: 60px;
	height: 32px;
	border-radius: 16px;
	background-color: #ff6b09;
	outline: none;
	box-shadow: none;
	border: 0;
	color: #fff;
}
.notification_content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 25px;
	flex-wrap: wrap;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-image: linear-gradient(#d6eaf0, #edd9d2);
}
.preloader.finance-demo .loader span {
	background-color: #fff;
}
.preloader.loaderout {
	top: 0;
	-webkit-transition: all 0.8s ease-in-out;
	-moz-transition: all 0.8s ease-in-out;
	-o-transition: all 0.8s ease-in-out;
	-ms-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
	opacity: 0;
	visibility: hidden;
}
.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 80px;
	text-transform: uppercase;
	line-height: 80px;
	text-align: center;
	color: #fff;
	font-size: 2em;
	letter-spacing: 10px;
	overflow: hidden;
	font-weight: 400;
}
.loader span {
	position: absolute;
	background: var(--sitePrimaryColor);
}
.loader span.anim_1 {
	width: 100%;
	height: 4px;
	top: 0;
	left: -100%;
	animation: animate1 2s linear infinite;
	border-radius: 100%;
}
@keyframes animate1 {
	0% {
		left: -100%;
	}
	20% {
		left: 0;
	}
	40% {
		left: 100%;
	}
	60% {
		left: 100%;
	}
	80% {
		left: 100%;
	}
	100% {
		left: 100%;
	}
}
.loader span.anim_2 {
	width: 4px;
	height: 100%;
	right: 0;
	top: -100%;
	animation: animate2 2s linear infinite;
	border-radius: 100%;
}
@keyframes animate2 {
	0% {
		top: -100%;
	}
	20% {
		top: -100%;
	}
	40% {
		top: 0%;
	}
	60% {
		top: 100%;
	}
	80% {
		top: 100%;
	}
	100% {
		top: 100%;
	}
}
.loader span.anim_3 {
	width: 100%;
	height: 4px;
	bottom: 0;
	right: -100%;
	animation: animate3 2s linear infinite;
	border-radius: 100%;
}
@keyframes animate3 {
	0% {
		right: -100%;
	}
	20% {
		right: -100%;
	}
	40% {
		right: -100%;
	}
	60% {
		right: 0;
	}
	80% {
		right: 100%;
	}
	100% {
		right: 100%;
	}
}
.loader span.anim_4 {
	width: 4px;
	height: 100%;
	left: 0;
	bottom: -100%;
	animation: animate4 2s linear infinite;
	border-radius: 100%;
}
@keyframes animate4 {
	0% {
		bottom: -100%;
	}
	20% {
		bottom: -100%;
	}
	40% {
		bottom: -100%;
	}
	60% {
		bottom: -100%;
	}
	80% {
		bottom: 0%;
	}
	100% {
		bottom: 100%;
	}
}

.fr_notification.lr_success h6 {
	color: #3fd639;
}
.fr_notification.lr_success .notification_hd {
	background-color: #3fd6391f;
}

.fr_notification.lr_error h6 {
	color: #ff0000;
}
.fr_notification.lr_error .notification_hd {
	background-color: #ff000017;
}

@media (min-width: 1025px) and (max-width: 1200px) {
	.login_left_img img {
		max-width: 480px;
		margin: 0 -15px;
	}
	.auth_loginForm {
		margin-left: 0px;
	}

	.main_icon {
		width: 480px;
	}
	.formify_form_inner_content::before {
    width: 990px;
    }

}
@media (min-width: 992px) and (max-width: 1024px) {
	.main_icon {
		width: 400px;
	}
	.main_icon img {
		max-width: 95px !important;
	}
	img.inner_vc_1 {
		top: -16px;
	}
	img.inner_vc_2 {
		top: 13px;
	}
	img.inner_vc_4 {
		right: -5px;
		bottom: 10px;
	}
	img.inner_vc_3 {
		bottom: -3px;
		left: 13%;
	}
	.fr_vecter_shap_main {
		display: none;
	}
	.custom_container {
		max-width: 100%;
	}
	.formify_form_inner_content::before {
		max-width: 859px;
	}
	.login_left_img img {
		max-width: 400px;
		margin: 0 -8px;
	}
	.auth_loginForm {
		margin-left: 0;
		height: auto;
		max-width: 379px;
		padding: 46px 35px 26px;
	}
	.auth_loginForm {
		margin-left: 0;
	}

	/*.formify_form_inner_content::before {*/
	/*	background-size: cover;*/
	/*}*/
}
@media (min-width: 768px) and (max-width: 991px) {
	button.notification_btn {
		margin-top: 10px;
	}
	.fr_notification {
		width: 350px;
	}
	.main_icon {
		width: 380px;
	}
	.main_icon img {
		max-width: 95px !important;
	}
	img.inner_vc_1 {
		top: -16px;
	}
	img.inner_vc_2 {
		top: 13px;
	}
	img.inner_vc_4 {
		right: -5px;
		bottom: 10px;
	}
	img.inner_vc_3 {
		bottom: -3px;
		left: 13%;
	}
	.formify_form_inner_content::before {
		background-size: cover;
	}
	.fr_vecter_shap_main {
		display: none;
	}
	.custom_container {
		max-width: 100%;
	}
	.formify_form_inner_content::before {
		max-width: 100%;
	}
	.login_left_img img {
		max-width: 380px;
		margin: 0 -23px;
	}
	.auth_loginForm {
		margin-left: 0;
		height: auto;
		max-width: 100%;
	}
	.auth_loginForm {
		padding: 46px 35px 26px;
		margin-left: 0;
	}
}
@media (max-width: 767px) {
	button.notification_btn {
		margin-top: 10px;
	}
	.fr_notification {
		width: 324px;
	}
	.fr_vecter_shap_main {
		display: none;
	}
	.custom_container {
		max-width: 100%;
	}
	.formify_form_inner_content::before {
		display: none;
	}
	.login_left_img {
		display: none;
	}
	.auth_loginForm {
		margin: 0 auto;
		height: auto;
		padding: 32px 24px 25px;
	}
}
@media (max-width: 575px) {
	button.notification_btn {
		margin-top: 10px;
	}
	.fr_notification {
		width: 268px;
	}
	.auth_remember {
        flex-wrap: wrap;
        gap: 5px;
    }
}
