@charset "utf-8";

body{
  width: calc(100% - 15px);
}

.buy_aria{
  border:1px solid #000;
  border-radius: 7px;
  padding:15px 15px;
  background-color: #C2C2C2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.total_price{
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--fe-red);

}
.buy_button{
  white-space:nowrap;
  font-size:1rem;
  line-height:2.5;
  width:fit-content;
  padding:5px 20px;
  margin:0px 10px 0px 30px;
  border:1px solid #747272;
  border-radius: 5px;
  background-color: #F8A740;
}

.no_cart{
  text-align: center;
  margin: 40px 0px;
  font-weight: bold;
  font-size: 1.5rem;
}

.item_list .item_line{
  margin: 0 10px 10px 10px;
  padding: 10px 0px 10px 10px;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
}

.item_line .item_name{
  min-width:fit-content;
  width:100%;
}

.item_line .item_variation{
  min-width:fit-content;
  margin:0px;
  padding:0 10px;

}

.item_line .item_price{
  padding-right:10px;
  width:100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.item_line .item_subprice{
  padding-right:10px;
  width:100%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.item_line .item_delete{
  padding-right:10px;
  width:100%;
  padding:10px 5px;
  display: flex;
  align-items: center;
 justify-content: flex-end;
}

.delete_button{
  white-space: nowrap;
  font-size: 1rem;
  width: fit-content;
  padding: 5px 5px;
  border: 1px solid #939393;
  border-radius: 5px;
  background-color: #CFCECD;
}

@media (min-width:756px){
body{
  width:100%;
}
  
.item_list .item_line{
  margin: 0 0 10px 10px;
  padding: 10px 0px 10px 10px;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
}

.item_line .item_name{
  min-width:fit-content;
  width:50%;
}

.item_line .item_variation{
  min-width:fit-content;
  padding-right:10px;
}

.item_line .item_price{
  width:25%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.item_line .item_subprice{
  font-weight: bold;
  width:15%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.item_line .item_delete{
  width:9%;
  padding:0 5px;
  display: flex;
  align-items: center;
 justify-content: flex-end;
}
}