/*
HOJA DE ESTILOS CARTA RESTAURANTE
APPTELO 2020
*/

#apptelo_carta_rest{
 display: block;
}
.titulo_carta h1{
  font-size: 40px;
  text-align: center;
}
#apptelo_carta_rest .inner_container{
 display: block;
 max-width: 100%;
 margin-left: auto;
 margin-right: auto;
}
.apptelo_carta_cat{
 display: block;
 padding: 30px 0px 30px 0px;
}
.apptelo_carta_cat_header{
 display: block;
 position: relative;
 padding-right: 45px;
 text-align: center;
 border-bottom: 2px solid #777;
 margin-bottom: 30px;
 cursor: pointer;
}
.apptelo_carta_cat_header h2, .entry-content .apptelo_carta_cat_header h2{
  font-size: 35px;
  margin-bottom: 10px;
  margin-top: 0;
  position: relative;
}
.apptelo_carta_cat_header p{
  font-size: 17px;
  margin-top: 10px;
}
.apptelo_carta_cat_items{
 display: block;
 overflow: hidden;
 height: 0;
 transition: all 0.5s ease-in-out;
}
.apptelo_carta_cat_item{
  display: -webkit-flex;
  display: -moz-flex;
  display: -o-flex;
  border-bottom: 1px dotted #777;
  padding-bottom: 15px;
}
.apptelo_carta_cat_item_info{
  width: 80%;
  font-size: 17px;
}
.apptelo_carta_cat_item_info h3, .entry-content .apptelo_carta_cat_item_info h3{
  font-size: 1.2em;
  margin: 0;
}
.apptelo_carta_cat_item_actions{
  width: 20%;
}
.apptelo_carta_cat_item_actions div.quantity{
  width: 35% !important;
  display: inline-block !important;
  vertical-align: middle;
}
.apptelo_carta_cat_item_actions input{
  padding: 10px !important;
}
.apptelo_carta_cat_item_actions button, .apptelo_carta_cat_item_actions button.button{
  width: 60% !important;
  display: inline-block !important;
  font-size: 12px;
  vertical-align: middle;
  background-color: #191e23;
}
.apptelo_carta_cat_item_info .ingrediente{
    font-size: 12px;
    padding: 6px;
    background-color: #fbdc96;
    display: inline-block;
    border-radius: 4px;
    margin-right: 5px;
}
.apptelo_carta_item_ingredientes{
  margin-top: 15px;
  margin-bottom: 5px;
}
.expand_arrow{
  position: absolute;
  right: 0;
  top: -10px;
  height: 100%;
  width: 40px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  box-sizing: border-box;
}
.expand_arrow span{
  display: block;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  left: -1px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
  top: 2px;
}
.opened .expand_arrow span{
  transform: rotateZ(-180deg);
  left: 1px;
  top: -2px;
}
.expand_arrow svg{
  max-width: 50%;
  position: absolute;
  top: 8px;
  left: 7px;
  position: relative;
}
.expand_arrow svg path{
  stroke: #000;
  stroke-width: 7;
}
.apptelo_carta_cat_img{
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 150px;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media screen and (max-width: 900px){
  .apptelo_carta_cat_item_info{
    width: 65%;
  }
  .apptelo_carta_cat_item_actions{
    width: 35%;
  }
}
@media screen and (max-width: 500px){
  .apptelo_carta_cat_item_info{
    width: 55%;
  }
  .apptelo_carta_cat_item_actions{
    width: 45%;
  }
}
@media screen and (max-width: 400px){
  .apptelo_carta_cat_item_info{
    width: 100%;
  }
  .apptelo_carta_cat_item_actions{
    padding-top: 10px;
    width: 100%;
  }
  .apptelo_carta_cat_item{
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    padding-bottom: 15px;
  }
}
