*{
    outline: none;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  ul{
    margin-top: 30px;
  }
  li{	  
    font-size: 30px;
    font-weight: 100;
    text-align: left;
  }

  .total-cont{
    margin-top: auto;
  }
  .cont-cart{
    padding-left: 20px;
    padding-right: 20px;
    background-color: #eee;
    height: 100%;
    width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 70px;
    /* align-items: center; */
  }
  .cont-cart>p{
    font-size: 20px;
    font-weight: 100;
    text-align: center;
  }
  .container{
    display: flex;
    justify-content: space-evenly;
    margin-top: 10px;
  }
  .main-nav{
    display: flex;
    height: 60px;
    background-color: #33f;
    position: sticky;
    top: 0;
  }
  .main-nav>h4{
    margin: auto;
    font-size: 30px;
    color: white;
  }
  .cont-products{
    background-color: #eee;
    width: 60%;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
  }
  .producto{
    /* padding: 8px; */
    margin: auto;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px 2px;
    border: 1px solid black;
    background-color: #fff;
  }
  .producto .locked{
    background-color: black;
  }
  .producto>h2{
    text-align: center;
    font-size: 30px;

  }
  .producto>img{
    width: 80%;
  }
  .producto>button{
    color: white;
    padding: 5px;
    font-size: 16px;
    background-color: #33f;
    width: 100%;
    margin-top: auto;
  }
  #total{
    margin-top: 20px;
    border-top: 1px solid black;
  }
  #cart-columns{
    display: flex;
    justify-content: space-between;
  }
  .x{
    width: 15px;
    margin-right: 10px;
    cursor: pointer;
  }
  .comprar{
    font-size: 30px;
    height: 50px;
    background-color: #33f;
    color: white;
  }
  .hidden{
    display:none;
  }
  #precio-final{
    padding-left: 20px;
    padding-right: 20px;
    background-color: #eee;
    height: 100%;
    width: 400px;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 70px;
  }
  #precio-final>p{
    font-size: 100px;
  }