@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap");

@import url("https://fonts.googleapis.com/icon?family=Material+Icons");

body {
	font-family: 'IBM Plex Sans', sans-serif;
	margin: 0;
	color: #2d5477;
	line-height: 1.7;
}

.bodyDiv {
	width: 60rem;
	margin: auto;
}

.logo {
	height: 8rem;
	margin-left: 2rem;
	margin-top: -1rem;
}

.card {
	width: 40rem;
	padding: 5rem;
	height: auto;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.35);
	background-color: white;
	margin: 5rem auto;
}

.label {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: normal;
	font-size: 1rem;
	line-height: 1.38;
	color: #2d5477;
}

.input-group {
	display: flex;
	flex-direction: column-reverse;
	margin-top: 1.25rem;
	max-width: 40rem;
}

input:focus+label {
	font-weight: 500;
	color: #2b8bff;
}

input[type=text]:focus{
	outline: none;
	border: 1px solid #2b8bff;
	font-size: 1rem;
	font-weight: normal;
}

input[type=text] {
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.35;
	color: #2d5477;
	-webkit-border-radius: 0.188rem;
	-moz-border-radius: 0.188rem;
	border-radius: 0.188rem;
	border: solid 1px #2d5477;
	padding: 0.625rem;
	outline: none;
	font-family: 'IBM Plex Sans', sans-serif;
}
textarea:focus+label {
	font-weight: 500;
	color: #2b8bff;
}
textarea:focus{
	outline: none;
	border: 1px solid #2b8bff;
	font-size: 1rem;
	font-weight: normal;
}
textarea {
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.35;
	color: #2d5477;
	-webkit-border-radius: 0.188rem;
	-moz-border-radius: 0.188rem;
	border-radius: 0.188rem;
	border: solid 1px #2d5477;
	padding: 0.625rem;
	outline: none;
	font-family: 'IBM Plex Sans', sans-serif;
	height: 10rem;
}
label {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.33;
	text-align: left;
	color: #2d5477;
	margin-bottom: 0.5rem;
}

.primaryButton {
	background: #466fb4;
	right: 0;
	-webkit-border-radius: 0.188rem;
	-moz-border-radius: 0.188rem;
	border-radius: 0.188rem;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.1;
	text-align: center;
	color: #fff;
	border: none;
	padding: 0.75rem 1rem;
	cursor: pointer;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	    min-width: 8rem;
}

.primaryButton:hover {
	background: #113E66;
}

.negativeButton {
	background: #FFFFFF;
	right: 0;
	-webkit-border-radius: 0.188rem;
	-moz-border-radius: 0.188rem;
	border-radius: 0.188rem;
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.1;
	text-align: center;
 	color: #2d5477; 
	border: 1px solid #2d5477;
	padding: 0.75rem 1rem;
	cursor: pointer;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	    min-width: 8rem;
}

.negativeButton:hover {
	opacity:0.7
}
input[type="button"]:disabled , button:disabled{
	cursor: not-allowed;
	}
	
	/* Radiobutton CSS starts */
/* The container */
.Radiocontainer {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 300;
	font-style: normal;
	font-stretch: normal;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	padding-top: 3px;
}

/* Hide the browser's default radio button */
.Radiocontainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.Radiocheckmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 24px;
	background-color: #dbdbd7;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.Radiocontainer:hover input                        ~ .Radiocheckmark {
	background-color: #ccc;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.Radiocheckmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.Radiocontainer input:checked                        ~ .Radiocheckmark:after
	{
	display: block;
}

/* Style the indicator (dot/circle) */
.Radiocontainer .Radiocheckmark:after {
	top: 4px;
	left: 4px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #113e66;
}
/* Radiobutton CSS ends */
/* Checkbox style starts */
/* The checkBoxContainer */
.checkBoxContainer {
	display: block;
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.75rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/* On mouse-over, add a grey background color */
.checkBoxContainer input        ~ .checkBoxCheckmark {
	background-color: #ccc;
}
/* Hide the browser's default checkbox */
.checkBoxContainer input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkBoxCheckmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 1.25rem;
	width: 1.25rem;
	background-color: #e7edf5;
}

/* Create the checkBoxCheckmark/indicator (hidden when not checked) */
.checkBoxCheckmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkBoxCheckmark when checked */
.checkBoxContainer input:checked ~ .checkBoxCheckmark:after {
	display: block;
}

