/*##############################*/
/* MSG BOX */
/*##############################*/


.Modal_MsgBoxRespoonsivo{
	width: 100%;
	float: left;
	padding: 5px 5px;
	background-color: #f1f1f1;
	border-radius: 0px 0px 4px 4px;
}

@media screen and (min-width: 640px) {
	.Modal_MsgBoxRespoonsivo{
		width: 100%;
	}
}

.errMsgBox{
	width: 100%;
	float: left;
	display: none;
	padding: 1rem 0 1rem 0;
}


.MsgBoxCaja1, .MsgBoxCaja2, .MsgBoxCaja3, .MsgBoxCaja4, .MsgBoxCaja5{
	float:left;
	width: 100%;
	border: 2px solid #e3e3e3;
	background-color: white;
	padding: 16px 16px;
	border-radius: 5px;
}

.MsgBoxTitulo1,.MsgBoxTitulo2, .MsgBoxTitulo3,.MsgBoxTitulo4, .MsgBoxTitulo5{
	float: left;
	width: 100%;
	font-size: 1rem;
	letter-spacing: -0.02rem;
	padding-bottom: 10px;
	font-weight: 500;
	color: inherit;
	border-bottom: 2px solid var(--bordes);
}

.MsgBoxTexto1, .MsgBoxTexto2, .MsgBoxTexto3, .MsgBoxTexto4, .MsgBoxTexto5 {
	font-size: 0.9rem;
	float:left;
	white-space: normal;
	width: 100%;
}
.MsgBoxContenido p{
	margin: 1rem 0;
}
.MsgBoxContenido li {
	padding-bottom:4px;
}

.MsgBoxContenido ol,
.MsgBoxContenido ul
{
	padding:10px 10px 10px 25px;
}


.MsgBoxContenido a {
	background-color: var(--azc);
	color: #fff;
	font-size: 0.85rem;
	padding: 0 0.5rem;
	line-height: 1.7rem;
	height: 1.7rem;
	display: block;
	width: fit-content;
	margin: 0;
	text-decoration:none;
	border-radius: 0.3rem;
}

.MsgBoxContenido a:hover {
	background-color: var(--azo);
}

.MsgBoxContenido a.secundario {
	background-color: var(--grm);
	color: var(--azc);
	background-color: #fff;
	border: 1px solid var(--bordes);
}



.MsgBoxIcoBox{
	float:left;
	width: 46px;
	text-align: left;
	/* height: 32px; */
	display: block;
	/* background-position: center top; */
	text-align: right;
}

.MsgBoxContenido{
	float: left;
	width: calc(100% - 46px);
}

.MsgBoxIco-1{
	background-image: url(1.svg);
}
.MsgBoxIco-2{
	background-image: url(2.svg);
}

.MsgBoxIco-3{
	background-image: url(3.svg);
}

.MsgBoxIco-4{
	background-image: url(4.svg);
}

.MsgBoxIco-5{
	background-image: url(5.svg);
}

