/*custom font*/
@import url(http://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

html {
	
}

body {
	font-family: montserrat, arial, verdana;
	height: 100%;
	/*Image only BG fallback*/
	/*background: url('http://thecodeplayer.com/uploads/media/gs.png');*/
	background: url('../images/bg3.png');
	background-attachment: fixed;
	/*background = gradient + image pattern combo*/

}
.headerOut{
	width:100%;
	text-align:center;
	background: #19A02D;
	min-height:70px;
	padding: 10px 0;
}

.header{
	max-width:800px;
	margin:auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
	gap: 15px;
}

.logo{
	flex-shrink: 0;
}

.logo-img {
	width: 220px;
	height: auto;
	max-width: 100%;
	display: block;
}

.tituloHeader {
	text-align: right;
	flex: 1;
}

.titulo-principal {
	font-size: 20px;
	font-weight: bold;
	color: white;
	line-height: 1.2;
}

.titulo-secundario {
	font-size: 16px;
	color: white;
	margin-top: 5px;
	line-height: 1.2;
}

.logo2{
	float:right;
}
/*form styles*/
#msform {
	max-width: 800px;
	/*min-width: 430px;*/
	margin: 50px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	
	box-sizing: border-box;

	
	/*stacking fieldsets above each other*/
	position: absolute;
}
.errorDiv{
	background: white;
	border: 0 none;
	display:none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 7px 10px;
	margin-bottom:15px;
	text-align:center;
	color: red;
	font-size:16px;
	box-sizing: border-box;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#msform input, #msform textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}
/*buttons*/
#msform .action-button {
	width: 150px;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 6px;
	cursor: pointer;
	padding: 12px 20px;
	margin: 10px 5px;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	font-family: montserrat, arial, verdana;
}

#msform .action-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

#msform .action-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.next {
	background: linear-gradient(135deg, #0B6819 0%, #095214 100%);
}

.next:hover {
	background: linear-gradient(135deg, #095214 0%, #074010 100%);
}

.previous {
	background: linear-gradient(135deg, #0B6819 0%, #095214 100%);
}

.previous:hover {
	background: linear-gradient(135deg, #095214 0%, #074010 100%);
}

.btn-inicio {
	display: inline-block;
	background: linear-gradient(135deg, #0B6819 0%, #095214 100%);
	color: white;
	text-decoration: none;
	padding: 15px 30px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	font-family: montserrat, arial, verdana;
}

.btn-inicio:hover {
	background: linear-gradient(135deg, #095214 0%, #074010 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-inicio:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #0B6819;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #0B6819;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	counter-reset: step;
	margin: 30px auto;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 700px;
	width: 100%;
	position: relative;
}

#progressbar li {
	list-style-type: none;
	color: #0B6819;
	text-transform: uppercase;
	font-size: 10px;
	flex: 1;
	position: relative;
	text-align: center;
	font-weight: 600;
}

#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 28px;
	height: 28px;
	line-height: 28px;
	display: block;
	font-size: 12px;
	color: #0B6819;
	background: #ddd;
	border-radius: 50%;
	margin: 0 auto 8px auto;
	position: relative;
	z-index: 2;
	font-weight: bold;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #ccc;
	position: absolute;
	left: -50%;
	top: 13px;
	z-index: 1;
}

#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,
#progressbar li.active:after {
	background: #0B6819;
	color: white;
}
/*progressbar2*/
#progressbar2 {
	counter-reset: step;
    margin-bottom: 30px;
    margin-left: 16%;
    margin-top: 30px;
    overflow: hidden;
}
#progressbar2 li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 14%;
	float: left;
	position: relative;
}
#progressbar2 li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar2 li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar2 li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar2 li.active:before,  #progressbar2 li.active:after{
	background: #0B6819;
	color: white;
}
.mapDiv {
	background-color: silver;
	width: 410px;
	height: 203px;
	float: left;
	margin-top: 22px;
	margin-left: 10px;
}

.mapContainer {
	width: 410px;
	height: 184px;
	left: 0;
	top: 0;
	border: 1px solid #bbb;
}

.mapContainerAdd {
	max-width: 740px;
	height: 250px;
	left: 0;
	top: 0;
	border: 1px solid #BBB;
}

