/* Estilos para el header */
body {
  background-color: #fafafa;
}

header {
  background-color: #14805c;
  color: #fafafa;
  margin: 0px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 5px Black;
}
header .logo {
  cursor: pointer;
}
header .logo img:hover {
  transform: scale(1.15);
}
header a img {
  margin: 20px;
  height: 4.5vh;
  transition: all 0.3s;
  margin-left: 30px;
}
header nav {
  margin-right: 30px;
}
header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin: 20px;
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  color: #fafafa;
  text-decoration: none;
  font-size: 1.5rem;
}
header nav ul li a:hover {
  text-decoration: underline;
}
header .boton button {
  font-weight: 700;
  color: #14805c;
  padding: 9px 25px;
  background-color: #fafafa;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
header .boton button:hover {
  transform: scale(1.15);
}

#cotizacionesDolar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2em;
  margin-bottom: 3.5em;
}

.item-iframe, .item-iframe-blue {
  margin: 1em;
  width: 15em;
  height: 15em;
  border-radius: 20px;
  border: 1px solid #14805c;
  transition: transform 0.3s ease;
}
.item-iframe:hover, .item-iframe-blue:hover {
  transform: scale(1.1);
}

/* FIN de Header */
/*Footer*/
footer {
  background-color: #14805c;
  padding: 20px 0;
  color: #fafafa;
  font-size: 1em;
  box-shadow: 20px 0px 0px 0px;
}
footer img {
  width: 1.5em;
  height: auto;
}
footer .Mercadopago {
  width: 10em;
  height: auto;
}
footer .footer-logo {
  text-align: center;
  border: 1px #fafafa;
}
footer .footer-finantips {
  width: 40vw;
  height: auto;
}
footer .footer-content {
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  flex-wrap: wrap;
}
footer .footer-left {
  flex: 1;
}
footer .footer-left h3 {
  color: #e4e3e3;
  font-size: 1.5em;
  margin-bottom: 10px;
}
footer .footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-left ul li {
  list-style: none;
  margin-bottom: 5px;
}
footer .footer-left ul li a {
  color: #252525;
  text-decoration: none;
}
footer .footer-left ul li a:hover {
  text-decoration: underline;
}

.footer-right {
  flex: 1;
}
.footer-right h3 {
  color: #e4e3e3;
  font-size: 1.5em;
  margin-bottom: 10px;
}
.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-right ul li {
  margin-bottom: 5px;
}
.footer-right ul li a {
  color: #252525;
  text-decoration: none;
}
.footer-right ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  background-color: #111111;
  padding: 10px;
  text-align: center;
  font-size: 1em;
  text-align: center;
  color: #adadad;
}
.footer-bottom .footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-bottom .version {
  margin-right: 10px;
}
.footer-bottom .fecha {
  margin-left: 10px;
}

/* FIN Footer */
/* Index main*/
.container {
  display: flex;
  width: auto;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  background-color: #14805c;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
.container h2 {
  font-size: 6.5vw;
  color: #fafafa;
  font-weight: bold;
}
.container p {
  font-size: 2em;
  color: #fafafa;
  max-width: 1200px;
  margin: 2em;
}
.container button {
  font-weight: 700;
  color: #14805c;
  padding: 9px 25px;
  margin: 1em;
  background-color: #fafafa;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.container button:hover {
  transform: scale(1.1);
}

#containerInformacion div h3 {
  color: #14805c;
  font-size: 7vh;
}

#sectionInformacion {
  margin: 6em 1em 6em 1em;
}

#containerInformacion {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.dolar {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgb(0, 0, 0)), url(../img/Dolares.JPG);
  border-radius: 1em;
  margin: 1em 0em;
  padding: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.dolar .boton button {
  font-weight: 700;
  color: #14805c;
  padding: 9px 25px;
  background-color: #fafafa;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.dolar .boton button:hover {
  transform: scale(1.1);
}

