@charset "utf-8";

@import '../../css/totalis-colorscheme-sapphireblue.css';
/* Custom Font */

@font-face {
	font-family: 'Work Sans', sans-serif;
	src: url('../fonts/WorkSans-LightItalic.woff2') format('woff2'), url('../fonts/WorkSans-LightItalic.woff') format('woff');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Work Sans', sans-serif;
	src: url('../fonts/WorkSans-Light.woff2') format('woff2'), url('../fonts/WorkSans-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url('../fonts/Montserrat-Italic.woff2') format('woff2'), url('../fonts/Montserrat-Italic.woff') format('woff');
	font-weight: normal;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url('../fonts/Montserrat-BoldItalic.woff2') format('woff2'), url('../fonts/Montserrat-BoldItalic.woff') format('woff');
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url('../fonts/Montserrat-MediumItalic.woff2') format('woff2'), url('../fonts/Montserrat-MediumItalic.woff') format('woff');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url('../fonts/Montserrat-LightItalic.woff2') format('woff2'), url('../fonts/Montserrat-LightItalic.woff') format('woff');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url('../fonts/Montserrat-Light.woff2') format('woff2'), url('../fonts/Montserrat-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat', sans-serif;
	src: url('../fonts/Montserrat-SemiBoldItalic.woff2') format('woff2'), url('../fonts/Montserrat-SemiBoldItalic.woff') format('woff');
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}


/* General CSS Rules */

body {
	margin: 0px;
	padding: 0px;
	font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: normal;
	margin: 0px;
	padding: 0px;
}

p {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

a {
	color: #000;
	text-decoration: none;
	outline: none;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
	cursor: pointer;
}

a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none;
	color: #000;
}

ul {
	margin: 0px;
	padding: 0px;
}

li {
	list-style-type: none;
}


/* Login Page CSS */

body.login_body {
	/* background: url(../../images/totalis-bg-login3.gif); */
	background-size: cover;
	height: 100vh;
}


/* Navbar CSS */

.navbar_custom .navbar-brand img {
	max-height: 25px;
	-moz-transition: all .6s ease-in-out;
	-webkit-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.navbar_custom .login_lang_select {
	width: unset;
	margin-left: 0px;
	background-color: rgba(0, 0, 0, 0);
	background-image: url("../../images/down-arrow.svg");
	background-size: 10px;
	color: #ffffff;
	border: none;
	cursor: pointer;
	font-size: 15px;
	font-weight: 400;
	padding-right: 25px;
	letter-spacing: 0.03rem;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	order: 2;
}

.navbar_custom .login_lang_select:hover {
	background-color: rgba(0, 0, 0, 0);
	background-image: url("../../images/down-arrow.svg");
	background-size: 10px;
	color: #e8e8e8;
}

.navbar_custom .login_lang_select:focus {
	box-shadow: none;
}

.navbar_custom .login_lang_select option {
	background-color: #333;
	color: #fff;
}

.navbar_custom .navbar-nav .nav-item {
	padding: 0 12px;
}

.navbar_custom .navbar-nav .nav-link {
	color: var(--tls-basic-light) !important;
	font-weight: 400;
	font-size: 15px;
	padding: 0px;
	letter-spacing: 0.03rem;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.navbar_custom .navbar-nav .nav-link:hover {
	color: var(--tls-basic-light-h) !important;
}

.navbar_custom .navbar-nav .nav-link.active {
	color: var(--tls-basic-light);
}

.navbar_custom .navbar-nav .nav-link:hover {
	color: var(--tls-basic-light);
}

.shrink {
	position: fixed;
	top: 0px;
	width: 100%;
	padding: 0px 0px;
	z-index: 1000;
	background-color: #161616;
	min-height: unset;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.05);
	-moz-transition: all .6s ease-in-out;
	-webkit-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}

.shrink .navbar-brand img {
	max-height: 60px;
	-moz-transition: all .6s ease-in-out;
	-webkit-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
}


/* End Navbar CSS */


/* Login Page Banner CSS Start */

.login_banner_sec {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.login_banner_sec .login_wrap {
	/* margin: 0px;
	padding: 0px;
	position: relative;
	min-height: 100vh;
	display: flex;
    align-items: center;
    justify-content: center; */
}

.login_banner_sec .login_wrap img {
	width: 100%;
	max-height: 930px;
	object-fit: cover;
	object-position: top;
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	opacity: 0.5;
}

.login_banner_sec .login_banner_content {
	/* position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: center;
	align-items: center;
	z-index: 10; */
}

.login_banner_sec .login_banner_content h1 {
	font-size: 36px;
	line-height: 50px;
	color: var(--tls-basic-light);
	font-weight: 300;
}

.login_banner_sec .login_banner_content h2 {
	font-size: 24px;
	line-height: 50px;
	color: #2d9793;
	font-weight: 300;
}

.login_banner_sec .login_banner_content h1 span {
	font-weight: 600;
}

.login_banner_sec .login_banner_content .back_main_btn {
	margin-top: 30px;
}

.login_banner_sec .login_banner_content .back_main_btn a.site_btn {
	font-size: 16px;
	color: #FF8E1D;
	font-weight: 500;
	margin: 0px;
	padding: 0px;
	letter-spacing: .25px;
	border: 1px solid #FF8E1D;
	background-color: #fff;
	padding: 12px 20px;
	display: inline-block;
	border-radius: 5px;
}

.login_banner_sec .login_banner_content .back_main_btn a.site_btn:hover {
	color: #fff;
	background-color: #FF8E1D;
}


/* Login Page Banner CSS End */


/* Login Form CSS Start */

.login_wrapper {
	font-family: 'Mulish', sans-serif;
}

.login_wrapper .login_sec {
	/* max-width: 89%;
	flex: 0 0 89%;
	-ms-flex: 0 0 89%; */
	background: var(--tls-db-side-bg3);
	border-radius: 0;
	padding: 40px;
	position: relative;
	border: 2px solid var(--tls-trans3);
	animation: borderAnm 4s infinite;
	animation-delay: 1s;
	border-radius: 6px;
}


/*@keyframes borderAnm {
  0%   {border-color: rgba(56, 86, 84, 0);}
  75%  {border-color: rgba(56, 86, 84, 1);}
}*/

/* .login_wrapper .login_sec1 {
	max-width: 89%;
	flex: 0 0 89%;
	-ms-flex: 0 0 89%;
	background: #ff000f;
	border-radius: 8px;
	padding: 40px;
	position: relative;
} */

.login_sec1 {
	padding: 15px 15px;
}

/* .login_wrapper .login_sec::after {
	
}

.login_wrapper .login_sec::before {
	
} */

.login_wrapper .login_sec h3 {
	font-size: 30px;
	color: var(--tls-basic-light);
	font-weight: 500;
	letter-spacing: 0.02rem;
}

.login_wrapper .login_sec p {
	font-size: 16px;
	color: var(--tls-basic-light-h);
	font-weight: 500;
	line-height: 1.5;
	margin-top: 8px;
}

.login_wrapper .login_sec a.login_forgotpass {
	text-decoration: none;
	color: var(--tls-basic-light);
	font-size: 14px;
	font-weight: 500;
	margin-right: 0;
}

.login_wrapper .login_sec a.login_forgotpass:hover {
	text-decoration: none;
	color: var(--tls-basic-light-h);
}

.login_wrapper .login_sec .input-field {
	border: 0px solid #003459;
	border-radius: 0;
	color: #003459;
	background: rgba(0, 0, 0, 0) !important;
}

.login_wrapper .login_sec .input-field input.form-control {
	/* border: none;
	outline: none;
	box-shadow: none;
	color: #003459; */
	font-size: 13px;
	background: var(--tls-db-side-bg2);
	color: var(--tls-basic-light);
	border: 1px solid var(--tls-trans4);
	height: 45px;
	margin-top: 6px;
}

.login_wrapper .login_sec .input-field input.form-control:focus {
	box-shadow: none;
}

.login_wrapper .login_sec .input-field span.btn img {
	opacity: 1;
	width: 20px;
}

.login_wrapper .login_sec .input-field input::placeholder {
	color: var(--tls-secondary25);
}

.login_wrapper .login_sec .option {
	display: block;
	position: relative;
	padding-left: 25px;
	cursor: pointer;
	user-select: none;
	margin-left: 0;
}

.login_wrapper .login_sec .option input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.login_wrapper .login_sec .option .checkmark {
	position: absolute;
	top: 1px;
	left: 0;
	height: 15px;
	width: 15px;
	background-color: transparent;
	border-radius: 3px;
	border: 1px solid var(--tls-basic-light);
}

.login_wrapper .login_sec .option input:checked~.checkmark {
	border: 1px solid var(--tls-primary1);
	background-color: var(--tls-primary1);
	transition: 300ms ease-in-out all;
}

.login_wrapper .login_sec .option .checkmark:after {
	content: "\2713";
	position: absolute;
	display: none;
	color: var(--tls-basic-light);
	font-size: 1rem;
}

.login_wrapper .login_sec .option input:checked~.checkmark:after {
	display: block;
}

.login_wrapper .login_sec .option .checkmark:after {
	left: 6px;
	top: -1px;
	width: 5px;
	height: 10px;
}

.login_wrapper .login_sec .login_btn {
	border-radius: 5px;
	width: 100%;
	background: var(--tls-secondary28);
	color: var(--tls-basic-light);
	border: none;
	font-size: 20px;
	padding: 10px 20px;
	letter-spacing: 0.03rem;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.login_wrapper .login_sec .btn.btn-primary:hover {
	color: var(--tls-basic-light);
	background: var(--tls-secondary28-h);
}

.login_wrapper .login_sec .btn.btn-primary:focus {
	box-shadow: none;
}

.login_wrapper .login_sec .option span.rem_check {
	color: var(--tls-basic-light);
	margin-left: 0;
	font-size: 14px;
	letter-spacing: 0.01rem;
}

.login_wrapper .login_sec .option span.rem_check:hover {
	color: var(--tls-basic-light-h);
}

.login_wrapper .login_sec .login_otherlinks {
	width: 100%;
	margin-top: 15px;
}

.login_wrapper .login_sec .login_otherlinks .other_btn {
	background-color: transparent;
	border-radius: 0;
	color: #003459;
	font-size: 13px;
	border-color: #003459;
}


/* Login Form CSS End */


/* Footer CSS */

.login_body footer {
	width: 100%;
	background: #000;
	position: fixed;
	bottom: 0;
	opacity: 0.9;
}

footer .footer_copyright {
	padding: 10px 0px;
	text-align: center;
}

footer .footer_copyright p {
	font-size: 0.70rem;
	font-weight: 400;
	color: var(--tls-basic-light);
	letter-spacing: 0.02rem;
}


/* End Footer CSS */


/* new style */

.other_btn {
	/* width: 31%; */
	font-size: 14px;
	padding: 8px 14px;
	background: var(--tls-basic-light);
	color: var(--tls-secondary5);
	font-weight: 600;
	margin: 5px 5px;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.other_btn:hover {
	background: var(--tls-basic-light);
	color: var(--tls-secondary16-h);
}

.other_btn:focus {
	background: var(--tls-basic-light);
	color: var(--tls-secondary16-h);
	outline: none;
	box-shadow: none;
}


/* Report Covid Modal starts here*/

.ReportCovid_modal-header {
	background: var(--tls-secondary1);
	color: var(--tls-basic-light);
}

.ReportCovid_modal-title svg {
	width: 20px;
	fill: var(--tls-primary1);
	margin-right: 5px;
	float: left;
}

.ReportCovid_modal-title svg {
	fill: var(--tls-primary1);
	margin-right: 8px;
}

.ReportCovid_modal-title {
	font-size: 16px;
	margin-top: 5px;
}

.ReportCovidnavTabs li {
	width: 50%;
	float: left;
	text-align: center;
}

.ReportCovidnavTabs li.nav-item a {
	border: 0;
	font-weight: 700;
	color: var(--tls-secondary7) !important;
	font-size: 15px;
	padding: 15px;
}

.ReportCovidnavTabs li.nav-item a.active {
	border-color: var(--tls-primary1);
	border: 0;
	border-bottom: 2px solid var(--tls-primary1);
	color: var(--tls-secondary5) !important;
	font-size: 15px;
}

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

.Report_covid_question_text,
.Report_absence_question_text {
	font-size: 14px;
	font-weight: 700;
	color: var(--tls-secondary2);
}

.RC_modal_body,
.RA_modal_body {
	height: 650px;
	overflow-y: auto;
}

/*Report covid checkbox styles starts here*/

/* The reportcovid_checkbox_container */
.reportcovid_checkbox_container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	margin-right: 50px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	display: inline-block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.reportcovid_checkbox_container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.reportcovid_checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	border-radius: 5px;
	border: 2px solid var(--tls-secondary9);
	background-color: var(--tls-basic-light);
}

/* On mouse-over, add a grey background color */
.reportcovid_checkbox_container:hover input~.reportcovid_checkmark {
	background-color: var(--tls-secondary18);
}

/* When the checkbox is checked, add a blue background */
.reportcovid_checkbox_container input:checked~.reportcovid_checkmark {
	background-color: var(--tls-basic-light);
}

/* Create the reportcovid_checkmark/indicator (hidden when not checked) */
.reportcovid_checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the reportcovid_checkmark when checked */
.reportcovid_checkbox_container input:checked~.reportcovid_checkmark:after {
	display: block;
}

/* Style the reportcovid_checkmark/indicator */
.reportcovid_checkbox_container .reportcovid_checkmark:after {
	left: 5px;
	top: 1px;
	width: 7px;
	height: 12px;
	border: solid var(--tls-primary1);
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*Report covid checkbox ends here*/
.report_covid_temperature_form_control {
	width: 50%;
	font-size: 16px;
	font-weight: 700;
	padding: 10px 0.5rem;
}

.RC_Datewidth {
	width: 50%;
}

.report_covid_date_form_control,
.report_absence_date_form_control {
	font-size: 16px;
	font-weight: 700;
	padding: 10px 0.5rem;
}

/*Remove arrows from input type number*/
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

/*Remove arrows from input type number*/
.report-covid-note-text {
	color: var(--tls-secondary2);
	font-size: 14px;
	font-style: italic;
}

.btn-RP-cancel-modal_primary_btn {
	background-color: transparent;
	font-size: 14px;
	border: 2px solid var(--tls-primary1);
	color: var(--tls-primary1);
}

.btn-RP-cancel-modal_primary_btn:hover {
	background-color: var(--tls-primary1);
	border: 2px solid var(--tls-primary1);
	color: var(--tls-basic-light);
}

.btn-RP-save-secondary {
	font-size: 14px;
	background-color: var(--tls-primary1);
	border: 2px solid var(--tls-primary1);
	color: var(--tls-basic-light);
}

.btn-RP-save-secondary:hover {
	background-color: var(--tls-primary1-h);
	border: 2px solid var(--tls-primary1-h);
	color: var(--tls-basic-light);
}

.RC_diagnose_question_width,
.RA_question_width {
	width: 48%;
	float: left;
}

.RC_diagnose_question-margin,
.RA_question-margin {
	margin-left: 2%;
}

.report_covid_date_diagnose_form_control {
	font-size: 16px;
	font-weight: 700;
	padding: 10px 0.5rem;
	width: 100%;
}

.report_covid_date_diagnose_form_control_inputText {
	font-size: 16px;
	font-weight: 700;
	padding: 10px 0.5rem;
	width: 50%;
}

.RC_Documents_upload,
.RC_Documents_img_upload,
.RA_Documents_upload,
.RA_Documents_img_upload {
	width: 100%;
	height: 130px;
	border: 1px solid var(--tls-secondary6);
	border-style: dashed;
	text-align: center;
}

.RC_files_upload_text,
.RA_files_upload_text {
	font-weight: 700;
	font-size: 14px;
}

.RC_Documents_upload svg,
.RA_Documents_upload svg {
	display: block;
	margin: auto;
	width: 100px;
	height: 80px;
}

.RC_files_upload_Subtext,
.RA_files_upload_Subtext {
	color: var(--tls-secondary4);
	font-size: 13px;
}

.RC_Documents_img_upload svg,
.RA_Documents_img_upload svg {
	margin: auto;
	width: 70px;
	margin-top: 20px;
	fill: var(--tls-primary1);
	opacity: 0.5;
}

.RC_upload_documents_file,
.RA_upload_documents_file {
	position: absolute;
	height: 130px;
	width: 360px;
	left: 0;
	opacity: 0;
	cursor: pointer;
	top: 0;
}

.RC_click_photo_text,
.RA_click_photo_text {
	font-size: 14px;
	font-weight: 700;
	margin-top: 10px;
}

.RC_textarea_height,
.RA_textarea_height {
	height: 100px;
	overflow-y: auto;
	resize: none;
	;
}

.RC_calendar_position {
	top: 10px;
	right: 6px;
	background: var(--tls-basic-light);
}

.RC_Datewidth_diagnose {
	width: 100%;
}

.btn-RC_phone {
	border: 1px solid var(--tls-secondary11);
}

.input-group .report_covid_date_diagnose_form_control {
	border-right: 0;
}

.btn-RC_phone {
	border-left: 0
}

.btn-RC_phone svg {
	fill: var(--tls-primary1);
}


/* Report Covid Modal ends here*/
/* Scn QR Code Modal CSS */

/* Edit phone number modal css start */

.scan_qrcode .modal-dialog {
	max-width: 650px;
}

.scan_qrcode .modal-content {
	border-radius: 8px;
}

.scan_qrcode .modal-header {
	border-bottom: 0px;
	padding: 15px 15px;
	background-color: var(--tls-secondary1);
	border-radius: 6px 6px 0px 0px;
}

.scan_qrcode .modal-header .btn-close {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.6799 1L1.67993 17M17.6799 17L1.67993 1L17.6799 17Z' stroke='white' stroke-opacity='0.5' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	opacity: .75;
}

.scan_qrcode .modal-header .btn-close:hover {
	opacity: 1;
}

.scan_qrcode .modal-title {
	font-size: 22px;
	font-weight: 500;
	color: var(--tls-basic-light);
}

.scan_qrcode .modal-title svg {
	fill: var(--tls-primary1);
	width: 28px;
	position: relative;
	top: -2px;
	margin-right: 2px;
}

.scan_qrcode .modal-body {
	padding: 25px 15px 15px;
}

.scan_qrcode .modal-body .scanqr_content {
	display: flex;
	align-items: center;
	padding: 0px 40px;
}

.scan_qrcode .modal-body .scanqr_content .content_details {
	margin-left: 20px;
}


.scan_qrcode .modal-body .scanqr_content .content_details h6 {
	font-size: 20px;
	font-weight: 500;
	font-family: 'Work Sans';
	color: var(--tls-secondary1);
}

.scan_qrcode .modal-body .scanqr_content .content_details p {
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	font-family: 'Work Sans';
	color: var(--tls-secondary10);
	margin: 10px 0px 0px;
}

.scan_qrcode .modal-body .scanqr_area {
	width: 100%;
	height: 325px;
	overflow: hidden;
	/* background-color: var(--tls-secondary5); */
	margin: 30px 0px 0px;
	/* display: flex;
	align-items: center;
	justify-content: center; */
}

.scan_qrcode .modal-body .scanqr_area #qr-shaded-region {
	border-width: 34px 180px !important;
}

.scan_qrcode .modal-body .scanqr_area #qr-shaded-region>div {
	background-color: rgb(0, 98, 226) !important;
}

@media(max-width:480px) {
	.scan_qrcode .modal-body .scanqr_content {
		flex-wrap: wrap;
		padding: 0px;
		text-align: center;
		justify-content: center;
	}

	.scan_qrcode .modal-body .scanqr_content img {
		width: 60px;
	}

	.scan_qrcode .modal-body .scanqr_content .content_details {
		margin-left: 0px;
		margin-top: 20px;
	}

	.scan_qrcode .modal-title {
		font-size: 18px;
	}

	.scan_qrcode .modal-title svg {
		width: 25px;
	}

	.scan_qrcode .modal-body .scanqr_content .content_details h6 {
		font-size: 17px;
	}

	.scan_qrcode .modal-body .scanqr_content .content_details p {
		font-size: 15px;
		line-height: 22px;
	}
}

/*Report Absence Style starts here*/


.ReportAbsence_modal-header {
	background: var(--tls-secondary1);
	color: var(--tls-basic-light);
}

.ReportAbsence_modal-title svg {
	width: 20px;
	fill: var(--tls-primary1);
	margin-right: 5px;
	float: left;
}

.ReportAbsence_modal-title svg {
	fill: var(--tls-primary1);
	margin-right: 8px;
}

.ReportAbsence_modal-title {
	font-size: 16px;
	margin-top: 5px;
}

.ReportAbsencenavTabs li {
	width: 50%;
	float: left;
	text-align: center;
}

.ReportAbsencenavTabs li.nav-item a {
	border: 0;
	font-weight: 600;
	color: var(--tls-secondary7) !important;
	font-size: 15px;
	padding: 15px;
}

.ReportAbsencenavTabs li.nav-item a.active {
	border-color: var(--tls-primary1);
	border: 0;
	border-bottom: 2px solid var(--tls-primary1);
	color: var(--tls-secondary5) !important;
	font-size: 15px;
}

.Report_absence_question_text_font_small {
	font-size: 12px;
}

.RA_Datewidth {
	width: 100%;
}

.RA_base_text {
	font-size: 16px;
	font-weight: 500;
	color: var(--tls-secondary7);
	text-align: center;
	width: 80%;
	display: block;
	margin: auto;
}

.RA_select_dropdown {
	font-size: 15px;
	font-weight: 700;
	padding: 11px 0.5rem;
	width: 96%;
}

.RA_select_dropdown {
	background-image: url(../../../images/blue_dropdown_arrow.svg);
}

.report_covid_date_diagnose_form_control:focus,
.report_absence_date_diagnose_form_control_inputText:focus,
.report_covid_date_form_control:focus,
.report_absence_date_form_control:focus {
	color: var(--tls-primary4);
	background-color: var(--tls-basic-light);
	border-color: #ced4da;
	outline: 0;
	box-shadow: none;
}

.RA_modal_footer,
.RC_modal-footer {
	justify-content: center;
}

.RA_banner svg {
	width: 70%;
	position: relative;
	left: 15%;
}

input[type="time"]::-webkit-calendar-picker-indicator {
	background: none;
	display: none;
}

.btn-RC_phone {
	height: 46px;
}

/*Report Absence Style ends here*/



/* new login styles  */
.login_sec {
	position: relative;
	/* min-height: 400px; */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}


.step-loader-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(4px);
	background-color: rgba(255, 255, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.spinner-wrapper {
	position: relative;
	width: 48px;
	height: 48px;
}

.spinner-bg {
	width: 100%;
	height: 100%;
	border: 9px solid #ffffff;
	border-radius: 50%;
	box-sizing: border-box;
}

.spinner-arc {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 9px solid transparent;
	border-top: 9px solid #e16e38;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	box-sizing: border-box;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.step {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}


#step-3 .step-loader-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(4px);
	background-color: rgba(0, 0, 0, 0.388);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}

.bg-back {
	background-color: #f5f5f5;
}

.bg-orange {
	background-color: #e16e38;
}

.user-locked-fs {
	font-size: 80px;
	color: #fff;
}

.user-icon {
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.input-field {
	position: relative;
}

.input-icon-right {
	position: absolute;
	right: 15px;
	font-size: 1rem;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2457c4;
	pointer-events: none;
}

.captcha-box {
	position: relative;
	overflow: hidden;
}

.captcha-img-wrapper {
	max-width: 100%;
	max-height: 48px;
	display: flex;
	align-items: center;
}

.captcha-refresh-btn {
	position: absolute;
	top: 19px;
	right: 15px;
}

.captcha-img {
	display: block;
	height: auto;
	max-height: 48px;
	width: auto;
}

.next-label {
	display: inline-block;
	margin-right: 0.5rem;
}

.chev-mt {
	margin-top: 0.2rem;
}
.colored-text{
	color: #0F2556;
}
.vertical-separator{
	position: absolute;
	top: 6px;
	bottom: 0;
	right: 46px;
	width: 1px;
	background-color: #ccc;
	height: 90%;
}

.nav-loginbox {
  margin: 5px;        
}

.nav-loginbox a {
  display: inline-block;   
  text-decoration: underline;
  color: #ffffff;
   font-weight: 100; 
}
.nav-loginbox a { margin-right: 12px; }
.nav-loginbox a:last-child { margin-right: 0; }