/* Request Quote Search-bar  Kiruba start */
.add-part-box {
    border: 2px dashed #777;
    padding: 30px;
    text-align: center;
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 10px;
    background: #eee;
    font-size: 20px;
}

.quote-wrapper {
    background: #e1e1e1;
    padding: 30px;
    border-radius: 15px;
    margin: auto;
    width: 70%;
}

.close-box {
    position: relative;
    margin-bottom: 20px;
}

.s-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    cursor: pointer;
}

.s-item:hover {
    background: #f0f0f0;
}

.search-section {
    display: none;
}

.heading-quote h2 {
    font-size: 30px !important;
    color: rgb(86, 86, 86) !important;
    margin: 0;
}

.close-icon {
    text-align: end;
    right: 0px;
    top: -40px;
    cursor: pointer;
    position: absolute;
    padding: 10px;
    font-size: 36px;
    transform: rotate(45deg);
}

.inner-text-quote div {
    font-size: 20px;
    font-weight: 600;
    color: rgb(86, 86, 86) !important;
}

input#partSearch {
    width: 100%;
    border-radius: 8px;
    margin-top: 15px;
    border: 0.7px solid #d0d0d06b !important;
    /* border: none !important; */
    height: 50px !important;
}

.dividers {
    display: flex;
    align-items: center;
    width: auto;
    margin-top: 25px;
    margin-bottom: 35px;
    justify-content: center;
    background: #e3e3e3;
    /* grey background like your screenshot */
    padding: 10px 0;
}

.line {
    flex: 1;
    height: 2px;
    background: #777;
    /* thin grey line */
    margin: 0 15px;
}

.dot {
    width: 8px;
    height: 8px;
    background: #777;
    /* grey dot */
    border-radius: 50%;
}

textarea#specificationBox {
    width: 100%;
    border-radius: 10px;
    padding: 18px 20px
}

.inner-text-quotes div {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: rgb(86, 86, 86) !important;
}

.ls-button-wrap {
    background: #e3e3e3;
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: right;
    gap: 20px;

}

.ls-btn {
    padding: 12px 45px;
    /* Button size exactly like your image */
    border: none;
    border-radius: 6px;
    /* Same rounded corners */
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    /* White text */
    cursor: pointer;
    line-height: 1;
    /* Makes height match exactly */
    height: 45px;
    /* Uniform button height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-cancel {
    background: #2b2b2b;
    /* Exact dark grey from your screenshot */
}

.ls-add {
    background: #003f66;
    /* Exact dark navy blue */
}

.ls-divider {
    background: #e3e3e3;
    padding: 45px 0;
    width: 100%;
    padding-top: 30px;
    font-size: 26px;
    display: flex;
    align-items: baseline;
}

.ls-divider::before,
.ls-divider::after {
    content: "";
    flex: 1;
    height: 2px;
    /* thin line */
    background: #7d7d7d;
    /* grey line color */
    margin: 0 15px;
    /* space around the dot */
}

.dot {
    width: 6px;
    height: 6px;
    background: #555;
    /* grey dot */
    border-radius: 50%;
    display: inline-block;
}

.custom-quote-button {
    display: none;
}

/* --- Container Area --- */
#partsContainer {
    margin-top: 20px;
}


/* --- Part Card Styling --- */
.part-card {
    background: #eeeeee;
    border: 1px solid #80808047;
    border-radius: 10px;
    padding: 20px;
    margin-right: 4px;
    margin-bottom: 25px;
}

/* Header (Product + X icon) */
.part-card-header {
    display: flex;
    /* align-items: center; */
    gap: 10px;
    /* margin-bottom: 15px; */
    flex-direction: row;
    align-items: center;
}

.part-card-header strong {
    font-size: 16px;
}

.part-number {
    font-size: 14px;
    margin-left: 5px;
    text-align: center;
}

.remove-card-btn {
    cursor: pointer;
    font-size: 20px;
    color: #444;
    font-weight: bold;
}


