/*
overwrite bootstrap
*/

:root {
  /* --primary: #804000; */
  --primary: #0080c0;
}

.bg-primary {
  /* background-color: #804000 !important; */
  background-color: #0080c0 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  /*background-color: #804040!important; */
  background-color: #0080c0!important;
}

.btn-primary {
  color: #fff;
 /* background-color: #804000;
  border-color: #804000; */
  background-color: #0080c0;
  border-color: #0080c0;
}

.btn-primary:hover {
  color: #fff;
  /* background-color: #804040;
  border-color: #804040; */
  background-color: #0080c0;
  border-color: #0080c0;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  /* background-color: #804000;
  border-color: #804000; */
  background-color: #0080c0;
  border-color: #0080c0;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  /* background-color: #804040;
  border-color: #804040; */
  background-color: #0080c0;
  border-color: #0080c0;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}


.btn-outline-primary {
  /* color: #804000;
  border-color: #804000; */
  color: #0080c0;
  border-color: #0080c0;
}

.btn-outline-primary:hover {
  color: #fff;
  /* background-color: #804000;
  border-color: #804000; */
  background-color: #0080c0;
  border-color: #0080c0;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  /* color: #804000; */
  color: #0080c0;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  /* background-color: #804000;
  border-color: #804000; */
  background-color: #0080c0;
  border-color: #0080c0;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link{
    color: #FFFFFF !important;
}
.navbar-dark .navbar-text{
    color: #FFFFFF !important;
}
.navbar-dark .navbar-nav .nav-link:hover{
    /* border-bottom: 2px solid #804000; */
    border-bottom: 2px solid #0080c0;
}
.navbar-dark .navbar-nav .dropdown-item:hover{
	/* background-color: #804000; */
	background-color: #0080c0;
	color: #FFFFFF !important;
}
.navbar-text{
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}
a:not([href]):not([tabindex]) {
    /* color: #804040; */
  	color: #0080c0;
    text-decoration: none;
}
a:not([href]):not([tabindex]):hover {
    color: #FFFFFF;
    text-decoration: none;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link{
    /* color: #804040; */
  	color: #0080c0;
	background-color: transparent;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active 
{
	color: #000000;
	background-color: #f8f9fa;
	border-color: #343a40;
}

.text-primary {
    /* color: #804040 !important; */
  	color: #0080c0 !important;
}

a.text-primary:hover, a.text-primary:focus {
  /* color: #804040 !important; */
  	color: #0080c0 !important;
}

body
{
	font-size: 0.9rem;
	font-family: 'Calibri Light';
}
.form-control
{
	font-size: 0.9rem;
	font-family: 'Calibri Light';
}

.alert
{
	display: none;
}
.errorFormulario {
    border: 2px darkred solid;
}
input:required 
{ 
  background-color: #ffff80;
}

#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.5);
    -webkit-transition: all .5s ease;
    z-index: 1000;
    display:none;
}

.decimal
{
	text-align: right;
    padding-right: 1px;
}

.custom-popover {
      max-width: 1100px; /* Ajusta el tamaño máximo */
      width: 1100px;     /* Ajusta el ancho fijo */
      font-size: 0.7rem;
	font-family: 'Calibri Light';
    }
    
.textarea {
	height: 100px; /* Ajusta la altura para simular varias filas */
            width: 100%; /* Ajusta el ancho */
            padding: 10px;
            font-size: 16px;
            box-sizing: border-box; /* Incluye el padding en el tamaño total */
            white-space: pre-wrap; /* Permite envolver texto dentro del input */
}