﻿﻿html {
	height: 100vh !important;
	position: relative !important;
}

body {
	font-family: 'Archivo-Regular', 'Ranade-Regular' !important;
	font-size: 0.85rem !important;
	height: 100vh !important;
	position: relative !important;
	padding: 0 !important;
	margin: 0 !important;
	line-height: 1.5 !important;
}

.errorText {
	font-size: 0.85rem !important;
	color: Red !important;
	padding: .5rem !important;
}

#bodyLogin {
	color: #0A3866 !important;
}

#divLogin {
	width: 320px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -125px;
	margin-left: -200px;
}

	#divLogin h1 {
		font-family: 'Archivo-Bold' !important;
		font-size: 1.25rem !important;
		text-align: center;
	}

#divLeftPane {
	display: flex;
	flex-direction: column;
	float: left;
	flex-wrap: wrap;
	align-items: flex-end;
	margin: 1.5rem 1.5rem;
}

	#divLeftPane label {
		display: flex !important;
	}

#divRightPane {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -55px;
	z-index: -1;
}

#BtnLogin {
	font-size: 0.85rem !important;
	background-color: #0A3866 !important;
	color: #F4F6F9 !important;
	border: 1px solid #F4F6F9 !important;
}

	#BtnLogin:hover {
		font-size: 0.85rem !important;
		background-color: #F4F6F9 !important;
		color: #0A3866 !important;
		border: 1px solid #0A3866 !important;
	}

#divFooter {
	position: absolute;
	bottom: 0;
	right: 0;
}

#divContentPane {
	border: solid 0.25rem #0A3866;
	overflow: hidden;
}

#header {
	width: 100%;
	padding: 0 0;
	margin-right: auto;
	margin-left: auto;
}

nav {
	position: relative;
	display: flex !important;
	flex-wrap: wrap;
	justify-content: space-between !important;
	align-items: center !important;
	padding: 0px 15px !important;
	background-color: #0A3866 !important;
	color: #FFFFFF !important;
}

	nav .logo {
		display: flex !important;
		align-items: center !important;
	}

		nav .logo img {
			height: 80px !important;
			margin-right: 10px !important;
			margin-left: 10px;
		}

	nav .user-info {
		display: flex !important;
		align-items: center !important;
		text-align: right !important;
		gap: 30px !important;
	}

		nav .user-info span {
			font-size: 0.85rem !important;
			line-height: 1.5 !important;
		}

#header .user-info strong {
	text-transform: uppercase;
}

#header h1 {
	display: inline-flex;
	margin: 20px 0 0 0;
}

h1 {
	font-family: 'Archivo-Bold';
	font-size: 1.25rem !important;
}

#menu-toggle.button {
	min-height: 24px !important;
	min-width: 24px !important;
	padding: 0 !important;
	margin: 0 !important;
}

.toggle-button {
	font-family: 'Archivo-Black';
	font-size: 1.25rem !important;
	cursor: pointer !important;
}


.buttonPay {
	padding: 6px 12px !important;
	background-color: #F4F6F9 !important;
	color: #7d7f81 !important;
	text-decoration: none !important;
	text-align: left;
	border-radius: 4px !important;
	border: 0px solid #0A3866 !important;
	font-size: 0.85rem !important;
	min-width: 80px;
	cursor: pointer !important;
	transition: background-color 0.3s ease, color 0.3s ease !important;
}

	.buttonPay:hover {
		background-color: #4595D1 !important;
		color: #F4F6F9 !important;
		border: 0px solid #F4F6F9 !important;
	}

.button {
	padding: 6px 12px !important;
	background-color: #F4F6F9 !important;
	color: #0A3866 !important;
	text-decoration: none !important;
	text-align: center;
	border-radius: 4px !important;
	border: 0px solid #0A3866 !important;
	font-size: 0.85rem !important;
	min-width: 80px;
	cursor: pointer !important;
	transition: background-color 0.3s ease, color 0.3s ease !important;
}


.gridReport-header {
	background-color: #4595D1;
	color: white;
	text-align: center;
	font-weight: bold; /* Opcional: hacer el texto en negrita */
}


