
/**
 * Material icons
 * https://fonts.googleapis.com/icon?family=Material+Icons
 */

@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	src: url(https://web.archive.org/web/20230703054314im_/https://fonts.gstatic.com/s/materialicons/v36/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2) format('woff2');
}

.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
}

.material-icons.material-icons-delete { font-size: 22px; }


/* Main containers */
html, body {
	background: #fff;
	text-align: left;
}

/* Overwrite BS4 font */

html, body, button, input, optgroup, select, textarea, .tooltip, .popover {
	font-family: 'Open Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
}


/* Main layout */

html, body { height: 100%; background: #fff; }


/* Login layout */

.login {
	height: fit-content;
	min-height: 100vh;
	width: 100vw;
	max-width: 100vw;
	overflow-x: hidden;
	background-color: rgb(237, 240, 244);

}

.login #app {
	width: 100%;
    height: 100%;
}

/* The form wrapper */
#login {
	background-color: #fff;
	border-radius: 4px;
	padding: 1rem;
	box-shadow: 0 0 1px 1px rgb(0 0 0 / 5%), 0 1px 2px -2px rgb(0 0 0 / 6%), 0 1px 3px 0 rgb(0 0 0 / 7%);
	margin-bottom: 2rem;
}

	.login__heading {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
		text-align: center;
	}

	.login__logo {
		width: 70px; 
		height: 40px;
		background: url(/web/20230703054314im_/https://www.immoarcenciel.com/crm/assets/base/img/ico-sooprema-blue.svg) left top no-repeat;
		background-size: 100% 100%;
		margin-bottom: .6rem;
		background-position: center;
		background-size: contain;
	}
		.login__heading h2 {
			color: #373737;
			font-size: 22px;
			font-weight: 700;
			line-height: 36px;
			margin: 0; padding: 0;
		}
		
		.login__heading p {
			font-size: 14px;
			line-height: 19px;
			font-weight: 300;
			text-align: left;
			color: #5a5a5a;
			margin: 0; padding: 0;
		}

	.login #content { 
		height: 100%;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}


	@media( min-width: 768px ) {
		.login__heading {
			flex-direction: row;
			text-align: left;
		}

		.login__logo {
			margin-bottom: 0;
			margin-right: .6rem;
		}
	}

		.login #left #logo {
			width: 55px; 
			height: 33px;
			background: url(/web/20230703054314im_/https://www.immoarcenciel.com/crm/assets/base/img/ico-sooprema-blue.svg) left top no-repeat;
			background-size: 100% 100%;
			margin: 48px 0 0 46px;

			margin: 1rem auto 0 0;
			background-position: 1rem center;
			background-size: contain;
			width: 100%;
		}

		.login .outer {
			width: 90%;
			max-width: 504px;
			transition-duration: .25s;
			margin-bottom: auto;
			margin-top: 3vh;
		}

		@media( min-width: 768px ) {
			.login .outer {
				width: 80%;
				margin-top: 15vh;
			}
		}

				.login .inner {
					margin: 0 auto;
				}

	.login .inner label {
		font-size: 13px;
		font-weight: 600;
		font-style: normal;
		font-stretch: normal;
		line-height: normal;
		letter-spacing: normal;
		text-align: left;
		color: #434b52;
	}

	.login .inner .row { margin-bottom: 20px; }
	.login .inner .row.row-label { margin-bottom: 0; }

	.login .inner .row.row-error { color: #fe3b53; margin: 10px 0; }
	.login .inner .row.row-invisible { 
		opacity: 0;
		font-size: 0;
	}

	.login .remember-password-text a { 
		font-weight: 700;
		transition-duration: .25s;
	}

	.login__button {
		box-shadow: 0 0 1px 1px rgb(0 0 0 / 5%), 0 1px 2px -2px rgb(0 0 0 / 6%), 0 1px 3px 0 rgb(0 0 0 / 7%);
		transition-duration: .25s;
	}

	.login__button-wrapper::before {
		position: absolute;
		right: 2rem;
		top: 50%;
		transform: translate(200%, -50%);
		-webkit-transform: translate(200%, -50%);
		font-family: "Material Icons";
		/* content: "\e879"; signin */
		content: "\e5cc";
		color: #fff;
		font-size: 1.4rem;
		transition-duration: .25s;
		opacity: 0;
	}

	.login__button-wrapper:hover::before {
		opacity: 1;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
	}


/* Forgot layout */

.forgot #app {
	width: 1200px; height: 100%;
}

	.forgot #content { height: 100%; }

	.forgot .outer {
		display: table;
		position: absolute;
		width: 100%; height: 85%;
	}

		.forgot .middle {
			display: table-cell;
			vertical-align: middle;
		}

			.forgot .inner {
				width: 550px;
				margin: 0 auto;
			}

			.forgot .inner #logo {
				width: 70px; height: 40px;
				background: #fff url(/web/20230703054314im_/https://www.immoarcenciel.com/crm/assets/base/img/ico-sooprema-blue.svg) 45% 50% no-repeat;
				background-size: 100% 100%;
				margin: 48px 0 50px 215px;
			}

			.forgot .inner .container { padding-left: 0; width: 504px; margin-left: 0; }

			.forgot .inner .row { margin-bottom: 20px; }
			.forgot .inner .row.row-label { margin-bottom: 0; }

			.forgot .inner .app-link-back { display: inline-block; margin-right: 25px; }
			.forgot .inner .app-link-back i { font-size: 20px; width: 20px; height: 20px; vertical-align: bottom; }

			.forgot .inner #forgot { margin-top: 15px; }