/* Style the checkBoxCheckmark/indicator */
.checkBoxContainer .checkBoxCheckmark:after {
	left: 0.45rem;
	top: 0rem;
	width: 0.25rem;
	height: 0.9rem;
	border: 1px solid #2d5477;
	border-width: 0 0.188rem 0.188rem 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* Checkbox style ends */
/* Slider style starts */
/* The .slider class is for the range inputs. Set the z-index high so its on top. */
.slider {
	position: absolute;
	left: 0rem;
	top: 0rem;
	overflow: visible;
	z-index: 10;
}

/* slidershell exists only to provide a positioning context for the range input and other elements.*/
.slidershell {
	border: 0 none;
	position: relative;
	left: 0rem;
	top: 0rem;
	overflow: visible;
}

/* .slidertrack is the visible track on which the user drags the thumb button. */
.slidertrack {
	border-radius: 1rem;
	position: absolute;
	background-color: #e7ebef;
	/* 	z-index: -1; */
}

/* .sliderfill adds color (or a gradient as seen here) to the track as the user drags the thumb. */
.sliderfill {
	border-radius: 1rem;
	position: absolute;
	pointer-events: none;
	background: #a9b8c6;
	z-index: 1;
}

/* .sliderthumb can be any css you like including an image. The dimensions must match those found in the rule for input[type=range]::-webkit-slider-thumb. */
.sliderthumb {
	width: 1.5rem;
	height: 1.5rem;
	background-size: 1.5rem 1.5rem;
	background-position: 0rem 0rem;
	background-repeat: no-repeat;
	background-color: white;
	position: absolute;
	border-radius: 50%;
	left: 0rem;
	top: 0rem;
	border: 0 none;
	padding: 0rem;
	margin: 0rem;
	text-align: center;
	pointer-events: none;
	z-index: 1;
	border: 0.15rem solid #2d5477;
	cursor: pointer;
}

/* .slidervalue can be styled as you see fit */
.slidervalue {
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	color: #2b8bff;
	position: absolute;
	left: 0rem;
	top: 0rem;
	border: 0 none;
	padding: 0rem;
	margin: 0rem;
	text-align: center;
	pointer-events: none;
	font-weight: 600;
	font-size: 1rem;
}

/* Everything from here removes or makes the default appearence transparent. We use color:transparent to eliminate the default tick marks in IE. */
input[type=range]::-ms-track {
	width: 100%;
	height: 100%;
	-webkit-appearance: none;
	margin: 0rem;
	padding: 0rem;
	border: 0 none;
	background: transparent;
	color: transparent;
	overflow: visible;
}

input[type=range]::-moz-range-track {
	width: 100%;
	height: 100%;
	-moz-appearance: none;
	margin: 0rem;
	padding: 0rem;
	border: 0 none;
	background: transparent;
	color: transparent;
	overflow: visible;
}

input[type=range] {
	width: 100%;
	height: 100%;
	-webkit-appearance: none;
	margin: 0rem;
	padding: 0rem;
	border: 0 none;
	background: transparent;
	color: transparent;
	overflow: visible;
	cursor: pointer;
}

input[type=range]:focus::-webkit-slider-runnable-track {
	background: transparent;
	border: transparent;
}

input[type=range]:focus {
	outline: none;
}

/* Make the thumbs the same size as your custom sliderthumb. They will not be visible but they will be draggable.  */
input[type=range]::-ms-thumb {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0rem;
	border: 0 none;
	background: transparent;
}

input[type=range]::-moz-range-thumb {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0rem;
	border: 0 none;
	background: transparent;
}

input[type=range]::-webkit-slider-thumb {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0rem;
	border: 0 none;
	background: transparent;
	-webkit-appearance: none;
}

/* microsoft IE10+ and Edge - eliminates default fills before and after thumb */
input[type=range]::-ms-fill-lower {
	background: transparent;
	border: 0 none;
}

input[type=range]::-ms-fill-upper {
	background: transparent;
	border: 0 none;
}

input[type=range]::-ms-tooltip {
	display: none;
}
/* 	Slider style ends */
/* Select Style starts */
.Selectbox select {
	background: white !important;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.35;
	text-align: left;
	transition: all 375ms ease-in-out;
	font-family: 'IBM Plex Sans', sans-serif;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 40rem;
	border-radius: 0.188rem;
	border: solid 1px #2d5477;
	padding: 0.625rem;
	outline: none;
	color: #2d5477;
}

.Selectbox:after {
	font-family: 'Material Icons';
	content: "expand_more";
	color: grey;
	right: 0.5rem;
	top: 1.3rem;
	padding: 0 0 0px;
	border-bottom: 0px solid #878787;
	position: absolute;
	pointer-events: none;
	font-weight: lighter;
	font-size: 2rem;
}

.Selectbox select option {
	border: solid 1px #2d5477;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.71;
	text-align: left;
	margin-top: 10px;
	color: #2d5477;
	width: 40rem;
	padding: 0.625rem;
	background-color: #ffffff;
	font-family: 'IBM Plex Sans', sans-serif;
}
/* 			Select style ends */
/************************************************************************** in both pages ********************************************************************************/
.whiteheader {
	display: flex;
	justify-content: space-between;
	height: 8rem;
	align-items: center;
	background: white;
	width: 100%;
}

.blueheader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #113E66;
	width: 100%;
	z-index: 45;
}