.button-text {
	align-items: center;
	justify-content: center;
	background-color: transparent;
	color: #4595D1;
	cursor: pointer;
	font-size: 0.85rem;
}


.button-with-icon i {
	margin-right: 5px; /* Espacio entre ícono y texto */
}

.button:hover {
	background-color: #4595D1 !important;
	color: #F4F6F9 !important;
	border: 0px solid #F4F6F9 !important;
}

.button.primarybtn {
	background-color: #4595D1 !important;
	color: #F4F6F9 !important;
	border: 0px solid #4595D1 !important;
}

	.button.primarybtn:hover {
		background-color: #F4F6F9 !important;
		color: #4595D1 !important;
		border: 0px solid #F4F6F9 !important;
	}

#wrapper {
	overflow-x: hidden;
}

#sidebar-wrapper {
	height: calc(100vh - 120px) !important;
	margin-left: -160px;
	-webkit-transition: margin .25s ease-out;
	-moz-transition: margin .25s ease-out;
	-o-transition: margin .25s ease-out;
	transition: margin .25s ease-out;
	background-color: #f8f9fa;
	border-right: 1px solid #dee2e6;
}

	#sidebar-wrapper .list-group {
		width: 150px;
	}

#page-content-wrapper {
	min-width: 100vw;
	padding: 0;
}

#wrapper.toggled #sidebar-wrapper {
	margin-left: 0;
}

#wrapper.toggled #page-content-wrapper #user-info-wrapper {
	padding-right: 160px;
}


@media(min-width: 768px) {
	#sidebar-wrapper {
		margin-left: 0;
	}

	#page-content-wrapper #user-info-wrapper {
		padding-right: 0;
	}

	#page-content-wrapper {
		min-width: 0;
		width: 100%;
		padding: 0;
	}

	#wrapper.toggled #sidebar-wrapper {
		margin-left: -160px;
	}

	#wrapper.toggled #page-content-wrapper #user-info-wrapper {
		padding-right: 0;
	}
}

.bg-brdr-sidebar {
	background-color: #FFFFFF !important;
	border-color: #eceff2 !important;
}

body .menu_icons {
	color: #434343;
}

	body .menu_icons:hover {
		color: #4595D1;
		font-family: 'Archivo-Bold';
	}

body .menu {
	border-right: 1px solid #eceff2;
}

	body .menu > li {
		color: #434343;
		border-bottom: 1px solid #eceff2;
	}

		body .menu > li:hover {
			color: #4595D1;
		}

	body .menu ul li {
		color: #434343;
	}

.menu {
	vertical-align: top;
	display: inline-block;
	margin: 0 -1px 0 0;
	padding: 0;
	width: 150px;
}

	.menu > li {
		font-family: 'Archivo-Semibold' !important;
		font-size: 0.85rem !important;
		padding: 10px 0 5px 10px;
	}

		.menu > li span {
			display: inline-block;
			vertical-align: middle;
		}

	.menu li {
		cursor: pointer;
	}

	.menu ul {
		height: 0;
		margin-left: -20px;
		overflow: hidden;
		list-style: disc;
	}

		.menu ul li {
			font-family: 'Archivo-Regular' !important;
			font-size: 0.75rem;
		}

			.menu ul li a {
				display: block;
				color: #474747;
				margin-top: 5px;
				text-decoration: none;
			}

				.menu ul li a:hover {
					text-decoration: underline;
				}

.menu_icons {
	display: inline-block;
	width: 10px;
	height: 15px;
	margin-right: 10px;
}



/*#region botones tipo de pago*/

.payment-method-panel {
	margin: 20px;
	font-family: Arial, sans-serif;
}

.instruction-label {
	display: block;
	margin-bottom: 10px;
	font-size: 1rem;
	color: #333;
}

.button-container {
	list-style: none;
	padding: 0;
	display: flex; /* Alinear horizontalmente */
	gap: 10px; /* Espaciado entre botones */
}

	.button-container li {
		position: relative;
		display: flex;
		align-items: center;
	}

