body {
	margin: 0px;
	background-image: url('../images/login/fondo_bottom.gif');
	background-color: #CCCCCC;
	font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
	font-size: 12px;
	color: #000000;
}


.progress {
	display: flex;
	align-items: center;
	justify-content: space-around;
	padding: 18px 0;
}

.progress-step {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 0 10px;
}

.progress-circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 4px solid #545E75;
	background-color: transparent;
	position: relative;
}

.progress-step.active .progress-circle {
	border: 4px solid #015FFF;
}

.progress-step.completed .progress-circle {
	background-color: #015FFF;
	border-color: #015FFF;
}

.progress-label {
	margin-left: 5px;
	font-size: 16px;
}

.progress-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	left: calc(100% + 15px);
	height: 2px;
	width: 100%;
	background-color: #545E75;
	transform: translateY(-50%);
	margin-left: 5px;
}

.progress-step.active:not(:last-child)::after {
	background-color: #015FFF;
}

.progress-step.completed:not(:last-child)::after {
	background-color: #015FFF;
}

.progress-step.completed .check-icon {
	display: flex;
}

.check-icon {
	display: none;
	position: absolute;
	color: white;
	transform: translate(-50%, -50%);
	font-size: 20px;
	font-weight: bold;
	left: 50%;
	top: 50%;
}

.svs-form-group {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	width: 100%;
}

.svs-form-group label {
	margin-right: 10px;
	white-space: nowrap;
	width: 120px;
	text-align: right;
}

.svs-form-group input {
	width: 200px;
}

.svs-vertical-align {
	display: flex;
	flex-direction: column;
	align-items: center;
}

a.svs-link {
	color: #015FFF;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}

a.svs-link:hover {
	color: #24489E;
}

.svs-btn {
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	font-size: 16px;
	font-family: inherit;
	border: none;
	border-radius: 8px;
	padding: 4px 25px;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-decoration: none;
}

.svs-btn-primary {
	background-color: #015FFF;
	border-color: #015FFF;
}

.svs-btn-primary:hover {
	background-color: #24489E;
	border-color: #24489E;
}

.svs-loader {
	width: 20px;
	height: 20px;
	border: 5px solid #FFF;
	border-bottom-color: transparent;
	border-radius: 50%;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
	display: none;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.svs-warning-message {
	background-color: #FFC3B6;
	border-radius: 10px;
	padding: 8px 18px;
	display: flex;
	align-items: center;
}

.svs-exclamation-mark {
	background-color: #AB1117;
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-right: 5px;
}

/*
.login {
	border-width: 1px;
	border-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #999999;
	border-bottom-color: #FAFAFA;
	border-left-color: #999999;
}

table {
	font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
	font-size: 12px;
	color: #000000;
}

.pie {
	font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
	font-size: 11px;
	color: #000000;
	background-color: #FFFFFF;
	padding: 15px;
}

div.msgValContainer {
    border: none;
    color: #2D318D;
	vertical-align: bottom;
	font-size: 8pt;
	font-weight: bold;
}

div.msgValContainer { display: none }

.txterror {
	color: #2D318D;
	font-weight: bold;
}

.intext {
	border:1px solid #000000;
	font-family: Tahoma, Arial, sans-serif;
	font-size: 11px;
	color: #000000;
	height: 23;
	background-color: #ffffff;
}



*/