/* --- Quantity Column --- */
/* .quantity-column {
    margin-top: 10px;
} */

.qty-row {
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
    padding-left: 35px;
}

.qty-input {
    width: 60px;
    height: 34px;
    text-align: center;
    padding: 4px 6px;
    border: 1px solid #bfbfbf;
    border-radius: 4px;
    background: #fafafa;
}

.qty-delete {
    margin-left: 10px;
    cursor: pointer;
    font-size: 18px;
}


/* --- Add Quantity Button --- */
.add-qty-btn {
    margin-top: 10px;
    padding: 8px 18px;
    font-size: 14px;
    background: #444;
    color: white;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    width: 140px;
}

.add-qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


/* --- Add Part Box --- */
.add-part-box {
    border: 3px dashed #999;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background: #f0f0f0;
    cursor: pointer;
    margin-top: 20px;
}

#addPartButton {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
}

.close-but {
    display: flex;
    justify-content: flex-end;
}

.main-body {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

div#partsContainer {
    max-height: 430px;
    overflow: overlay;
    scroll-behavior: smooth;
}

div#partsContainer {}

#partsContainer::-webkit-scrollbar {
    width: 3px;
    margin-left: 2px;
}

#partsContainer::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 50px;
}

#partsContainer {
    display: none;
}

.quantity-column strong {
    padding-left: 25px;
    font-size: 16px;
    padding-bottom: 10px;
}


form#webform-submission-request-a-quote-new-form::before {
    content: 'My Quote';
    font-size: 26px;
    color: rgb(86, 86, 86) !important;
    font-weight: 600;
    margin-bottom: 10px !important;
    font-family: Century Gothic Bold !important;
}
#partSearch::placeholder {
    color: #b2b8c3;
    font-size: 16px;
    /* font-style: italic; */
    font-weight: normal;
    /* font-family: Poppins, sans-serif; */
}
form#webform-submission-request-a-quote-new-form {
    /* margin-top: 50px !important;
    max-width: 70%; */
    margin: auto;
    max-width: 80%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #d9d9d9;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-top: 30px;
    border-radius: 5px;
}

form#webform-submission-request-a-quote-new-form > div, form#webform-submission-request-a-quote-new-form fieldset div, form#webform-submission-request-a-quote-new-form > div > div{
    margin-top: 3px;
    display: flex;
    flex-direction: column;
}

form#webform-submission-request-a-quote-new-form label {
 font-family: Century Gothic Bold;
    font-size: 21px !important;
    margin: 0;
    color: rgb(86, 86, 86) !important;
    margin-bottom: 5px;
    font-weight: 600;
}

div#edit-terms-and-condition--2 .js-form-type-checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
}

div#edit-terms-and-condition--2 .js-form-type-checkbox label {
       margin: 0;
    font-size: 15px !important;
}

form#webform-submission-request-a-quote-new-form input {
  height: 34px;
    /* border-radius: 10px !important; */
}

form#webform-submission-request-a-quote-new-form div#edit-terms-and-condition--2 {
    padding: 15px;
    /* border: 2px !important; */
    /* border-color: #565656c7; */
    border: 2px gray;
    border-style: solid;
}

form#webform-submission-request-a-quote-new-form .captcha img {
    margin: auto;
    height: 83px;
    margin-top: 10px;
    width: fit-content;
    margin-bottom: 25px;
}

.custom-submit-new {
    /* background: #adadad;
    color: white !important;
    font-size: 20px;
    width: 300px;
    margin-top: 15px !important; */
    /* margin: auto; */
    /* height: 53px !important; */
    /* border-radius: 5px; */
}

.custom-submit-new:hover {
    background: #a59f9f !important;
}

.ls-add:hover {
    background-color: #003f66eb;
}

form#webform-submission-request-a-quote-new-form .form-item-start-my-quote,
form#webform-submission-request-a-quote-new-form .form-item-request-quote-by-specification {
    display: none;
}