.custom-button {
	display: none; /* Ocultar el radio nativo */
}

	.custom-button + label {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px 20px;
		border: 2px solid #ccc;
		border-radius: 8px; /* Bordes más sutiles */
		cursor: pointer;
		font-size: 1rem;
		color: #333;
		background-color: #f9f9f9; /* Gris claro por defecto */
		transition: all 0.3s ease;
	}

		.custom-button + label .icon {
			display: none; /* Ocultar por defecto */
			width: 16px;
			height: 16px;
			margin-left: 8px; /* Separar la palomita del texto */
			background-image: url('/vendor/palomita.png'); /* Ruta del ícono */
			background-repeat: no-repeat;
			background-position: center;
			background-size: contain;
		}

	.custom-button:checked + label {
		border-color: #007bff; /* Azul para el borde */
		color: #007bff; /* Azul para el texto */
		background-color: #eaf3ff; /* Azul claro para el fondo */
	}

		.custom-button:checked + label .icon {
			display: block; /* Mostrar la palomita */
		}

	.custom-button + label:hover {
		border-color: #007bff; /* Azul en hover */
	}

	.custom-button + label:active {
		transform: scale(0.98); /* Efecto clic */
	}
/* fin #region botones tipo de pago*/

/*#region CONTAINER_FORM*/
.container {
	width: 95%;
	margin: 0 auto;
}

.header, .row {
	display: flex;
	padding: 0;
}

.border_content {
	border: 1px solid #B9C5D1;
	padding: 10px;
}

.content {
	flex: 1;
}

.content_inline {
	display: inline-flex;
	flex-direction: column;
}

.select_label {
	color: #000F1F;
	font-size: 0.85rem;
	font-family: 'Archivo-Regular';
	font-weight: bold;
	margin-left: 8px;
}

.select {
	width: 100%;
	max-width: 300px;
	min-width: 150px;
	padding: 8px;
	margin-top: 6px;
	margin-bottom: 6px;
	margin-right: 10px;
	border: #B9C5D1 1px solid;
	color: #9B9B9B;
	font-size: 0.75rem;
	font-family: 'Ranade-Regular' !important;
	border-radius: 4px;
	cursor: pointer;
}

.table-container {
	margin-top: 20px;
}

	.table-container table {
		width: 100%;
		border-collapse: collapse;
		margin-top: 10px;
	}

	.table-container th, .table-container td {
		border-bottom: 1px solid #B9C5D1;
		padding: 8px;
	}

	.table-container a:-webkit-any-link {
		text-decoration: none;
	}

.oscuro {
	color: #000F1F;
	font-size: 0.85rem;
	font-family: 'Archivo-Regular' !important;
	font-weight: bold;
	background-color: #ECEFF2;
	line-height: 20px;
}

.medio {
	color: #000F1F;
	font-size: 0.75rem;
	font-family: 'Ranade-Regular' !important;
	background-color: #FFFFFF;
}

.claro {
	color: #000F1F;
	font-size: 0.75rem;
	font-family: 'Ranade-Regular' !important;
	background-color: #FFFFFF;
}

.pagination {
	text-align: right;
	margin-top: 26px;
}

	.pagination a {
		padding: 8px;
		margin: 0 5px;
		background-color: #4595D1;
		color: #ECEFF2;
		border: none;
		cursor: pointer;
		border-radius: 4px;
	}

		.pagination a:hover {
			background-color: #ECEFF2;
			color: #4595D1;
			border: 1px solid #4595D1;
		}

	.pagination span {
		padding: 8px;
		margin: 0 5px;
		background-color: #CCC;
		color: #ECEFF2;
		border: none;
		cursor: none;
		border-radius: 4px;
	}

	.pagination button {
		padding: 8px;
		margin: 0 5px;
		background-color: #4595D1;
		color: #ECEFF2;
		border: none;
		cursor: pointer;
	}

		.pagination button:hover {
			background-color: #ECEFF2;
			color: #4595D1;
			border: 1px solid #4595D1;
		}

.linkButton {
	display: inline-block;
	min-width: 50px;
	text-align: center;
	padding: 8px;
	margin: 0 5px;
	background-color: #4595D1;
	color: #ECEFF2;
	border: none;
	cursor: pointer;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.85rem;
	font-family: 'Archivo-Regular' !important;
	font-weight: bold;
}

	.linkButton:hover {
		background-color: #ECEFF2;
		color: #4595D1;
		border: 1px solid #4595D1;
	}

