/*ESTILOS DEL MENU HAMBURGUESA*/
#menuToggle
{
  display: block;
  top: 50px;
  right: 50px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 10; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #f58634;
  box-shadow: 2px 2px #0000009c;
  border-radius: 3px;
  z-index: 3;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
  box-shadow: none
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  opacity: 1;
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: fixed;
  width: 280px;
  padding: 20px;
  padding-top: 40px;
  pointer-events: auto;
  background: white;
  list-style-type: none;
  -webkit-font-smoothing: antialiased; 
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  display:flex; 
  flex-direction: column; 
  justify-content: space-between; 
  align-items: center;
}



#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's fade it in from the left
 */
#menuToggle input:checked ~ div
{
  transform: none;
  opacity: 1;
}

.o-section-menu{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.div-label-menu{
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin: 1rem 0rem;
}

.label-menu{
  font-size: 1.1rem;
  color: dimgray;
}

.label-user{
  margin: 0; 
  font-size: 1.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.o-user-icon{
  font-size: 2.5rem; 
  color: black;
}

.accordion-button{
  border: none;
  justify-content: space-between;
  padding: 0;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
}

.accordion-body {
  padding: 0.3rem 1.25rem;
}

.o-opcion-entrega{
  border-radius: 3px;
  
}

.o-opcion-entrega.active{
    background-color: #f58634;
    color: white;
    border-radius: 3px;
    padding-left: 3px;
}

@media only screen and (orientation: landscape) and (max-width: 1000px) {
  #menu{
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 0px;
  }

  .o-line-at{
    flex-direction: row;
  }

  .div-label-menu{
    margin-bottom: .1rem;
  }

  .label-user{
    font-size: 1.1rem;
  }

  .o-user-icon{
    font-size: 2rem;
  }
}

.o-button-menu{
  width: 80%;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-end;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid rgb(177, 177, 177);
  border-bottom-width: thin;
}

.o-button-menu :hover{
  color: #f58634;
}

.o-button-menu i{
  font-size: 1.5rem;
  margin-right: 1rem;
}

.o-section-menu{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.o-opcion-entrega{
    border-radius: 2px;
    cursor: pointer;
}

.o-opcion-entrega.active{
    background-color: #f58634;
    color: white;
    border-radius: 2px;
    padding-left: 3px;
}