#specificationBox:disabled,
#partSearch:disabled {
    cursor: not-allowed;
}

div#edit-submit-quote-related-documents-optional-upload {
    display: block;
}

div#edit-submit-quote-related-documents-optional-upload--description p {
    display: block;
    margin: 0;
}

form#webform-submission-request-a-quote-new-form input[type="submit"] {
    background: #56c754;
    color: white !important;
    font-size: 20px;
    width: 300px;
    margin-top: 15px !important;
    margin: auto;
    height: 53px !important;
    border-radius: 5px;
}

input#partnumber_quote {
    background: #56c754;
    color: white !important;
    font-size: 20px;
    width: 300px;
    margin-top: 15px !important;
    margin: auto;
    height: 53px !important;
    border-radius: 5px;
    border-style: none;
    display: none;
}

input#partnumber_quote:hover {
    background: #a59f9f !important;
}

form#webform-submission-request-a-quote-new-form input[type="submit"]:hover {
    background: #4cbd4a !important;
}

form#webform-submission-request-a-quote-new-form .fieldset-wrapper .form-checkboxes {
    padding: 15px;
    border: 3px;
    border-color: #565656c7;
    border-style: solid;
}

form#webform-submission-request-a-quote-new-form .fieldset-wrapper .form-checkboxes .js-form-type-checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
}

form#webform-submission-request-a-quote-new-form .form-checkboxes .error {
    box-shadow: 0px 0px 0px 2px rgb(255 2 2) !important;
}

div#error-text {
    display: none;
    font-size: 16px;
    color: red;
    padding-top: 10px;
    font-family: Century Gothic Bold !important;
}

button.custom-webform-btn {
    display: none;
}

input#fileInput {
    display: none;
}

.upload-btn {
    background: #555;
    color: #fff;
    padding: 8px 20px;
    border: none;
    width: 200px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    font-size: 17px;
}

.file-box {
    border: 1px solid #0066cc;
    background: white;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px;
    padding-left: 0;
    margin-bottom: 5px;
    background: transparent;
}

span.attactments-file .file-item {
    padding: 0;
    margin: 0;
    display: block;
}

.delete-btn {
    cursor: pointer;
    color: #555;
    font-size: 18px;

}

.delete-btn:hover {
    color: red;
}

