* {
    box-sizing: border-box;
    border-spacing: 0px;
}

header {
    font-size: 20px;
    font-weight: 600;
}

a {
    color: inherit;
}

html {
    font-family: "Open Sans", sans-serif;
}

.bg-blue {
    background-color: #004c66;
}

.bg-green {
    background-color: #c9f7a6;
}

.bg-gray {
    background-color: #f5f5f4;
}

.bg-dark-gray {
    background-color: #272b3a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Quicksand", sans-serif;
}

.text-center {
    text-align: center;
}

.margin-auto {
    margin: auto;
}

.m-left {
    margin-left: 40px;
}

.m-right {
    margin-right: 40px;
}

.w-100 {
    width: 100%;
}

.viewport-100 {
    width: 100vw;
}

.no-link {
    text-decoration: none;
}

.no-list {
    list-style-type: none;
    padding: 0;
}

.no-list li {
    padding-right: 4px;
}

.color-white {
    color: white;
}

.progressive-links {
  display: flex;
}

.errors {
  color: red
}


/* Estilos generales del header */
.header-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0px auto;
    padding: 5px 15px;
    color: white;
}

.navbar-menu {
    display: flex;
    justify-content: space-around;
    padding: 0;
}

.index-navbar {
    display: none;
    width: 70%;
}

.header-img {
    width: 145px;
    height: 75px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(356deg)
        brightness(101%) contrast(101%);
}
.main-header {
    border-bottom: 2px solid rgb(239, 242, 245);
}

.header-options {
    display: none
}
.header-options .universal-options a:hover {
    color: #56e404;
}

.header-options .universal-options i {
    width: 24px;
    margin-left: 15px;
    font-size: 18px;
}

.user {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 4px;
    margin-left: 12px;
}

/* boton de dropwdown */
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  overflow: hidden;
}


/* contenedor div necesario para posicionar el contenido del dropdown */
.dropdown {
  position: relative;
}

/* contenido del dropdown (escondido por defecto) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #272b3a;
  min-width: 160px;
  border: 0.5px solid black;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 3;
}

/* links dentro del dropdown */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
}

.dropdown-content a:hover {background-color: rgba(46, 49, 59, 0.5);}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}

/* estilos del menu de navegacion hamburguesa */
.burguerMenu {
    display: none;
    overflow: hidden;
    position: absolute;
    top: 80px;
    right: 0px;
    z-index: 3;
    background-color: #272b3a;
    height: 100vh;
    width: 60vw;
}
/* esconde los links dentro del menu hamburguesa */
.burguerMenu .myLinks {
    display: none;
    background-color: #272b3a;
}

/* estilo de links del menu hamburguesa */
.burguerMenu a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
}

.burguerMenu a i {
    display: none;
}

/* estilos de links del menu hamburguesa en hover */
.burguerMenu a:hover {
    background-color: rgba(46, 49, 59, 0.5);
    color: #70b429;
}

/* estilos para links "activos" */
.active {
    background-color: #04aa6d;
    color: white;
}

body {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* estilos generales de main */
.main-container {
    width: 100%;
    max-width: 1400px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

footer {
    margin-top: auto;
}

/* estilos generales de footer */
.footer-nav-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 5px 15px;
    color: white;
    margin: 0 auto;
    max-width: 1400px;
}

.footer-img {
    width: 145px;
    height: 75px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(356deg)
        brightness(101%) contrast(101%);
}
.footer-navbar ul {
    padding: 0;
    list-style-type: none;
}
.footer-navbar-list {
    display: flex;
}
.footer-navbar-list li {
    padding: 0 15px;
}
.copyright {
    width: 100%;
    font-size: 12px;
}

.hidden {
    display: none;
}

@media (min-width: 768px) {
    .fa-wallet {
        display: inline-flex;
        align-items: center;
    }
    .universal-options {
        display: flex;
        align-items: center;
    }
    .header-options .universal-options a {
        display: block;
    }
}

@media (min-width: 1200px) {
    .icon {
        display: none;
    }
    .burguerMenu {
        display: none;
    }
    .header-options {
        display: block;
    }
    .index-navbar {
        display: block;
    }
}