.pagination button:disabled {
	background-color: #ccc;
}

.new-customer-button {
	padding: 8px 16px;
	background-color: #1A73E8;
	color: #FFFFFF;
	border: none;
	cursor: pointer;
}

/*#region rate*/



/*# region pantalla2*/
.rateTable {
	border-collapse: collapse;
	margin: 20px 0;
	border-radius: 8px;
	width: 65dvw;
}

	.rateTable td {
		text-align: center;
		padding: 8px;
	}

	.rateTable th {
		text-align: center;
		padding: 8px;
	}

.right-align-column {
	width: 150px;
	text-align: right;
}

.rateTable td.right-align-column {
	width: 150px;
	text-align: right;
}

.selected-package {
	background-color: rgba(0, 123, 255, 0.1); /* Fondo azul claro con transparencia */
	box-shadow: inset 0 0 10px rgba(0, 123, 255, 0.2); /* Sombra interna */
	transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Transición suave */
	border-radius: 4px; /* Opcional: bordes redondeados */
}

.trColor {
	background-color: #eceff2;
}

.subtitulos {
	color: #0a3866;
	font-family: Arial, sans-serif;
	font-weight: bold;
}

.section-header.rateTable {
	background-color: #0A3866;
	color: white;
	font-size: 0.85rem;
	padding: 10px;
	text-align: right;
}


/* .section-header {
    background-color: #0A3866;
    color: white;
    font-size: 0.85rem;
    padding: 10px;
    text-align: right;
} */

.headerGray {
	background-color: #ECEFF2;
	color: rgb(8, 8, 8);
	font-size: 0.85rem;
	padding: 5px;
	text-align: left;
}

.limites-subtitulo {
	color: #4595D1;
	font-weight: bold;
	background-color: #eceff2;
}

.footer a {
	color: #4595D1;
	text-decoration: none;
	display: block;
	padding: 10px 0;
	font-size: 1.2em;
	width: 150px;
	text-align: right;
}

.toogle-content a {
	color: #4595D1;
	text-decoration: none;
	display: block;
	padding: 5px 5px;
	font-size: 1.3em;
	width: 150px;
}

.details-section table {
	border: none; /* Elimina el borde exterior */
	border-collapse: collapse; /* Mantiene los bordes internos colapsados */
}

.details-section th, .details-section td {
	border-bottom: 1px solid #ddd !important;
}


/*region pantalla2*/
.content-form {
	width: 100% !important;
	margin: 0 auto;
}

.header, .row {
	display: flex;
	padding: 0;
}

.col-md-2.sidebar {
	padding-right: 5px !important;
	padding-left: 5px !important;
}

.content {
	padding: 30px;
}

.form-sidebar {
	color: #000F1F;
	margin-bottom: 15px;
	margin-top: 15px;
	padding: 3px;
	font-size: 0.85rem;
	line-height: 1;
	align-content: space-between;
}

.quote-steps {
	background-color: #dddddd42;
	min-height: 80dvh;
}

	.quote-steps input[type=radio] {
		min-width: 15px;
		min-height: 15px;
		cursor: none !important;
	}

input[type=checkbox], input[type=radio] {
	color: #0A3866;
	accent-color: currentcolor;
	cursor: pointer;
	padding: 0;
	margin-right: 0;
}

.quote-steps-label {
	vertical-align: bottom;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
	border: #0A3866 0px solid;
}

.title-1 {
	color: #0A3866;
}

.title-2 {
	color: #4595D1;
}

.form-row {
	padding: .375rem .75rem !important;
}

.form-control {
	color: #495057 !important;
	background-color: #FFF !important;
	border: 1px solid #ced4da !important;
	border-radius: 6px !important;
}

	.form-control.form-check.form-check-inline {
		padding-left: .2rem !important;
	}

