*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	font-size: 15px;
}

:root {
	--verde: #4A8779;
	--naranja: #EF7D00;
	--gris: #706F6F;
    --naranjaClaro:#d69650;
    --naranjaMasClaro:#db7f199c;
    --verdeOscuro: #2d5149;
    --naranjaOscuro: #9b5408;
	--naranjaSuperClaro:#f3db6440;
}
/* .navbar-dark .navbar-brand a {
    margin-right: 0;
} */
* a.boton{
	background-color:black;
	padding: 10px;
	display: inline-block;
	color: white;
	text-decoration: none;
	font-weight: bold;
	margin: 5px;
	border-radius: .25rem;
}
a.boton:hover {
	cursor: pointer;
	background: rgb(107, 107, 107);
  }

body{
	line-height: 1 !important;
}

a {
	list-style: none;
	text-decoration: none;
}
.btn{
	font-weight: bold;
	/* ver cuando tenga contenido */
 }
 .btn:hover{
	font-weight: bold;
	cursor: pointer;
	background: rgb(107, 107, 107);
 }

.btn-primary{
	font-weight: bold;
    background-color: var(--verde);
    border-color:#2a4b44;
 }
 .btn-primary:hover{
    cursor: pointer;
	background: rgb(107, 107, 107);
 }

.table-responsive { /* Outer container */
    display: inline-block; /* (1) */
    width: 100%; /* (1) */
    /* overflow: visible; */
    margin: 0.2em;
    min-height: 3em;
    min-width: 6em;
    resize: both;
    font-family: 'Arial', sans-serif;
	max-height: 20em;
}
.table-responsive table { /* Table */
    border-collapse: collapse;  /* (3) Default value */
    border-spacing: 0;  /* (3) */
}

.table-responsive table thead tr{ /* Cells of the first row */
	padding: 9px;

}
.table-responsive table thead tr:first-child * { /* Cells of the first row */
    position: sticky; /* (2) */
    top: 0; /* (2) */
    z-index: 1; /* (2) */
	color: white;
	background-color: rgb(40, 38, 38);
	font-weight: bold;
	text-transform: uppercase;
	padding: 9px;
	width: auto;
}

.table-responsive table thead tr *:first-child { /* Cells of the first column */
    position: sticky; /* (2) */
    left: 0; /* (2) */
    z-index: 2; /* (2) */
	background-color: rgb(40, 38, 38);
	font-weight: bold;
	text-transform: uppercase;
	width: auto;
}
.table-responsive table thead  tr:first-child *:first-child { /* Top left cell */
    z-index: 3; /* (2) */
	background-color: rgb(40, 38, 38);
	font-weight: bold;
	text-transform: uppercase;
	width: auto;
	border-radius: 8px 0 0 8px;
}
.table-responsive table thead  tr:first-child *:last-child { /* Top left cell */
	border-radius: 0 8px 8px 0;
}

table #myTable tr{
	margin-top: 20px;
}
table tbody tr:nth-child(even){
	background-color: gainsboro;
	/* background-color: rgba(0, 0, 0, 0.05); */
}

table tbody tr:hover{
	/* font-weight: bold; */
	color: var(--gris);
}
.table>:not(caption)>*>* {
    border-bottom-width: 0px;
}

table td, th{
	padding: 5px;
}

table thead tr th.num{
	text-align: right;
}

table tbody tr td.num{
	text-align: right;
}

div.sombra{
	margin: 10px;
	padding: 10px 20px;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.logo {
    max-width: 30%;
    height: auto;
    margin-left: 4%;
}
.form-control {
	margin: 4px 0;
	border-radius: 6px;
  }
  .nav-item #navLink {
    color: white;
}

 /*-----------------------@MEDIA Responsive------------------------*/

/* ----------------------------------------------------------------
                                    nav
----------------------------------------------------------------- */
@media (max-width: 992px) {
	.navbar-collapse {
		flex-basis: 100%;
		flex-grow: 1;
		align-items: center;
		position: absolute;
		background-color: var(--verdeOscuro);
		width: 28%;
		padding: 2%;
		border: solid var(--naranjaSuperClaro) 6px;
		border-radius: 8px;
		margin-top: 129px;
		margin-left: 60%;
		z-index: 999;
	}
}
@media (max-width: 500px) {
	.navbar-collapse {
		width: 36%;
		margin-top: 129px;
		margin-left: 50%;
	}

	a {
		font-size: medium;
	}
}
@media (max-width: 398px) {
   .navbar-toggler{
	position: absolute;
    margin-left: 80%;
    }
	
}
/* ----------------------------------------------------------------
                               FIN NAV
----------------------------------------------------------------- */

  @media (max-width: 560px) {
	.table>:not(:last-child)>:last-child>* {
		border-bottom-color: currentColor;
		font-size: medium;
	}
	a {
		line-height: 12px;
	  }
	table>:not(caption)>*>* {
		font-size: medium;
	}
 .btn {
    line-height: 1;
    font-size: medium;
}
 .table-responsive table thead tr:first-child * { /* Cells of the first row */
	padding: 5px;
}
}
/* @media (max-width: 405px) {
	.navbar-toggler{
		position: relative;
	}

} */


 @media (max-width: 380px) {
	.table-responsive table thead tr:first-child * { /* Cells of the first row */
		padding: 3px;
		font-size:small;
	}
	.table>:not(:last-child)>:last-child>* {
		font-size:small;
	}
	.table>:not(caption)>*>* {
		font-size: small;
		padding: .5rem .2rem;
	}
	.btn{
    line-height: 0.7;
	font-size:medium;
	padding: 6px 5px;
	/* ver cuando tenga contenido */
    }	
 }