/* Forgot styles */

.forgot .inner h2 {
	font-size: 26px;
	font-weight: 700;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #373737;
}

.forgot .inner p {
	font-size: 18px;
	font-weight: 300;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #747678;
}

.forgot .inner label {
	font-size: 13px;
	font-weight: 600;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #434b52;
}

.forgot .inner .no-email {
	color: #fe3b53;
	line-height: 1;
	font-size: 16px;
	margin: 0; padding: 0;
}



/* Recover layout */

.recover #app {
	width: 1200px; height: 100%;
}

	.recover #content { height: 100%; }

	.recover .outer {
		display: table;
		position: absolute;
		width: 100%; height: 85%;
	}

		.recover .middle {
			display: table-cell;
			vertical-align: middle;
		}

			.recover .inner {
				width: 550px;
				margin: 0 auto;
			}

			.recover .inner #logo {
				width: 70px; height: 40px;
				background: #fff url(/web/20230703054314im_/https://www.immoarcenciel.com/crm/assets/base/img/ico-sooprema-blue.svg) 45% 50% no-repeat;
				background-size: 100% 100%;
				margin: 48px 0 35px 215px;
			}

			.recover .inner .container { padding-left: 0; width: 504px; margin-left: 0; }

			.recover .inner .row { margin-bottom: 20px; }
			.recover .inner .row.row-label { margin-bottom: 0; }

			.recover .inner .app-link-back { display: inline-block; margin-right: 25px; }
			.recover .inner .app-link-back i { font-size: 20px; width: 20px; height: 20px; vertical-align: bottom; }

			.recover .inner #recover { margin-top: 15px; }



/* Revover styles */

.recover .inner .error-key,
.recover .inner .error-server {
	font-size: 18px;
	font-weight: bold;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	padding-right: 50px;
	margin-bottom: 25px;
	color: #fe3b53;
}

.recover .inner .error-server {
	font-size: 18px;
	margin-bottom: 15px;
	padding-right: 0;
}

.recover .inner h2 {
	font-size: 26px;
	font-weight: 300;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	padding-right: 50px;
	margin-bottom: 25px;
	color: #373737;
}

.recover .inner p {
	font-size: 18px;
	font-weight: 300;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #747678;
}

.recover .inner p.info {
	text-align: center;
}