.form-group {
	padding: .375rem .375rem !important;
	margin-bottom: 0.35rem !important;
	font-size: 0.85rem !important;
}

	.form-group label {
		font-family: 'Archivo-Semibold' !important;
	}

	.form-group span {
		font-family: 'Ranade-Regular' !important;
	}

	.form-group .form-control {
		color: #9B9B9B !important;
		font-size: 0.85rem !important;
	}

		.form-group .form-control .form-check-input {
			margin-top: 0 !important;
		}

.form-check-border {
	height: 3.5rem !important;
	padding: .375rem .75rem !important;
	color: #495057 !important;
	background-color: #FFF !important;
	border: 1px solid #ced4da !important;
	border-radius: .5rem !important;
}

.quote-steps .form-check {
	padding-left: 2rem !important;
	padding-top: 1rem !important;
	align-items: stretch;
}

.quote-steps input[type=checkbox] {
	min-width: 1rem;
	min-height: 1.5rem;
	margin-top: 0;
}

.quote-steps input[type="checkbox"]:disabled {
	opacity: 1; /* no opacar */
	cursor: default; /* mostrar que está bloqueado */
	accent-color: auto; /* mantiene el color por defecto del navegador */
}

.quote-steps label {
	margin-left: 0 !important;
}

.broker-fee {
	background: #b9c5d1ff;
	border: 1px solid #ced4da !important;
	border-radius: .1rem !important;
	padding-left: .5rem !important;
	color: #FFF !important;
	font-size: 0.85rem !important;
	padding: 2px;
	margin-top: -5px;
}

	.broker-fee .form-group {
		margin-bottom: 0 !important;
	}

.form-group .broker-fee label {
	font-family: 'Archivo-Bold' !important;
}

#special {
	display: none;
}

#logo-chubb,
#logo-mapfre,
#logo-zurich,
#logo-axa,
#logo-qualitas,
#logo-hdi {
	display: none;
}

#trailer,
#additional,
#trailer2,
#additional2 {
	display: none;
}

#trailer2,
#additional2 {
	flex-direction: column;
}

.form-row-justify-end {
	display: flex;
	flex-wrap: wrap;
	padding: .375rem .75rem !important;
	margin-left: -5px;
	margin-right: -5px;
	justify-content: flex-end;
	gap: 1rem;
}

#territory,
#more-180-days {
	display: none;
}

.no-padding {
	padding: 0 0 !important;
}

.no-margin {
	margin: 0 0 !important;
}

.display-end {
	display: inline-grid !important;
	justify-items: end;
}

#tableHeader table {
	border-collapse: collapse;
	border: 1px solid #ddd;
	border-radius: 8px;
	width: 70dvw;
}

	#tableHeader table th {
		padding: 8px;
	}

		#tableHeader table th.section-header {
			background-color: #0A3866;
			color: white;
			font-size: 0.85rem;
			padding: 10px;
			border: none;
		}

			#tableHeader table th.section-header p {
				padding: 0;
				margin: 0;
			}

table#summaryPolicy {
	border-collapse: collapse !important;
	border: none !important;
	border-radius: 8px;
	width: 25vw;
}

	table#summaryPolicy th.section-header {
		background-color: #0A3866;
		color: white;
		font-size: 0.85rem;
		padding: 10px;
		border: none;
	}

#tablePolicy table {
	border-collapse: collapse;
	border: 1px solid #ddd;
	border-radius: 8px;
	width: 30dvw;
}

	#tablePolicy table th {
		padding: 8px;
	}

		#tablePolicy table th.section-header {
			background-color: #0A3866;
			color: white;
			font-size: 0.85rem;
			padding: 10px;
			border: none;
		}

.align-right {
	text-align: right;
}

.align-left {
	text-align: left;
}

.row-justify-end {
	display: flex;
	flex-wrap: wrap;
	margin-right: 15px;
	margin-left: 15px;
	flex-direction: row;
	justify-content: flex-end;
}

.row-justify-start {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
}

.buttons-container {
	flex-wrap: wrap;
	gap: 1rem;
	position: relative;
	bottom: 0;
	right: 0;
}

#content-quote.col-md-10 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	border: 1px solid #dddddd45 !important;
}

.button-form-control {
	border: none !important;
	display: inline-flex !important;
	align-items: center !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	justify-content: flex-start !important;
}