.pesos {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgb(0, 0, 0)), url(../img/Pesos.jpg);
  background-position: center;
  border-radius: 1em;
  margin: 1em 0em;
  padding: 30px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.pesos .boton button {
  font-weight: 700;
  color: #14805c;
  padding: 9px 25px;
  background-color: #fafafa;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}

.pesos .boton button:hover {
  transform: scale(1.1);
}

/*FIN de Index main*/
/* calculadoras main */
.container-box {
  text-align: center;
  margin: 1em;
  margin-bottom: 2em;
  padding: 2em;
  border: 5px solid #14805c;
  border-radius: 1em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(0, 0, 0, 0.3);
}
.container-box h2 {
  color: #14805c;
  font-size: 4.5vw;
  height: auto;
  font-weight: bold;
  grid-column: 1/4;
}
.container-box .box1,
.container-box .box2,
.container-box .box3 {
  width: auto;
  border-radius: 1em;
  background-size: cover;
  align-items: center;
  justify-content: center;
  align-content: center;
  transition: 0.5s;
  color: #14805c;
  font-weight: bold;
  margin: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  height: 500px;
}
.container-box .box1 h3,
.container-box .box2 h3,
.container-box .box3 h3 {
  color: #14805c;
  font-size: 2vw;
  height: auto;
  font-weight: bold;
  grid-column: 1/4;
}
.container-box .box1:hover {
  transform: scale(1.02);
}
.container-box .box2:hover {
  transform: scale(1.02);
}
.container-box .box3:hover {
  transform: scale(1.02);
}
.container-box .box1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url(../img/fotoSueldoNeto.jpg);
}
.container-box .box2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url(../img/fotoPlazoFijo.jpeg);
}
.container-box .box3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url(../img/fotoImpuestoGanancias.jpeg);
}
.container-box .box1 .boton button {
  font-weight: 700;
  color: #14805c;
  padding: 9px 25px;
  background-color: #fafafa;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  font-size: 1.2em;
}
.container-box .box1 .boton button:hover {
  transform: scale(1.1);
}
.container-box .box2 .boton button {
  font-weight: 700;
  color: #14805c;
  padding: 9px 25px;
  background-color: #fafafa;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  font-size: 1.2em;
}
.container-box .box2 .boton button:hover {
  transform: scale(1.1);
}
.container-box .box3 .boton button {
  font-weight: 700;
  color: #14805c;
  padding: 9px 25px;
  background-color: #fafafa;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  font-size: 1.2em;
}
.container-box .box3 .boton button:hover {
  transform: scale(1.1);
}

/* FIN de calculadoras */
/*Inicio cuotas mian */
.explicacionImpuesto {
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
  margin: 2em;
  margin-bottom: 5em;
}

.tituloExplicacion {
  font-size: 1.3em;
}

/*FIN cuotas main*/
/* Inicio plazofijo main */
.interesCompuesto input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #14805c;
  border-radius: 4px;
  outline: none;
  transition: background-color 0.3s;
}

.interesCompuesto input[type=checkbox]:checked {
  background-color: #14805c;
}

