/* Quick Order CSS */
button#downlodSample {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: auto;
}
.fileuploader-file h2 {
  font-size: 36px;
  text-align: center;
}
label.csvFileInput-label {
    margin: auto;
    padding: 3em;
    border: 2px dashed #68604d;
    background-color: #fff;
    transition: border-color 0.25s ease-in-out;
    font-family: 'Jost', sans-serif;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 30px;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
    position: relative;
    background: #EBECE8;
}
.button-primary.finalize-cart-btn {
    display: block;
    margin-left: auto;
}
label.csvFileInput-label span#csvfileLabel {
    font-size: 20px;
    font-weight: 500;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
input#csvFileInput {
    appearance: none;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
}
label.csvFileInput-label img {
    width: 80px;
    aspect-ratio: 1;
    display: block;
}

label.csvFileInput-label::after {
    content: "Browse";
    background: #68604d;
    border: none;
    color: #fff;
    font-family: 'Jost', sans-serif;
    line-height: 100%;
    cursor: pointer;
    padding: 16px 28px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
}
#csvOutput th,#csvOutput td {
    padding: 8px 20px;
    font-size: 16px;
    border: none;
}
#csvOutput th {
    font-size: 18px;
    padding: 12px 20px;
    background: #333333;
    color: #fff;
    font-weight: 500;
    text-align: left;
}
#csvOutput tr {
    border: none;
}
#csvOutput td input.qty-input.digits-only {
    border: 1px solid #efefef;
    background: #fff;
    padding: 9px;
    text-align: center;
    outline: none;
}
#csvOutput table {
    /* border-collapse: collapse; */
    border-spacing: 0;
}
p.row-empty-error strong {
    display: block;
    font-family: 'Jost',sans-serif;
    color: red;
    text-align: center;
}
.download_sample_wrap {
    text-align: center;
    margin-bottom: 30px;
}
#csvOutput table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
} 
#csvOutput table tr:last-child td:last-child {
    border-bottom-right-radius: 10px !important;
}
#csvOutput table tr th:first-child {
    border-top-left-radius: 10px;
} 
#csvOutput table tr th:last-child {
    border-top-right-radius: 10px !important;
}
#csvOutput tr:nth-child(even) {
    background: #fdfdfd;
}
#csvOutput tr:nth-child(odd) {
    background: #f7f7f7;
}
#csvOutput th:last-child {
    width: 160px;
}
h3.sample_titl {
    line-height: 1;
}
button#downlodSample::after {
    content: "";
    width: 27px;
    height: 28px;
    display: inline-block;
    background: url(/wp-content/themes/project-cabinet/modules/quick-order/assets/images/csv.svg);
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
}
div:where(.swal2-container){
    z-index: 999999 !important;
}

/* @media(min-width:1200px){
    label.csvFileInput-label:hover::after {
        background: #fff;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
    }
} */
@media(max-width:767px){
    .csv_table_wrap table {
        width: 800px;
    }
    .csv_table_wrap {
        overflow: auto;
    }
    .fileuploader-file h2 {
        font-size: 24px;
    }
    label.csvFileInput-label {
        padding: 2em;
    }
    h3.sample_titl {
        font-size: 20px;
        line-height: 1;
    }
}