.button-new {
	padding: 6px 12px !important;
	background-color: #fff !important;
	color: #0A3866 !important;
	text-decoration: none !important;
	text-align: center;
	border-radius: 4px !important;
	border: 1px solid #0A3866 !important;
	font-size: 0.85rem !important;
	min-width: 80px;
	cursor: pointer !important;
	transition: background-color 0.3s ease, color 0.3s ease !important;
}

	.button-new:hover {
		background-color: #0A3866 !important;
		color: #fff !important;
		border: 1px solid #0A3866 !important;
	}

.button-new {
	padding: 6px 12px !important;
	background-color: #fff !important;
	color: #0A3866 !important;
	text-decoration: none !important;
	text-align: center;
	border-radius: 4px !important;
	border: 1px solid #0A3866 !important;
	font-size: 0.85rem !important;
	min-width: 80px;
	cursor: pointer !important;
	transition: background-color 0.3s ease, color 0.3s ease !important;
	font-family: 'Archivo-Semibold' !important;
}

	.button-new:hover {
		background-color: #0A3866 !important;
		color: #fff !important;
		border: 1px solid #0A3866 !important;
	}

.btnAction {
	padding: 6px 12px !important;
	background-color: #0A3866 !important;
	color: #fff !important;
	border: 1px solid #0A3866 !important;
	text-decoration: none !important;
	text-align: center;
	border-radius: 4px !important;
	font-size: 0.85rem !important;
	min-width: 80px;
	cursor: pointer !important;
	transition: background-color 0.3s ease, color 0.3s ease !important;
	font-family: 'Archivo-Semibold' !important;
}

	.btnAction:hover {
		background-color: #fff !important;
		color: #0A3866 !important;
		border: 1px solid #0A3866 !important;
	}

.button-secondary {
	padding: 6px 12px !important;
	background-color: #fff !important;
	color: #4595D1 !important;
	text-decoration: none !important;
	text-align: center;
	border-radius: 4px !important;
	border: 1px solid #4595D1 !important;
	font-size: 0.85rem !important;
	min-width: 80px;
	cursor: pointer !important;
	transition: background-color 0.3s ease, color 0.3s ease !important;
	font-family: 'Archivo-Semibold' !important;
}

	.button-secondary:hover {
		background-color: #4595D1 !important;
		color: #fff !important;
		border: 1px solid #4595D1 !important;
	}

.line-height-dot-five-rem {
	line-height: .5rem !important;
}

.form-control-search {
	height: calc(1.5em + 1.5rem + 2px) !important;
}

.formatted-text {
	display: contents;
	white-space: pre-line;
}

	.formatted-text p {
		margin: 0 !important;
		padding: 0 !important;
		display: list-item;
		list-style-type: disc;
		margin-left: 2rem !important;
		padding-left: 1.75rem !important;
		margin-top: 0.75rem !important;
		line-height: 0.1rem;
	}

#tableClients table {
	border-radius: 8px;
	width: 69.75dvw;
}

	#tableClients table th {
		padding: 8px;
		background-color: #4595D1;
		color: white;
		font-size: 0.85rem;
		padding: 10px;
		border: none;
	}

	#tableClients table td {
		cursor: pointer;
	}


/* pantalla add vehicle  */

.notification-container {
	width: 350px;
	border: 1px solid #ccc;
	border-radius: 10px;
	background-color: #4595D1;
	color: white;
	padding: 10px;
	display: flex;
	align-items: center;
}

.notification-icon {
	flex: 0 0 40px;
	text-align: center;
	margin-right: 10px;
}

	.notification-icon i {
		font-size: 24px;
	}

.notification-content {
	flex: 1;
}

	.notification-content .text {
		font-size: 0.85rem;
		font-weight: bold;
	}

.notification-details {
	background-color: white;
	color: black;
	border-radius: 5px;
	padding: 5px;
	margin-top: 5px;
}

	.notification-details div {
		margin-bottom: 5px;
	}