.interesCompuesto {
  margin-left: 10px;
  font-weight: bold;
  margin-top: 1.5em;
  border-bottom: 2px solid lightgrey;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.explicacionPlazoFijo {
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
  margin: 2em;
  margin-bottom: 5em;
}

.tituloExplicacion {
  font-size: 1.3em;
}

.explicacionInteresCompuesto {
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
  margin: 2em;
  margin-bottom: 5em;
}

.tituloInteresCompuesto {
  font-size: 1.3em;
}

/* FIN plazofijo main */
/* Inicio sueldoneto main */
.containerBox2 {
  text-align: center;
  margin: 1em;
  margin-bottom: 2em;
  padding: 1em;
  border-radius: 1em;
  justify-content: center;
  display: flex;
  flex-direction: column;
  border: 5px solid #14805c;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  align-items: center;
}
.containerBox2 form {
  max-width: 800px;
  width: 100%;
  align-items: center;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
}
.containerBox2 .actualizacion {
  margin: 1em auto;
  border: 2px solid rgb(82, 79, 79);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  max-width: 400px;
  color: rgb(56, 55, 55);
  background-color: #bbcbf8;
}
.containerBox2 h1 {
  font-size: 2em;
  color: #14805c;
  padding-bottom: 0.5em;
  border-bottom: 3px solid #14805c;
}
.containerBox2 h2 {
  margin-top: 1em;
  font-size: 1.6em;
  color: #14805c;
  padding-bottom: 1.5em;
  text-decoration: underline;
  font-weight: 500;
}
.containerBox2 h3 {
  margin-top: 1em;
  font-size: 1.6em;
  color: #14805c;
  padding-bottom: 1.5em;
  text-decoration: underline;
  font-weight: 500;
}
.containerBox2 .formulario-box {
  margin-top: 1.5em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid lightgrey;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.containerBox2 .caja-resultados {
  background-color: #f0f0f0;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.containerBox2 .caja-resultados .ResultadosCalculo {
  border: 2px solid #14805c;
  border-radius: 3px;
}
.containerBox2 .caja-resultados .downloadFile {
  height: 40px;
  width: 40px;
}
.containerBox2 .horasExtra {
  display: flex;
  justify-content: space-between;
  margin: 1.5em;
  flex-wrap: wrap;
}
.containerBox2 .sabadoM {
  background-color: chocolate;
  color: white;
  padding: 1em;
  margin: 0.5em;
  flex: 1 1 45%;
  box-sizing: border-box;
}
.containerBox2 .feriado {
  background-color: blue;
  color: white;
  padding: 1em;
  margin: 0.5em;
  flex: 1 1 45%;
  box-sizing: border-box;
}
.containerBox2 .eliminar-historial {
  background-color: #14805c;
  color: #fafafa;
  padding: 0.5em 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.containerBox2 .eliminar-historial:hover {
  background-color: #ff4d4d;
}
.containerBox2 .eliminar-historial:active {
  background-color: #ff4d4d;
}
.containerBox2 #item-historial {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  height: auto;
}
.containerBox2 #item-historial .eliminar-recibo {
  color: #fafafa;
  background-color: #14805c;
  padding: 0.5em;
  border: 1px solid #14805c;
  border-radius: 5px;
  max-width: 200px;
  cursor: pointer;
}
.containerBox2 #item-historial .eliminar-recibo:hover {
  background-color: #ff4d4d;
  color: #fafafa;
  border: 1px solid #fafafa;
}
.containerBox2 #item-historial .eliminar-recibo:active {
  background-color: #ff4d4d;
  color: #fafafa;
  border: 1px solid #fafafa;
}
.containerBox2 label {
  display: inline-block;
  width: 200px;
  font-weight: bold;
}

/* Estilo para los resultados span con ID sabadoM y feriado */
#sabadoM,
#feriado {
  font-style: italic;
}

select,
input[type=number],
input[type=radio],
button {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
}

