
			.tabla-de-precios{
				background:#f9f9f9;
				position:relative;
			}
			.tabla-de-precios .single-table {
				background: #fff;
				border:1px solid #ddd;
				text-align: center;
				position: relative;
				overflow: hidden;
				margin: 15px 0;
				padding:45px 35px 30px 35px;
				min-height: 800px;
			}
			/* Table Head */
			.tabla-de-precios .single-table .table-head {
				text-align:center;
			}
			.tabla-de-precios .single-table .icon i{
				font-size:65px;
				color:#253B80;
			}
			.tabla-de-precios .single-table .title {
				font-size: 21px;
				color: #2C2D3F;
				margin-top: 30px;
				margin-bottom: 15px;
			}
			.tabla-de-precios .single-table .amount {
				font-size:36px;
				font-weight:600;
				color:#253B80;
			}
			.tabla-de-precios .single-table .amount span{
				display:block;
				font-size:14px;
				font-weight:400;
				color:#868686;
				margin-left:8px;
			}
			/* Table List */
			.tabla-de-precios .single-table .table-list {
				padding: 10px 0;
				text-align: center;
				margin-top: 30px;
			}
			.tabla-de-precios .table-list li {
				position: relative;
				color: #666;
				text-transform: none;
				margin-bottom: 18px;
				padding-right: 32px;
			}
			.tabla-de-precios .table-list li:last-child{
				margin-bottom:0px;
			}
			.tabla-de-precios .table-list li.cross i{
				background:#aaaaaa;
			}
			.tabla-de-precios .table-list i {
				font-size: 7px;
				text-align: center;
				margin-right: 10px;
				position: absolute;
				right: 0;
				height: 16px;
				width: 16px;
				line-height: 16px;
				text-align: center;
				color: #fff;
				background: #253B80;
				border-radius: 100%;
				padding-left: 1px;
			}

			/* Table Bottom */
			.tabla-de-precios .table-bottom {
				margin-top: 25px;
			}
			.tabla-de-precios .btn {
				padding: 12px 25px;
				width: 100%;
				color:#fff;
			}
			.tabla-de-precios .btn:before{
				background:#2C2D3F;
			}
			.tabla-de-precios .btn:hover{
				color:#fff;
			}
			.tabla-de-precios .btn i {
				font-size: 16px;
				margin-right: 10px;
			}

.observaciones {
  list-style: none;
  padding-left: 0;
}

.observaciones li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  text-align: justify;
}

.observaciones li::before {
  content: "\ea69"; /* Reemplaza con el código unicode del ícono IcoFont que desees */
  font-family: "IcoFont";
  position: absolute;
  left: 0;
  top: 0;
  color: #253B80; /* Puedes cambiar el color */
  font-size: 18px;
}

.items {
  list-style: none;
  padding-left: 0;
}

.items li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  cursor: default; /* opcional, útil para indicar que el ítem es interactivo */
}

.items li::before {
  content: "\eed7"; /* Reemplaza con el código Unicode del ícono IcoFont */
  font-family: "IcoFont";
  position: absolute;
  left: 0;
  top: 0;
  color: #253B80; /* Color base del icono */
  font-size: 18px;
  transition: color 0.3s ease;
}

.items li:hover::before {
  color: #007BFF; /* Color al hacer hover */
}