.tiposReclamo{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 100%;
}

.tiposReclamo .btn-tipo-reclamo {
	background: linear-gradient(135deg, #EF8918 0%, #D77510 100%);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 20px 15px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	min-width: 180px;
	max-width: 200px;
	flex: 1 1 180px;
	text-align: center;
	font-family: montserrat, arial, verdana;
}

.tiposReclamo .btn-tipo-reclamo:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
	background: linear-gradient(135deg, #D77510 0%, #C06A0E 100%);
}

.tiposReclamo .btn-tipo-reclamo.selected {
	background: linear-gradient(135deg, #0B6819 0%, #095214 100%);
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(11, 104, 25, 0.4);
}

.tiposReclamo .btn-tipo-reclamo:active {
	transform: translateY(0);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.redondo{
	border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	border: 0px solid #000;
	padding:30px;
	background-color: #e8e7e4;
	border: 0 solid #000;
	border-radius: 10px;
	margin: auto;
	padding: 30px;
	width: 840px;
	text-align:left;
	color:#555;
	font-size:12px
}
.titulo{
	margin-bottom:20px;
	margin-top:20px;
	color:#0B6819;
}
.footer{
	width:100%;
	background-color: #19A02D;
	padding-top:10px;
	padding-bottom:10px;
	font-size:10px;
	color: white;
	text-align:center;
	bottom:0px;
	left:0px;
	height:20px;
	position:fixed;
}

@media screen and (max-width: 768px) {
	.header {
		padding: 0 10px;
		gap: 10px;
	}

	.logo-img {
		width: 160px;
	}

	.titulo-principal {
		font-size: 16px;
	}

	.titulo-secundario {
		font-size: 13px;
	}

	.tiposReclamo .btn-tipo-reclamo {
		min-width: 150px;
		max-width: 170px;
		padding: 12px 15px;
		font-size: 14px;
		flex: 1 1 150px;
	}

	#msform .action-button {
		width: 130px;
		padding: 10px 15px;
		font-size: 13px;
	}

	.btn-inicio {
		padding: 12px 25px;
		font-size: 15px;
	}

	#progressbar {
		max-width: 100%;
		padding: 0 10px;
	}

	#progressbar li {
		font-size: 8px;
	}

	#progressbar li:before {
		width: 24px;
		height: 24px;
		line-height: 24px;
		font-size: 10px;
	}

	#progressbar li:after {
		top: 11px;
	}
}

@media screen and (max-width: 480px) {
	.headerOut {
		min-height: auto;
		padding: 8px 0;
	}

	.header {
		flex-direction: column;
		text-align: center;
		padding: 0 10px;
		gap: 8px;
	}

	.logo-img {
		width: 140px;
	}

	.tituloHeader {
		text-align: center;
	}

	.titulo-principal {
		font-size: 14px;
	}

	.titulo-secundario {
		font-size: 12px;
	}

	.tiposReclamo {
		gap: 8px;
	}

	.tiposReclamo .btn-tipo-reclamo {
		min-width: 130px;
		max-width: 150px;
		padding: 10px 12px;
		font-size: 13px;
		flex: 1 1 130px;
	}

	#msform .action-button {
		width: 110px;
		padding: 10px 12px;
		font-size: 12px;
		margin: 8px 3px;
	}

	.btn-inicio {
		padding: 10px 20px;
		font-size: 14px;
	}

	#progressbar {
		padding: 0 5px;
	}

	#progressbar li {
		font-size: 7px;
	}

	#progressbar li:before {
		width: 20px;
		height: 20px;
		line-height: 20px;
		font-size: 9px;
		margin-bottom: 5px;
	}

	#progressbar li:after {
		height: 2px;
		top: 9px;
	}
}

@media screen and (max-width: 640px) {

	#progressbar2 {
	    margin-left: 2%;
	}
	#progressbar2 li {
		width: 16%;
	}

}

/**
 * Checkbox 1
 */
.checkbox1 {
	width: 120px;
	height: 40px;
	background: #808080;
	margin: 5px 20px;

	border-radius: 50px;
	position: relative;
}
/**
 * Create the text for the On position
 */