.upload-process {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.descrip-main {
    display: none;
}

/* Request Quote Search-bar  Kiruba End */


/* make parent relative */
.form-actions {
    position: relative;
}

/* space for spinner */
.form-actions.loading input[type="submit"] {
    padding-right: 40px;
    pointer-events: none;
    opacity: 0.8;
}

/* spinner */
.form-actions.loading input[type="submit"]::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.custom-submit-new:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

button.custom-submit-new {
    position: relative;
    background: #56c754 !important;
    color: white !important;
    width: 205px;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    font-family: Century Gothic Bold !important;
    transition: all 0.2s;
}

button.custom-submit-new:hover {
    background: #4cbd4a !important;
}

/* spinner when loading class added */
button.custom-submit-new.loading::after {
    content: "";
    position: absolute;
    right: 29px;
    top: 38%;
    width: 30px;
    height: 30px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*kiruba added self service start*/
.modal {
    display: none;
    /* background: #e8e8e8; */
    border-radius: 8px;
    /* padding: 40px; */
    margin-bottom: 20px;
    position: relative;
}

.modal.active {
    display: block;
}

.close-btn {
position: absolute;
    top: -5px;
    right: -10px;
    background: none;
    border: none;
    font-size: 17px;
    cursor: pointer;
    color: #99a1af;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #000;
}

.modal-title {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-weight: 500;
}

.toggle-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.toggle-option {
    background: white;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    /* padding: 30px 24px; */
    padding: 20px 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.toggle-option:hover {
    border-color: #0066cc;
}

.toggle-option.selected {
    background: #e6f2ff;
    border-color: #155dfc;
}

.toggle-option .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 16px; */
    font-size: 24px;
}

.toggle-option.stock .icon {
    background: #99a1af;
}

.toggle-option.custom .icon {
    background: #99a1af;
}

.image-layer.icon img {
    height: 30px;
}

.toggle-option.selected.custom .icon {
    background: #0066cc;
}

.toggle-option.selected.stock .icon {
    background: #155dfc;
}

.toggle-option h3 {
    font-size: 18px;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 8px;
    font-weight: 600;
}

.toggle-option.selected h3 {
    color: #155dfc;
}
.toggle-option.selected .badge{
    background: #155dfc;
    color: white;
}
.toggle-option p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.toggle-option.selected p {
    color: #0066cc;
}

.badge {
    display: inline-block;
    background: #99a1af;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    width: 105px;
    padding: 8px 10px;

}

.toggle-option {
    display: flex;
    flex-direction: column;
}

.toggle-option.custom .badge {
    background: #8a8a8a;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #0066cc;
}

.form-input::placeholder {
    color: #999;
}

textarea.form-input {
    min-height: 200px;
    resize: vertical;
}

.helper-text {
    font-size: 12px;
    color: #b2b8c3;
    margin-top: 8px;
    margin-bottom: 10px;
}
textarea#specificationBox::placeholder {
    color: #b2b8c3;
    font-size: 14px;
}
.divider {
    height: 1px;
    background: #d0d0d0;
    margin: 30px 0;
}

/* .button-group {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
            justify-content: space-between;
            margin-top: 30px;
        } */

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary {
    background: #4a4a4a;
    color: white;
}

.btn-secondary:hover {
    background: #333;
}

.btn-primary {
float: right;
    position: relative;
    background: #56c754 !important;
    color: white !important;
    width: 160px;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    font-family: Century Gothic Bold !important;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #155dfc;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.add-part-btn {
width: 205px;
    padding: 10px;
    background: transparent;
    border: 1px dashed #155dfc;
    border-radius: 8px;
    color: #155dfc;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    font-family: Century Gothic Bold !important;
    transition: all 0.2s;
}

.add-part-btn:hover {
    border-color: #0066cc;
    color: #0066cc;
}

/* Quantities Screen */
.step-header {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: Century Gothic Bold !important;
    letter-spacing: 0.5px;
}

.quantities-title {
    font-size: 22px !important;
    color: #000;
    margin: 0;
    font-weight: 600;
}

.quantities-subtitle {
    font-size: 14px;
    /* font-family: Century Gothic normal !important; */
    color: #666;
    /* margin-bottom: 40px; */
}

.container-new .part-info {
    background: #f9fafb;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.container-new .part-info .icon {
    font-size: 24px;
}

.container-new .part-info-text {
    flex: 1;
}

.container-new .part-info-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.container-new .part-info-value {
    font-size: 16px;
    color: #000;
    font-weight: 600;
}

.change-link {
color: #155dfc !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: Century Gothic Bold !important;
}

.change-link:hover {
    text-decoration: underline;
}

.quantity-row {
display: flex;
    align-items: center;
    width: 219px;
    margin-bottom: 20px;
}

.quantity-label {
font-size: 15px;
    color: #666;
    /* font-weight: 600; */
    min-width: 49px;
}

.quantity-input-wrapper {
    position: relative;
    flex: 1;
}

.quantity-input-wrapper input {
      width: 100%;
      height: 44px !important;
    border-radius: 14px;
    padding-right: 50px;
}

.quantity-unit {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}

.delete-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
    display: none;
}

.delete-btn:hover {
    color: #d32f2f;
}

.add-quantity-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px dashed #155dfc;
    border-radius: 8px;
    color: #155dfc;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    font-family: Century Gothic Bold !important;
    transition: all 0.2s;
    margin-bottom: 30px;
}

.add-quantity-btn:hover {
    background: #e6f2ff;
}