.notification-icon {
	flex: 0 0 40px;
	height: 40px;
	margin-right: 10px;
	background-image: url('/vendor/1156949.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* pantalla add vehicle  */

/* Estilo general del GridView */
.gridview-table {
	border-radius: 8px;
	width: 69.75dvw;
	margin: 0;
	border: none !important;
}

	.gridview-table th {
		padding: 10px;
		background-color: #4595D1;
		color: white;
		font-size: 0.85rem;
		border: none !important;
		text-align: left;
	}

	.gridview-table td {
		padding: 8px;
		border: none !important;
		border-bottom: 1px solid #b9c5d1 !important;
	}

	.gridview-table tbody tr:last-child td {
		border: none !important;
		border-bottom: none !important;
	}

	.gridview-table tbody tr td table tbody tr td {
		border: none !important;
		border-bottom: none !important;
	}

/* Estilo para la fila seleccionada */
.selected-row {
	background-color: #dddddd42;
	color: #0A3866;
}

/* Botón oculto por defecto */
.hidden-button {
	display: none;
}

/* Botón de acción */
.action-button {
	padding: 5px 10px;
	background-color: #6c757d7a;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

	.action-button:hover {
		background-color: #495057;
	}

.info-section table {
	width: 100%;
	border: 1px solid #ddd; /* Borde gris claro */
	border-radius: 5px; /* Esquinas redondeadas */
	padding: 5px; /* Espaciado interno */
	margin-bottom: 5px; /* Separación entre secciones */
	background-color: #f9f9f9; /* Fondo gris claro */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

	.info-section table th, .info-section table td {
		padding: 5px;
		text-align: left;
	}

	.info-section table th {
		background-color: #dee2e6;
		font-family: 'Archivo-Bold';
		font-size: 0.85rem !important;
	}

	.info-section table td {
		background-color: #fff;
		border: 1px solid #b9c5d1 !important;
	}

		.info-section table td:first-child {
			width: 35%;
		}

		.info-section table td:nth-child(2) {
			width: 65%;
		}

.info-section strong {
	color: #000; /* Texto resaltado en negro */
}

.info-section input.button-secondary {
	min-width: 55% !important;
	margin-right: -15px !important;
}

.buttons-absolute-container {
	flex-wrap: wrap;
	gap: 1rem;
	position: absolute;
	bottom: 0;
	right: 0;
}

#renewal {
	display: none;
}

.rate-section {
	background-color: white;
	overflow: hidden;
}

	.rate-section table {
		width: 100%;
		border: 1px solid #ececec; /* Borde gris claro */
		border-radius: 5px; /* Esquinas redondeadas */
		padding: 5px; /* Espaciado interno */
		margin-bottom: 5px; /* Separación entre secciones */
		background-color: #fff; /* Fondo gris claro */
	}

		.rate-section table th, .rate-section table td {
			padding: 5px;
			text-align: right;
		}

		.rate-section table th {
			background-color: #dee2e6;
			font-family: 'Archivo-Bold';
			font-size: 0.85rem !important;
			color: #4595D1;
		}

		.rate-section table td {
			background-color: #fff;
			border-bottom: 1px solid #ececec !important;
		}

			.rate-section table td:first-child {
				width: 40%;
			}

			.rate-section table td:nth-child(2) {
				width: 30%;
			}

		.rate-section table tr:last-child td {
			background-color: #083763;
			border: #083763 !important;
			color: #fff;
		}

	.rate-section strong {
		color: #000;
	}

.disabled {
	pointer-events: none !important;
	opacity: 0.5;
}

.button-disabled {
	background-color: #ccc;
	color: #666;
	cursor: not-allowed;
	border: none;
}

.table-limits {
	background-color: white;
	overflow: hidden;
}

	.table-limits table {
		width: 100%;
		border: 1px solid #ececec; /* Borde gris claro */
		border-radius: 5px; /* Esquinas redondeadas */
		padding: 5px; /* Espaciado interno */
		margin-bottom: 2px; /* Separación entre secciones */
		background-color: #fff; /* Fondo gris claro */
	}

		.table-limits table th, .table-limits table td {
			padding: 5px;
			text-align: right;
		}

		.table-limits table th {
			background-color: #dee2e6;
			font-family: 'Archivo-Bold';
			font-size: 0.85rem !important;
			color: #4595D1;
		}

		.table-limits table td {
			background-color: #fff;
			border-bottom: 1px solid #ececec !important;
		}

		.table-limits table tr:last-child td {
			background-color: #083763;
			border: #083763 !important;
			color: #fff;
		}

	.table-limits strong {
		color: #000;
	}

	.table-limits table .form-control {
		font-size: 0.85rem !important;
		text-align: end;
	}

.current-info-section {
	background-color: white;
	overflow: hidden;
}

	.current-info-section table {
		width: 100%;
		border: 1px solid #ececec; /* Borde gris claro */
		border-radius: 5px; /* Esquinas redondeadas */
		padding: 5px; /* Espaciado interno */
		margin-bottom: 5px; /* Separación entre secciones */
		background-color: #fff;
	}

		.current-info-section table th, .current-info-section table td {
			padding: 5px;
			text-align: left;
		}

		.current-info-section table th {
			background-color: #fff;
			font-family: 'Archivo-Bold';
			font-size: 0.85rem !important;
			color: #4595D1;
		}

		.current-info-section table td {
			background-color: #fff;
			border: 1px solid #ececec !important;
		}

			.current-info-section table td:first-child {
				width: 30%;
			}

			.current-info-section table td:nth-child(2) {
				width: 70%;
			}

	.current-info-section strong {
		color: #000;
	}

/* seccion de pantalla policy overview */
.InformationViewContainer {
	margin: 20px;
}

.headerInformationView {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #0A3866;
}


.horizontal-dropdown {
	display: inline-block;
	position: relative;
}

.dropdown-button {
	color: #0A3866;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}



.dropdown-content {
	font-size: 0.85rem;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	min-width: 10px;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
	z-index: 1;
	white-space: nowrap;
	display: flex;
	justify-content: space-around;
}

.menu-section {
	padding: 10px;
}

.section-title {
	color: #4595D1;
	font-size: 1rem;
	margin-bottom: 5px;
}

.option {
	margin-bottom: 5px;
	cursor: pointer;
}

	.option:hover {
		background-color: #F4F6F9;
	}


.rowInformationView {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.col {
	padding: 10px;
}

.col-6 {
	flex: 0 0 50%;
	max-width: 50%;
}

.col-3 {
	flex: 0 0 25%;
	max-width: 25%;
}

.info-section {
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: white;
	overflow: hidden;
}

.section-headerInfoView {
	background-color: #ECEFF2;
	font-weight: bold;
	font-size: 1rem;
	padding: 10px;
	border-bottom: 1px solid #ccc;
	text-align: left;
}

.info-content {
	padding: 15px;
}



.action-buttons {
	text-align: right;
	margin-top: 10px;
}

.btnInformationview {
	padding: 5px 10px;
	border: 1px solid #007bff;
	border-radius: 3px;
	background-color: white;
	color: #007bff;
	text-decoration: none;
	cursor: pointer;
}

.btnInformationview-primary {
	background-color: #007bff;
	color: white;
	border-color: #007bff;
}

.form-check {
	margin: 5px 0;
}

	.form-check input {
		margin-right: 5px;
	}

.navigation-buttons {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

	.navigation-buttons .btnInformationview {
		margin-left: 10px;
	}

.auto-style1 {
	width: 100%;
	margin-left: auto;
	margin-top: 0;
	margin-bottom: 0;
}

.box-download-files {
	background-color: #ebedf0;
	margin: 0 2rem;
	border-radius: 15px;
	border: outset;
	margin-bottom: 1rem !important;
}

	.box-download-files .form-check-inline {
		background-color: #ebedf0 !important;
	}

.background-download-files {
	background-color: #ebedf0;
}

.headerPolicy {
	background-color: #083763;
	color: white;
	padding: 10px;
	display: flex;
	justify-content: space-between;
}

/* fin seccion de pantalla policy overview */

.info-list {
	text-align: left;
	margin-bottom: 0;
	padding-bottom: 0;
}

	.info-list li {
		margin-bottom: 8px;
		padding-right: 2rem;
	}


.msg {
	margin: 10px auto;
	text-align: center;
	font-weight: bold;
}

.success {
	color: green;
}

.error {
	color: red;
}

.add-row {
	margin-top: 15px;
}