.checkbox1:before {
	content: 'Si';
	position: absolute;
	top: 12px;
	left: 13px;
	height: 2px;
	color: #67BD50;
	font-size: 16px;
}	
/**
 * Create the label for the off position
 */
.checkbox1:after {
	content: 'No';
	position: absolute;
	top: 12px;
	left: 84px;
	height: 2px;
	color: #eee;
	font-size: 16px;
}
/**
 * Create the pill to click
 */
.checkbox1 label {
	display: block;
	width: 52px;
	height: 22px;
	border-radius: 50px;

	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
	cursor: pointer;
	position: absolute;
	top: 9px;
	z-index: 1;
	left: 12px;
	background: #ddd;
}

/**
 * Create the checkbox event for the label
 */
.checkbox1 input[type=checkbox]:checked + label {
	left: 60px;
	background: #67BD50;
}

/**
 * Checkbox 2
 */
.checkbox2 {
	width: 120px;
	height: 40px;
	background: #808080;
	margin: 5px 20px;

	border-radius: 50px;
	position: relative;
}
/**
 * Create the text for the On position
 */
.checkbox2:before {
	content: 'Si';
	position: absolute;
	top: 12px;
	left: 13px;
	height: 2px;
	color: #67BD50;
	font-size: 16px;
}	
/**
 * Create the label for the off position
 */
.checkbox2:after {
	content: 'No';
	position: absolute;
	top: 12px;
	left: 84px;
	height: 2px;
	color: #eee;
	font-size: 16px;
}
/**
 * Create the pill to click
 */
.checkbox2 label {
	display: block;
	width: 52px;
	height: 22px;
	border-radius: 50px;

	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
	cursor: pointer;
	position: absolute;
	top: 9px;
	z-index: 1;
	left: 12px;
	background: #ddd;
}

/**
 * Create the checkbox event for the label
 */
.checkbox2 input[type=checkbox]:checked + label {
	left: 60px;
	background: #67BD50;
}

/**
 * Checkbox 3
 */
.checkbox3 {
	width: 120px;
	height: 40px;
	background: #808080;
	margin: 5px 20px;

	border-radius: 50px;
	position: relative;
}
/**
 * Create the text for the On position
 */
.checkbox3:before {
	content: 'Si';
	position: absolute;
	top: 12px;
	left: 13px;
	height: 2px;
	color: #67BD50;
	font-size: 16px;
}	
/**
 * Create the label for the off position
 */
.checkbox3:after {
	content: 'No';
	position: absolute;
	top: 12px;
	left: 84px;
	height: 2px;
	color: #eee;
	font-size: 16px;
}
/**
 * Create the pill to click
 */
.checkbox3 label {
	display: block;
	width: 52px;
	height: 22px;
	border-radius: 50px;

	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	-ms-transition: all .5s ease;
	transition: all .5s ease;
	cursor: pointer;
	position: absolute;
	top: 9px;
	z-index: 1;
	left: 12px;
	background: #ddd;
}

/**
 * Create the checkbox event for the label
 */
.checkbox3 input[type=checkbox]:checked + label {
	left: 60px;
	background: #67BD50;
}

/**
 * Checkbox 1
 */
.checkbox4 {
	width: 120px;
	height: 30px;
	background: #808080;
	margin: 5px 20px;
	padding-top:10px;
	border-radius: 50px;
	position: relative;
	text-align:center;
}
.select4 {
	background-color: #808080;
	color:#eee;
	border:0px;
	font-size:16px;
}

.widget {
	-moz-box-shadow: 1px 1px 8px rgba(0,0,0,0.3);
	-webkit-box-shadow: 1px 1px 8px rgba(0,0,0,0.3);
	box-shadow: 1px 1px 8px rgba(0,0,0,0.3);
}
.widgettitle { background: #0866c6; color: #fff; padding: 12px 15px; font-size: 14px; }
.widgettitle span { vertical-align: middle; display: inline-block; margin-right: 8px; }
.widgetcontent { background: #fff; padding: 15px 12px; border: 2px solid #0866c6; border-top: 0; margin-bottom: 20px; }
.widgetcontent p { margin: 15px 0; }
.wt1 { background: #333; color: #fff; }
.wc1 { border-color: #333; }