.back-btn {
    background: #707070;
    display: flex;
    float: left;
    align-items: center;
    gap: 8px;
    position: relative;
    color: white !important;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    font-family: Century Gothic Bold !important;
    transition: all 0.2s;
}

.back-btn:hover {
    color: #0066cc;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 12px;
    padding: 19px;
    margin-bottom: 16px;
    position: relative;

}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.product-title-section {
      flex: 1;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.product-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
    
}

.product-number {
    margin-left: 0px;
    font-size: 15px;
    margin: 0;
    font-family: Century Gothic Bold !important;
    color: #000;
    font-weight: 600;
}

.card-delete-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    padding: 4px;
}

.card-delete-btn:hover {
    color: #d32f2f;
}

.quantity-display {
      display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-direction: column;
}

.quantity-number {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    min-width: 40px;
}

.quantity-stepper {
    display: flex;
    align-items: center;
    gap: 8px;
        flex-wrap: wrap;
}

.stepper-btn {
    background: #f5f5f5;
    border: 1px solid #d0d0d0;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.stepper-btn:hover {
    background: #e8e8e8;
}

.upload-section {
    margin-top: 30px;
}

.upload-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
}

.upload-area {
    border: 2px dashed #d0d0d0;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.upload-area:hover {
    border-color: #0066cc;
    background: #f9f9f9;
}

.upload-area input[type="file"] {
    display: none;
}

.upload-text {
    font-size: 16px;
    color: #000;
}

.spec-textarea {
    white-space: pre-line;
}

.container-new {
max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 24px;
}

.container-new .modal {
    z-index: 1 !important;
}

.part-info-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

p#partNumberDisplay {
    margin: 0;
    font-size: 15px;
    font-family: Century Gothic Bold !important;
}

p#partTypeLabel {
margin: 0;
    font-size: 15px;
    text-transform: capitalize;
}

.custom-spec-inner {
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    /* margin-bottom: 30px; */
}

.spec-container {
    background: white;
        flex-wrap: wrap;
    padding: 20px;
    padding-left: 0;
    padding-right: 0;
    border-radius: 8px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    /* margin-bottom: 30px; */
}

.part-spec {
    color: #666;
    font-size: 15px;
}

div#quantitiesModal {
    background: white;
    /* padding: 20px; */
    border-radius: 8px;
}

.continue-qty:disabled {
    background: #5682af !important;
    width: 150px !important;
}

.upload-process button {
     margin-top: 10px;
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px dashed #0066cc;
    border-radius: 8px;
    color: #155dfc;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    line-height: normal;
    height: 50px;
    transition: all 0.2s;
    margin-bottom: 0px;
}

.review-layer {
    background: white;
    /* padding: 20px; */
    border-radius: 8px;
}

button.qty-btn {
      border: none;
    padding: 7px 19px;
    border-radius: 10px;
    background: #f3f4f6;
}

.part-card-header .icon {
 padding: 6px 8px;
    border-radius: 10px;
    background: #dbeafe;
}
textarea#specificationBox {
    min-height: 225px !important;
    margin-top: 10px;
}
/* section .container-new {
    display: none;
} */
 div#initialModal {
    margin-top: 5px;
}
form#webform-submission-request-a-quote-new-form{
    display:flex;
    flex-direction:column;
}
form#webform-submission-request-a-quote-new-form section {
    order: 2;
}
.form-actions:has(.custom-submit-new){
    order: 1;
    justify-content: space-between;
        display: flex !important;
    flex-direction: row-reverse !important;
}
/* form#webform-submission-request-a-quote-new-form {
    display: none;
} */
form#webform-submission-request-a-quote-new-form > div, form#webform-submission-request-a-quote-new-form > fieldset, form#webform-submission-request-a-quote-new-form > p {
    display: none !important;
}
.finish-quote {
position: relative;
    background: #56c754 !important;
    color: white !important;
    width: 205px;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    font-family: Century Gothic Bold !important;
    transition: all 0.2s;
}
.final-button-quote {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
input#back_button {
    height: auto !important;
    font-family: Century Gothic Bold;
    padding: 12px;
    line-height: normal;
    border-radius: 5px;
    width: 85px;
    background: #707070;
    border: none;
}
div#upload_description {
    font-size: 11px;
    margin: 0;
    color: #b2b8c3;
}

