/* Show it is fixed to the top */
body
{
    min-height: 75rem;
    padding-top: 6rem;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl
{
	padding-bottom: 2rem;
}
.bg-egov
{
    background-color: #17376e !important;
}
span.required:after, div.required:after, span.hr-required:after, div.hr-required:after, label.hr-required:after, label.required:after
{
    content: " *";
    color: #B80000;
}
.swal-title
{
    font-size: 2.5rem !important;
}
.swal-text
{
    font-size: 1.5rem !important;
}
***** This is custom Css designed by Krupesh  Date : 17th November,2017  *****/
/***** Radio Button Custom Css  *****/
input[type=radio]{
	opacity: 0;
}
input[type=radio]:checked, input[type=radio]:not(:checked)
{
	position: absolute;
	opacity: 0;
}

input[type=radio]:checked + label, input[type=radio]:not(:checked) + label
{
	position: relative;
	padding: 0px 20px;
	cursor: pointer;
	line-height: 20px;
	display: inline-block;
}

input[type=radio]:not(:checked) + label:before
{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
	border: 3px solid #d7dcde;
	border-radius: 100%;
	background: transparent;
}

input[type=radio]:not(:checked) + label:after
{
	content: '';
	width: 6px;
	height: 6px;
	background: #d7dcde;
	position: absolute;
	top: 6px;
	left: 6px;
	border-radius: 100%;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

input[type=radio]:checked + label:before
{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
	border: 3px solid #04a1db;
	border-radius: 100%;
	background: transparent;
}

input[type=radio]:checked + label:after
{
	content: '';
	width: 6px;
	height: 6px;
	background: #04a1db;
	position: absolute;
	top: 6px;
	left: 6px;
	border-radius: 100%;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

input[type=radio]:disabled:checked + label:before
{
	content: '';
	position: absolute;
	cursor: not-allowed;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
	border: 3px solid #9E9E9E;/*#d7dcde;*/
	border-radius: 100%;
	background: transparent;
}

input[type=radio]:disabled:checked + label:after
{
	content: '';
	width: 6px;
	height: 6px;
	background: #9E9E9E;/*#d7dcde;*/
	position: absolute;
	cursor: not-allowed;
	top: 6px;
	left: 6px;
	border-radius: 100%;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

input[type=radio]:not(:checked) + label:after
{
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
}

input[type=radio]:checked + label:after
{
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

input[type=radio]:disabled:not(:checked) + label:before
{
	content: '';
	position: absolute;
	cursor: not-allowed;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
	border: 3px solid #9E9E9E;/*#d7dcde;*/
	border-radius: 100%;
	background: transparent;
	cursor: not-allowed;
}

input[type=radio]:disabled:not(:checked) + label:after
{
	cursor: not-allowed;
	position: relative;
	padding: 0px 20px;
	cursor: pointer;
	line-height: 20px;
	display: inline-block;
	cursor: not-allowed;
}
