.quick_order{
  width: 100%;
  table-layout: fixed;
  background: var(--lt-gray);
  margin-bottom: 24px;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
.quick_order_wrap{
  margin-bottom: var(--space-xl);
  padding: 0 20px;
}
.quick_order th, .quick_order td{
  padding: 8px 15px;
  border-top: 1px solid #ddd;
}
.quick_order tr:nth-child(even){
  background: rgba(255,255,255,0.6);
}
.quick_order tr.selected{
  background: #fdf9cf;
}
.quick_order_nav .quick_order{
  background-color: var(--secondary);
  color: #fff;
  border: none;
  margin-bottom: 0;
}
.quick_order_nav .quick_order_fixed {
  transition: .15s ease-in-out;
}
body.o-header-sticky_js .quick_order_nav .quick_order_fixed{
  position: fixed;
  top: 0;
  left: 20px;
  right: 20px;
  z-index: 50;
  width: auto;
}
body.o-header-sticky_js.admin-bar .quick_order_nav .quick_order_fixed{
  margin-top: 134px;
}
.quick_order_nav .quick_order th,
.quick_order_nav .quick_order td{
  padding-bottom: 5px;
  border: none;
}
.quick_order_name{
  width: 35%;
}
.quick_order_name a{
  color: inherit;
}
.quick_order_name a:hover{
  color: var(--secondary);
}
.quick_order_btn{
  display: inline-block;
  vertical-align: middle;
  margin: -5px -13px 0 5px;
  color: #fff;
  border: none;
  padding: 0 4px;
  background-color: transparent !important;
  outline: none!important;
}
.quick_order_btn img{
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 16px;
  transition: filter 0.24s;
}
.quick_order_btn:hover img{
  filter: invert(95%);
}
.quick_order .price{
  min-width: 47px;
  display: inline-block;
}
.quick_order_variation input{
  padding: 2px 8px;
  border: 1px solid #cacaca;
  margin-top: 0;
  width: 41px;
  height: 26px;
  text-align: center;
}
.quick_order_variation input.selected{
  border-color: var(--secondary);
  border-width: 2px;
}
.quick_order_submit_btn {
  width: 100%;
  text-align: center;
}
.quick_order_submit_btn .btn {
  display: inline-block;
  border: none;
}
.quick_order_submit_btn .btn:hover {
  background-color: #e67f08;
  border-color: #d97808;
}
.quick_order_backdrop{
  position: fixed;
  top: 0;
  bottom: -60px;
  left: 0;
  right: 0;
  z-index: 10000000;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.35s;
}
.quick_order_modal{
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 1100px;
  z-index: 10000001;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  padding: 40px 30px;
  opacity: 0;
  transform: translate(-50%, -50%);
  margin-top: -35px;
  transition: opacity 0.35s, transform 0.35s, margin 0.35s;
  overflow: auto;
  max-height: 85%;
}
.quick_order_modal_opened .quick_order_backdrop{
  opacity: 1;
}
.quick_order_modal_opened .quick_order_modal{
  opacity: 1;
  margin-top: 0;
}
.quick_order_prod{
  display: flex;
  width: 100%;
}
.quick_order_img{
  flex: 0 0 30%;
  width: 30%;
}
.quick_order_img img{
  transform: scale(0.8);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;  
}
.quick_order_img img.loaded{
  transform: scale(1);
  opacity: 1;  
}
.quick_order_content{
  flex-grow: 1;
  padding-right: 34px;
}
.quick_order_content h2{
  margin-bottom: 24px;
}
.quick_order_close{
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 40px;
  background-color: var(--secondary);
  border: none;
  outline: none!important;
  transition: background 0.24s;
}
.quick_order_close:hover{
  background: var(--primary);
}
.quick_order_close:before, .quick_order_close:after{
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #FFFFFF;
  margin: -1px -9px;
  transform: rotate(45deg);
}
.quick_order_close:after{
  transform: rotate(-45deg);  
  border: none;
}
@media screen and ( min-width: 768px ) and ( max-width: 1024px ){
  .quick_order_name{
    line-height: 18px;
  }
  .quick_order_btn {
    margin: -2px -15px 0 -1px;
  }
}
@media screen and ( min-width: 768px ) and ( max-width: 999px ){
  body.o-header-sticky_js .quick_order_nav .quick_order_fixed{
    top: 0 !important;
    transition: none;
  }
}
@media screen and ( min-width: 768px ) and ( max-width: 782px ){
  body.o-header-sticky_js.admin-bar .quick_order_nav .quick_order_fixed{
    margin-top: 46px;
  }
}
@media screen and ( max-width: 767px ){
  .quick_order_nav{
    display: none;
  }
  .quick_order, .quick_order tbody, .quick_order tr, .quick_order td{
    display: block;
    width: 100%;
    border: none;
  }
  .quick_order{
    border: 1px solid #ddd;
    border-top: none;      
  }
  .quick_order td{
    border: none;
  }
  .quick_order tr{
    border-top: 1px solid #ddd;  
    padding: 13px 9px;  
  }
  .quick_order_name{
    font-weight: bold;
    font-size: 18px;
    line-height: normal;
  }
  .quick_order_variation{
    padding: 3px 15px;
  }
  .quick_order .quick_order_variation{
    display: flex;
    align-items: center; 
  }
  .quick_order_variation:before{
    content: attr(data-title) ": ";
    font-weight: 600;
    min-width: 103px;
    display: inline-block;
    margin-right: auto;
  }
  
  .quick_order_prod{
    display: block;
  }
  .quick_order_img{
    margin: 0 auto 36px;
    max-width: 280px;
    width: 100%;
  }
  .quick_order_content{
    text-align: center;
    padding-right: 0;
  }
  .quick_order_modal{
    max-height: 1000000px;
    transform: none;
    top: 16px;
    bottom: 20px;
    width: auto;
    left: 16px;
    right: 16px;
  }
}