div#upload_description p {
    margin: 0;
}
.part-info .image-layer.icon img {
    width: 20px;
    height: auto;
}
.quantity-display .product-label {
    font-size: 12px;
    color: #666;
    margin: 0 !important;
    font-family: Century Gothic !important;
}
.product-card .image-layer.icon img {
    height: 19px;
}
div#fileList .delete-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
    display: block;
}
.spec-container .file-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px;
    padding-left: 0;
    flex-direction: row;
    margin-bottom: 5px;
    background: transparent;
}
.spec-container .part-spec {
    display: none;
}
.spec-container .part-spec {
    display: none;
}
.pdf-inner.attactments-file .spec-container {
    padding: 10px 0px;
}

.pdf-inner.attactments-file .spec-container .pdf-url .file-item {
    margin-bottom: 0;
    padding: 10px;
    border-radius: 10px;
    background: #f3f4f6;
}

.pdf-inner.attactments-file {
    margin-top: 10px;
}

/* .pdf-inner.attactments-file::before {
    content: 'attachments';
    font-size: 14px;
    color: rgb(86, 86, 86) !important;
    font-weight: 600;
    margin-bottom: 10px !important;
    margin-top: 14px !important;
    text-transform: capitalize;
    font-family: Century Gothic Bold !important;
} */
 /* .spec-container[data-id] .pdf-url::before {
    content: 'Attachments';
    display: block;
    font-size: 14px;
    color: rgb(86, 86, 86);
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 14px;
    text-transform: capitalize;
    font-family: "Century Gothic Bold";
} */
.spec-container:has(.file-item) .pdf-url::before {
    content: 'Attachments';
    display: block;
     font-size: 14px;
    color: rgb(86, 86, 86);
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 14px;
    text-transform: capitalize;
    font-family: "Century Gothic Bold";
}
.pdf-inner.attactments-file .pdf-url {
    display: flex;
    gap: 5px;
    align-items: baseline;
}
.pdf-inner.attactments-file .pdf-url {
    display: flex;
    gap: 5px;
    align-items: baseline;
}

.custom-spec-inner .pdf-url {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.custom-spec-inner .pdf-url .file-item {
    margin: 0;
    background: #f3f4f6;
    padding: 10px;
    border-radius: 10px;
}
.custom-spec-inner .spec-container {
    padding: 0;
}
form#webform-submission-request-a-quote-new-form fieldset div {
  width: 100%;
    padding: 0 !important;
    margin: 0;
    background: white;
}
input#edit-terms-and-condition-i-agree-to-lee-springs-a-hrefterms-and-conditionsterms-and-conditionsa-and-a-hrefprivacy-policy-and-cookie-policyprivacy-and-cookie-policya{
        box-shadow: 0px 0px 0px 1px rgb(86, 86, 86) !important;
}
.button-group {
    display: block;
    justify-content: center;
}
.upload-process .upload-btn:nth-of-type(2) {
    display: none;
}
input#edit-terms-and-condition-i-agree-to-lee-springs-a-hrefterms-and-conditionsterms-and-conditionsa-and-a-hrefprivacy-policy-and-cookie-policyprivacy-and-cookie-policya {
    box-shadow: 0px 0px 0px 1px rgb(86, 86, 86) !important;
    background: white;
    /* -webkit-box-shadow: 0px 0px 0px 2px rgb(0, 0, 0) !important; */
    -ms-box-shadow: 0px 0px 0px 2px rgb(0, 0, 0) !important;
    /* box-shadow: 0px 0px 0px 2px rgb(0, 0, 0) !important; */
    margin: 10px;
    height: 23px !important;
    width: 23px !important;
}