.recover .inner p.error-password {
	color: #fe3b53;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
}

.recover .inner label {
	font-size: 13px;
	font-weight: 600;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #434b52;
}

.recover .inner .no-email {
	color: #fe3b53;
	line-height: 1;
	font-size: 16px;
	margin: 0; padding: 0;
}



/* Form elements */

input.app-input {
	width: 489px;
	height: 50px;
	border-radius: 3px;
	background-color: #ffffff;
	border: solid 1px #afafaf;
	font-size: 13px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #373737;
	padding: 0 14px;
}

input.app-input--block {
	display: block;
	width: 100%;
}

input.app-input::placeholder { color: #b9babb; }
input.app-input::-ms-input-placeholder { color: #b9babb; } /* Internet Explorer 10-11 */
input.app-input::-ms-input-placeholder { color: #b9babb; } /* Microsoft Edge */

input.app-input.app-input-error,
input.app-input.app-input-error:focus { border: 1px solid #fe3b53; }
input.app-input.app-input-error::placeholder { color: #fe3b53; }
input.app-input.app-input-error::-ms-input-placeholder { color: #fe3b53; } /* Internet Explorer 10-11 */
input.app-input.app-input-error::-ms-input-placeholder { color: #fe3b53; } /* Microsoft Edge */

input.app-input:focus {
	outline: 0;
	border: solid 1px #2c9dc9;
}

input.app-input:-webkit-autofill {
	-webkit-box-shadow:0 0 0 50px #f7f7f7 inset;
	-webkit-text-fill-color: #373737;
}

input.app-input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 50px #f7f7f7 inset;
	-webkit-text-fill-color: #373737;
}

input.app-button {
	width: 155px;
	height: 40px;
	border-radius: 4px;
	background-color: #2c9dc9;
	border: solid 1px #2c9dc9;
	font-size: 18px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: 1;
	letter-spacing: normal;
	color: #ffffff;
	cursor: pointer;
}

input.app-button--block {
	display: block;
	width: 100%;
}

a.app-link {
	font-size: 13px;
	font-weight: normal;
	font-style: normal;
	font-stretch: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #8a949e;
}

a.app-link:hover {
	color: #373737;
	text-decoration: none;
}

#app-password {
	width: 20px;
	height: 20px;
	font-size: 20px;
	color: #b9babb;
	position: relative;
	left: -15px; top: 0;
	float: right;
	cursor: pointer;
	margin-top: -35px;
}

#app-password.app-password-show { color: #373737; }


/* Loading */
.soopremaloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff8b;
    display: grid;
    place-items: center;
    user-select: none;
    transition-duration: .25s;
	z-index: 999999;
	opacity: 0;
	pointer-events: none;
}

.soopremaloader--loading {
	opacity: 1;
	pointer-events: all;
}

.soopremaloader__inner {
	width: min(100px, 60%);
	height: min(100px, 60%);
	display: flex;
	justify-content: center;
	align-items: center;
}

.soopremaloader__icon {
	width: 90px;
	height: 90px;
	transition-duration: var(--soo-transition-duration);
}

.soopremaloader__icon path:nth-of-type(1) {
	animation: beat 1.3s .3s infinite cubic-bezier(.17,.79,.94,1.02);
}

.soopremaloader__icon path:nth-of-type(2) {
	animation: beat 1.3s infinite cubic-bezier(.17,.79,.94,1.02);
}

@keyframes beat {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.1);
    }

    50%,
    100% {
        transform: scale(1);
    }
}
/*
     FILE ARCHIVED ON 05:43:14 Jul 03, 2023 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 13:32:50 Jul 07, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.357
  exclusion.robots: 0.046
  exclusion.robots.policy: 0.039
  esindex: 0.005
  cdx.remote: 7.091
  LoadShardBlock: 126.038 (3)
  PetaboxLoader3.resolve: 703.586 (2)
  PetaboxLoader3.datanode: 671.724 (5)
  load_resource: 1290.253
  loaddict: 65.354
*/