.headerItems {
	display: flex;
	justify-content: space-between;
	height: 7.5rem;
	/* 	align-items: center; */
	width: 64rem;
	margin: auto;
	margin-top: 2rem;
}

#headerProgress {
	height: 5rem;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.35);
	background-color: #ffffff;
	align-items: center;
	justify-content: space-around;
}

.headerMenuItems {
	display: flex;
	justify-content: space-around;
	height: 5rem;
	align-items: center;
	width: 60rem;
	margin: auto;
}

#subheaderProgress {
	height: 5rem;
/* 	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.35); */
	background-color: #d7dce4;
	align-items: center;
	justify-content: space-around;
}

.subheaderMenuItems {
	display: flex;
/* 	justify-content: space-around; */
	height: 5rem;
	align-items: center;
	width: 60rem;
	margin: auto;
}

.bodyContent {
	width: 60rem;
	margin: auto;
}

.EllipsePercentage {
	width: 2rem;
	height: 2rem;
	background-color: #2d5477;
	color: #ffffff;
	border-radius: 50%;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
}

.contentcenter {
	margin: auto;
	width: 40rem;
	margin-top: 5rem;
}

.header1 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 600;
	font-size: 2.25rem;
}

.header2 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 600;
	font-size: 1.75rem;
}

.header3 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 600;
	font-size: 1.25rem;
}

.header4 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
}

.header5 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
}

hr {
	margin: 1.5rem auto;
}

.footer {
	background: #d7dce4;
	padding: 4rem;
	margin: 0;
}

ul, li {
	list-style-type: none;
}

a {
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.25;
	color: #4b72b5;
	margin: 7px 0 15px;
}

.content21 {
	display: none;
	overflow: hidden;
}

.dropdownUser {
	background: #185298;
	color: white;
	height: auto;
	width: 5rem;
}

table {
	border-collapse: collapse;
	width: 100%;
}

th, td {
	text-align: left;
	padding: 8px;
}

tr:nth-child(even) {
	background-color: #f2f2f2
}

th {
	background-color: #2d5477;
	color: white;
}

.detailCard {
	box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.35);
	background-color: #d7dce4;
/* 	width: 8rem; */
position:absolute;
	padding: 1rem;
	overflow: visible;
	border: black;
}

.ErrorMessgaeClass {
	color: red;
	margin-left: -2rem;
}
.material-icons {
	margin-top: 0.8rem;
	}
	.linkStyle:hover{
	cursor: pointer;
	opacity: 0.5;
	} 
		.linkStyle{
	cursor: pointer;
	} 
	.progressblock {
	height: 1rem;
	width: 1rem;
}

.progressline {
	background: grey;
	height: 1px;
	width: 9rem;
}
.stepperName{
width: 10rem;
text-align: center;
}
.Numberstep {
	display: inline-block;
/* 	background-color: #86c100; */
/* 	background-color: #d7dce4; */
	margin-top: -1rem;
	border-radius: 0.8rem;
	-moz-border-radius: 0.8rem;
	-webkit-border-radius: 0.8rem;
	width: 1.25rem;
	height: 1.25rem;
	font-size: 0.75rem;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.25rem;
	text-align: center;
/* 	color: #ffffff; */
	letter-spacing: -0.3px;
}
#backgroundOverlay {
	background-color: transparent;
	position: fixed;
	position: -webkit-fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: none;
}
.processing{
	position: fixed;
    bottom: 0;
    margin: auto;
    width: 100%;
    background: white;
    text-align: center;padding: 1rem;
    font-weight: 600;
	}
.loadingAnimationCP {
	border-radius: 5px;
	display: block;
	position: absolute;
/* 	top: 45%; */
	left: 50%;
	border-bottom: 2px solid #466fb4;
	width: 0%;
	text-align: center;
	animation: loadingLineCP 1s linear forwards;
	animation-iteration-count: infinite;
}
@keyframes loadingLineCP {
	from {
	left: 50%;
	width: 0%;
}
to {
	left: 25%;
	width: 50%;
}
}
	