
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}




:where(.fp_flex) {
    display: flex;
    gap:10px;
    flex-wrap: wrap;
}:where(.fp_flex > *) {
    flex: 1;
    /* flex: 1 0 0; */
}:where(.fp_flex.row) {
    flex-direction: row;
}:where(.fp_flex.col) {
    flex-direction: column;
}:where(.fp_flex.center) {
    place-content: center;
    place-items: center;
}:where(.fp_flex.gap-0) {
    gap:0;
}:where(.fp_flex.nowrap) {
    flex-wrap: nowrap;
}

:where(.fp_grid) {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap:10px;
}:where(.fp_grid.two) {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto;
}:where(.fp_grid.three) {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: auto;
}:where(.fp_grid.center) {
    place-content: center;
    place-items: center;
}

.woocommerce .star-rating {
    /* flex: 1; */
    flex: 1 0 20px;
    
    float: unset;
}




#fpopc_products {
    /* display: grid;
    grid-template-columns: repeat(1,1fr); */

    /* border: 1px solid #000; */
}#fpopc_products .product-item * {
    margin:0;
    /* width: 100%; */
    /* border: 1px solid #eee; */
}#fpopc_products .product-item > .product-thumbnail {
    width: max-content  ;
    flex: 0;
    line-height: 0;

}#fpopc_products .product-item > .product-thumbnail img {
    max-width: unset;
}


#fp_checkout {
    /* border: 1px solid #000; */
}   
#fp_checkout :is(th,td) {
    padding: 0;
}
#fp_checkout .form-row {
    padding: 0;
    margin:0;
}






.product-complex .product-variation {
    max-height: 0px;
    overflow: hidden;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}.product-complex.active .product-variation,
.product-complex .product-variation.active {
    max-height: 420px;
    overflow: hidden;

    opacity: 1;
    visibility: visible;
}



#fpopc_products > .product-regular {
    /* border: 1px solid #999; */
}
.product-complex .product-group_items {

    /* margin-left: 10px; */
}
.product-complex.active .product-group_items {

    /* border: 1px solid #999; */
}
.product-complex .product-group_items .product-item.active {

    /* border: 1px solid #999; */
}




.product-complex .product-variable {
    /* border: 1px solid #999; */
}
.product-complex .product-grouped {
    /* border: 1px solid #999; */
}


.product-complex.active .product-group_items .product-item {
    border-top: 1px solid #999;
}




#fpopc_products .product-item,
#fpopc_products .product-item * {
    position: relative;
}





#fpopc_products > .product-item {
    transition: .3s;
    overflow: hidden;
}#fpopc_products > .product-item:hover {
    cursor: pointer;
    transform: translateY(-3px);
    z-index: 1;
}

#fpopc_products > :is(.product-variable,.product-simple) {
    border: 1px solid #999;

    background-color: #fff;
    padding: 10px;
}


#fpopc_products .product-item .title {
    font-size: .875rem;
}

#fpopc_products .product-item p {
    font-size: .625rem;
}
#fpopc_products .product-item .price {
    font-size: .625rem;
}
#fpopc_products .product-thumbnail {
    place-content: start;
}
#fpopc_products .product-thumbnail img {
    border-left: 1px solid #999;
    border-bottom: 1px solid #999;
}








/* 
:is(.product-variablex, .product-group) .product-regular {
    max-height: 0px;
    overflow: hidden;
    transition: .3s;

}
:is(.product-variablex, .product-group).active .product-regular {
    max-height: 420px;
    overflow: hidden;
}.product-complex .product-regular {
    margin: 0  0 0 20px;
} */









#customer_details {
    max-height: 160px;
    overflow: hidden;
    transition: .3s;

    border: 1px solid #000;
}
#customer_details:hover {
    max-height: 180px;

}
#customer_details:focus-within {
    max-height: 420px;
    overflow: auto;
}