.boton4 {
  font-weight: 700;
  color: #fafafa;
  padding: 12px 35px;
  background-color: #14805c;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  margin-top: 1em;
  margin-bottom: 1em;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.boton4:hover {
  transform: scale(1.1);
}

.donar-container {
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  border: 2px solid #14805c;
  border-radius: 10px;
  padding: 20px;
  align-items: center;
  background-color: #f9f9f9;
}

/* TABLAS ESTILOS */
/* Estilos para la tabla de resultados */
.ResultadosCalculo {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.ResultadosCalculo th,
.ResultadosCalculo td {
  padding: 8px;
  text-align: left;
  border: 1px solid #dddddd;
}

.ResultadosCalculo thead {
  background-color: #f2f2f2;
}

.ResultadosCalculo th {
  text-align: center;
  background-color: #14805c;
  color: white;
  border: 1px solid #dddddd;
}

.ResultadosCalculo tbody td {
  text-align: right;
}

.ResultadosCalculo tfoot {
  background-color: #f2f2f2;
}

.ResultadosCalculo tfoot td {
  text-align: right;
  font-weight: bold;
}

.ResultadosCalculo tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.ResultadosCalculo tbody tr:hover {
  background-color: #e0e0e0;
}

.ResultadosCalculo td[colspan="2"] {
  font-weight: bold;
  text-align: right;
  background-color: #f2f2f2;
}

.ResultadosCalculo td:nth-child(3),
.ResultadosCalculo td:nth-child(4) {
  font-weight: normal;
  text-align: right;
}

/* TABLAS ESTILOS */
/* Anuncio "EL SANTIA" */
.anuncioPrivado {
  display: none;
  width: 100%;
  height: auto;
  cursor: pointer;
}
.anuncioPrivado img {
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
}

.anunciofijo {
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

/* Anuncio "EL SANTIA" */
/* FIN sueldoneto main */
/* Inicio de pesos */
.financial-main {
  margin: 3em;
  border-radius: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 2em;
  border: 5px solid #14805c;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 768px) {
  .financial-main {
    flex-direction: column;
    align-items: center;
  }
}

.instrument {
  background-color: #fafafa;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  width: calc(33.33% - 20px);
}
@media only screen and (max-width: 1024px) {
  .instrument {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 768px) {
  .instrument {
    width: calc(100% - 20px);
  }
}

.instrument img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.instrument h2 {
  color: #14805c;
  font-size: 1.2rem;
  margin-top: 10px;
}

.instrument p {
  color: #333;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 10px;
}

/* Fin de Pesos */
/* Media Querys */
@media only screen and (max-width: 1200px) {
  header {
    flex-wrap: wrap;
    justify-content: center;
  }
  header nav ul {
    gap: 20px;
  }
  header nav ul li a {
    font-size: 2.5vw;
  }
  .container p {
    font-size: 1.2em;
  }
}
@media only screen and (min-width: 1200px) {
  footer {
    font-size: 1.2em;
  }
  footer img {
    width: 2em;
    height: auto;
  }
}
@media only screen and (max-width: 1000px) {
  main .container-box {
    display: flex;
    flex-direction: column;
  }
  .container-box .box1,
  .container-box .box2,
  .container-box .box3 {
    height: 250px;
    width: auto;
  }
  .container-box .box1 h3,
  .container-box .box2 h3,
  .container-box .box3 h3 {
    font-size: 4vw;
  }
}
@media (min-width: 977px) {
  #sectionInformacion {
    display: flex;
    justify-content: center;
    height: 70vh;
  }
  #containerInformacion {
    display: contents;
    align-items: center;
  }
  #containerInformacion .dolar {
    padding: 9em;
    margin: 2em;
    background-position: center;
  }
  #containerInformacion .pesos {
    padding: 9em;
    margin: 2em;
    background-position: center;
  }
}
@media only screen and (max-width: 960px) {
  .container p {
    font-size: 1em;
  }
}
@media only screen and (max-width: 900px) {
  .Mercadopago {
    width: 7em;
    height: auto;
  }
}
@media (max-width: 768px) {
  .item-iframe, .item-iframe-blue {
    width: 11em;
    height: 13em;
  }
  .horasExtra {
    flex-direction: column;
    align-items: center;
  }
  .sabadoM,
  .feriado {
    flex: 1 1 100%;
  }
}
@media only screen and (max-width: 650px) {
  .anuncioPrivado {
    display: block;
  }
  header a img {
    height: 4vh;
  }
  header nav ul {
    gap: 15px;
  }
  header nav ul li a {
    font-size: 3vw;
  }
  .containerBox2 {
    margin: 1em;
  }
  .financial-main {
    margin: 1em;
  }
}
@media only screen and (max-width: 600px) {
  .anuncioPrivado {
    display: block;
  }
  .container p {
    font-size: 0.8em;
  }
  main .container-box h2 {
    font-size: 7vw;
  }
  .box1,
  .box2,
  .box3 {
    height: 150px;
    font-size: 0.8em;
  }
  .containerBox2 {
    margin: 0.4em;
    margin-bottom: 1.2em;
  }
}
@media (max-width: 480px) {
  .anuncioPrivado {
    display: block;
  }
  #cotizacionesDolar {
    margin-top: 1em;
    margin-bottom: 2.5em;
  }
  .item-iframe {
    display: none;
  }
  .item-iframe-blue {
    width: auto;
    height: 15em;
  }
  .containerBox2 {
    margin: 0.2em;
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 480px) {
  .anuncioPrivado {
    display: block;
  }
  .footer-finantips {
    width: 55vw;
    height: auto;
    margin: 20px;
  }
  .footer-left,
  .footer-right {
    margin: 20px;
  }
  header nav ul li a {
    font-size: 0.8em;
  }
}
@media (max-width: 413px) {
  .anuncioPrivado {
    display: block;
  }
  .containerBox3 {
    text-align: left;
    margin: 4em;
    padding: 1.5em;
    border: 5px solid #14805c;
    border-radius: 1em;
  }
}
@media (max-width: 353px) {
  .anuncioPrivado {
    display: block;
  }
  #cotizacionesDolar {
    margin-top: 1em;
    margin-bottom: 2.5em;
  }
  .item-iframe {
    width: 8.5em;
    height: 13em;
    margin: 0.5em;
  }
}

/*# sourceMappingURL=styles.css.map */
