/* General Styles */

.step-content .input, .step-content input:not([type=submit]), .step-content select, .step-content textarea, .step-content number{
    border-radius: var(--radius-small);
    font-size: 16px;
}

/* Label for the categories */
.option-save {
    background-color: #181818;
    padding: 3px 3px 13px 3px;
    margin-bottom: -10px;
    color: #e5fe00;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
}

/* Grid layout for the categories */
.radio-inputs {
    display: grid;
    justify-content: start;
    align-items: end;
    max-width: 100%;
    user-select: none;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

/* Styles for checked radio */
.radio-input:checked + .radio-tile {
    border-color: var(--bricks-color-nbyqxs);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: #181818;
}

.radio-input:checked + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--bricks-color-nbyqxs);
    border-color: var(--bricks-color-nbyqxs);
}

.radio-input:checked + .radio-tile .radio-icon svg {
    fill: #181818;
}

.radio-input:checked + .radio-tile .radio-label {
    color: #181818;
}

.radio-input:focus + .radio-tile {
    border-color: var(--bricks-color-nbyqxs);
}

.radio-input:focus + .radio-tile:before {
    transform: scale(1);
    opacity: 1;
}

/* Styles for each category tile */
.radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    border-radius: 0.5rem;
    border: 2px solid var(--bricks-color-juumuf);
    background-color: var(--bricks-color-juumuf);
    box-shadow: var(--box-shadow-default);
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
}

.radio-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #b5bfd9;
    background-color: var(--bricks-color-juumuf);
    border-radius: 50%;
    top: 0.5rem;
    left: 0.5rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
}

.radio-tile:hover {
    border-color: var(--bricks-color-nbyqxs);
}

.radio-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}

/* Styles for the category images and labels */
.radio-icon svg {
    width: 5rem;
    height: 5rem;
    fill: #494949;
}

.radio-icon img {
    width: 10rem;
    height: 10rem;
    margin-bottom: 10px;
}

.radio-label {
    color: #707070;
    transition: 0.375s ease;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

/* Styles for the radio input */
.radio-input {
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

/* Discount labels */
#option-two-ball-id:after,
#option-three-ball-id:after {
    content: attr(data-discount);
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #181818;
    color: var(--bricks-color-juumuf);
    padding: 3px 5px;
    font-size: 12px;
    border-radius: 3px;
}

/* Hide all steps by default */
.swingsave-step {
    display: none;
}

/* Show only the first step */
#step1-content {
    display: block;
}

.step-2-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-2-fields > * {
    border-radius: 5px;
}

.next-button-ss,
#finished-button,
.prev-button-ss {
    width: 100%;
    padding: 0.5em 1em;
    line-height: 1.6em;
    border-radius: 5px;
    text-align: center;
    transition: all 0.5s;
    font-weight: 700;
}

.next-button-ss {
    color: var(--bricks-color-juumuf);
    background-color: var(--bricks-color-nbyqxs);
}

.next-button-ss:hover:not(:disabled) {
    color: var(--bricks-color-juumuf);
    background-color: var(--bricks-color-hpbdlh);
}



#finished-button {
    color: var(--bricks-color-juumuf);
    background-color: #3f3f3f;
}

.prev-button-ss {
    font-weight: 500;
    background-color: var(--bricks-color-cetvnu);
    border-radius: var(--radius-small);
    padding: 8px;
    width: 42px;
    height: 42px;
    transition: all 0.5s;
}

.prev-button-ss:hover {
    background-color: var(--bricks-color-nbyqxs);
}

.next-button-ss[disabled] {
    background-color: #cbcbcb;
    color: #ebebeb;
    cursor: not-allowed;
}

.step-content {
    position: relative;
    height: 100%;
    width: 100%;
    padding: 30px 25px 100px 25px;
    min-height: 480px;
    background-color: var(--bricks-color-juumuf);
}

.condition-section-new-options,
.condition-section-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ts-section-main {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.condition-section-secondhand {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.con-rate-heading {
    grid-column-start: 1;
    grid-column-end: 5;
}

.condition-section-secondhand .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 100%;
    padding: 5px;
}




.condition-section-secondhand .radio-tile .radio-description {
    font-size: 12px;
    text-align: center !important;
}


#ageRangeSlider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    transition: opacity 0.2s;
    cursor: pointer;
}

#ageRangeSlider:hover {
    opacity: 0.8;
}

/* Customizing the thumb */
#ageRangeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* Remove default appearance */
    appearance: none;
    width: 20px;
    /* Width of the thumb */
    height: 20px;
    /* Height of the thumb */
    background: var(--bricks-color-juumuf);
    /* Color of the thumb */
    border: 3px solid var(--bricks-color-nbyqxs);
    /* Border color */
    cursor: pointer;
    /* Pointer cursor on hover */
    border-radius: 50%;
    /* Rounded corners for the thumb */
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    /* Optional shadow for the thumb */
}

#ageRangeSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--bricks-color-juumuf);
    border: 3px solid var(--bricks-color-nbyqxs);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

#ageRangeSlider::-moz-range-progress {
    background: var(--bricks-color-nbyqxs);
    /* Green color for the progress */
}

/* Value display styling */
#ageRangeValue {
    font-size: 14px;
    margin-top: 5px;
    display: inline-block;
    padding-left: 5px;
}

/* Container for age labels */
.age-labels {
    display: grid;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    grid-template-columns: repeat(10, auto);
}

/* Individual age label */
.age {
    flex: 1;
    text-align: center;
}

#step3-content {
    display: flex;
    row-gap: 15px;
    flex-direction: column;
}

/* Dropzone styles */
.dropzone .dz-preview {
    margin: 0 !important;
}

/* #productImagesDropzone,
#damageImagesDropzone {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    row-gap: 10px !important;
} */

#productImagesDropzone,
#damageImagesDropzone, #productImagesDropzone-addlater,
#damageImagesDropzone-addlater {
    gap: 10px;
    display: flex;
    position: relative;
    flex-flow: wrap;
    max-height: 150px;
    overflow-y: scroll;
}

.dropzone .dz-preview .dz-image {
    border-radius: 5px !important;
    height: 100px !important;
    width: 100px !important;
}

.dropzone .dz-preview .dz-error-message {
    top: 0 !important;
    left: 0 !important;
    width: 100px !important;
}

.dropzone .dz-preview .dz-error-message:after {
    display: none !important;
}

.dropzone .dz-preview:hover .dz-image img {
    filter: none !important;
    transform: none !important;
}

.dropzone .dz-preview:hover .dz-image {
    border: 2px solid var(--bricks-color-hpbdlh);
}

.dropzone .dz-preview .dz-progress {
    background: var(--bricks-color-juumuf) !important;
    border-radius: 4px !important;
    top: 85px !important;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: linear-gradient(to bottom, var(--bricks-color-nbyqxs), var(--bricks-color-hpbdlh)) !important;
}

.upload-section .dz-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Prevents blocking clicks */
    z-index: 1;
    margin: 0 !important;
    flex-direction: column;
}

.dropzone {
    border: none !important;
    box-shadow: var(--box-shadow-default);
    border-radius: 10px !important;
    margin: 10px 0 !important;
    position: relative;
        z-index: 2;
}

.dz-remove {
    width: 100px;
    background-color: var(--bricks-color-nbyqxs);
    border-radius: 3px;
    color: var(--bricks-color-juumuf);
    margin-top: 5px;
    font-size: 13px !important;
}

.dz-remove:hover {
    text-decoration: none !important;
    color: var(--bricks-color-juumuf);
    background-color: var(--bricks-color-hpbdlh);
}

/* Value estimation box */
.value-est-box {
    box-shadow: var(--box-shadow-default);
    border-radius: 5px;
    padding: 25px;
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    font-size: 18px;
    background-color: var(--bricks-color-iukxzn);
}

#auction-price-div, #normal-sale-price-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

#listing-options {
    font-weight: 700;
    margin-left: 10px;
    color: var(--bricks-color-nbyqxs);
}

.splide__slide {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.grid-item {
    width: 100%;
    box-sizing: border-box;
}

.more-image-sec {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

#addImagesLaterButton {
    border-radius: 5px;
    padding: 5px 10px;
    background-color: transparent;
    border: 1px solid #181818;
    transition: all 0.5s;
}

#addImagesLaterButton:hover {
    background-color: var(--bricks-color-hpbdlh);
    border: 1px solid var(--bricks-color-hpbdlh);
    color: var(--bricks-color-juumuf);
}

/* Loader */
.loader {
    width: 48px;
    height: 48px;
    border: 10px solid var(--bricks-color-juumuf);
    border-radius: 50%;
    position: relative;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.loader::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    inset: -10px;
    border-radius: 50%;
    border: 10px solid var(--bricks-color-nbyqxs);
    animation: prixClipFix 2s infinite linear;
}

@keyframes prixClipFix {
    0% { clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0); }
    25% { clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0); }
    50% { clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%); }
    75% { clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%); }
    100% { clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0); }
}

#step8-content, #step-imageconfirm-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#success-message, #images-added-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}  

#success-icon {
    width: 70px;
    margin-bottom: 25px;
}

/* Carousel container */
.carousel-container {
    overflow: hidden;
    position: relative;
    width: calc(100% + 20px);
    height: 380px;
    margin-left: -10px;
}

/* Carousel slides */
.carousel-slide {
    display: grid;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    left: 100%;
    transition: left 0.5s ease;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
    height: 100%;
}

/* The first slide should be visible initially */
.carousel-slide:first-child {
    left: 0;
}

/* Navigation buttons */
.prev-button,
.next-button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    margin: 0;
    opacity: 1;
    border-radius: 3px;
    display: flex;
    align-items: center;
    transition: all 0.5s;
}

.prev-button:hover:not(:disabled),
.next-button:hover:not(:disabled) {
    background-color: var(--bricks-color-nbyqxs);
    color: var(--bricks-color-juumuf);
}

/* Disabled state for buttons */
.prev-button:disabled,
.next-button:disabled {
    cursor: not-allowed;
}

.prev-button:disabled svg,
.next-button:disabled svg{
    stroke: #cbcbcb;
    transition: all 0.5s;
}

.prev-button svg,
.next-button svg {
    stroke: #181818;
    transition: all 0.5s;
}

.prev-button:hover:not(:disabled) svg,
.next-button:hover:not(:disabled) svg {
    stroke: var(--bricks-color-juumuf);
    transition: all 0.5s;
}

/* Style for the SVG icons */
.bi-chevron-left,
.bi-chevron-right {
    height: 32px;
    width: 32px;
    fill: var(--bricks-color-nbyqxs);
}

/* Carousel Navigation Styles */
.carousel-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--bricks-color-juumuf);
    padding: 10px;
    border-radius: 5px;
    box-shadow: var(--box-shadow-default);
}

/* Style for the dots */
.carousel-dots {
    display: flex;    
}

.dot {
    height: 6px;
    width: 8px;
    background-color: #dfdfdf;
    border-radius: 2px;
    display: inline-block;
    transition: all 0.3s;
    margin: 0 2px;
}

.dot.active {
    background-color: var(--bricks-color-nbyqxs);
    width: 25px;
}

/* Step 0 */
#step0-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.continue-buttons {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: calc(100% - 50px);
    display: flex;
    gap: 10px;
}

button#step1-next-button{
    transition: all 0.5s;
}

.tradesafe-detail-section {
	grid-column-start: 1;
	grid-column-end: 3;
	background-color: var(--bricks-color-iukxzn);
    border-radius: var(--radius-small);
    padding: 10px;
    box-shadow: var(--box-shadow-default);
}


.range-div label{
 margin-bottom: 10px !important;   
}


.address-fields-s7{
        grid-column-start: 1;
    grid-column-end: 3;
}
.pac-container{
	z-index: 99999999999 !important;
}

h6.ts-heading {
    font-size: 17px;
    margin-bottom: 10px;
}

.tt-ap-switch {
    font-size: 17px;
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

/* Hide default HTML checkbox */
.tt-ap-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.tt-ap-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(182, 182, 182);
    transition: .4s;
    border-radius: 5px;
}

.tt-ap-slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    border-radius: 5px;
    left: 5px;
    bottom: 5px;
    transform: rotate(270deg);
    background-color: rgb(255, 255, 255);
    transition: .4s;
}

.tt-ap-switch input:checked+.tt-ap-slider {
    background-color: #17affc;
}

.tt-ap-switch input:focus+.tt-ap-slider {
    box-shadow: 0 0 1px #17affc;
}

.tt-ap-switch input:checked+.tt-ap-slider:before {
    transform: translateX(1.5em);
}

.tt-ap-toggle-switch {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#step6-content .tab-content {
    border-radius: var(--radius-default);
    background-color: var(--bricks-color-juumuf);
    height: 100%;
}

#step6-content input {
    border-radius: var(--radius-small);
}

#step6-content #login-tab,
#step6-content #register-tab {
    flex-direction: row;
    gap: 0px;
    height: 100%;
    display: flex;
}

#step6-content #login-form,
#step6-content #register-form {
    flex-direction: column;
    gap: 10px;
    display: flex;
}

#step6-content {
    padding: 0;
}

.info-login,
.login-form-section, .register-form-section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.login-form-section, .register-form-section{
    gap: 10px;
}

#login-form, #register-form{
    width: 100%;
}

.info-login{
    background-color: var(--bricks-color-nbyqxs);
    color: var(--bricks-color-juumuf);
    gap: 20px;
    border-radius: var(--radius-default);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}


#login-message.success-message, #register-message.success-message {
    background-color: var(--bricks-color-ubqtam);
    color: var(--bricks-color-cetvnu);
    width: fit-content;
    margin-right: auto;
    padding: 5px 5px;
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 5px;
}

#login-message.error-message, #register-message.error-message {
    background-color: #ffe6ec;
    color: #fa4362;
    width: fit-content;
    margin-right: auto;
    padding: 5px 5px;
    border-radius: var(--radius-small);
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 5px;
}

.logo-step-6{
    width: 60px;
}

.log-reg-mob, .message-acc-mob{
    display: none;
}

.notice-show-mob{
    z-index: 2 !important;
    opacity: 1 !important;
    transition: all 0.5s !important;
}

.ts-lm-text{
    display: none;
}

.sucess-icon-tt{
    background-color: var(--bricks-color-nbyqxs);
    border-radius: var(--radius-default);
    padding: 10px;
    width: 50px;
    height: 50px;
}

.tradesafe-toggle {
    grid-column-start: 1;
    grid-column-end: 3;
}

#tradesafe-banking-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

span.radio-text {
    font-size: 13px;
    text-align: center;
}

.condition-section-new-options .radio-tile{
    padding: 10px;
}

.condition-section-new-options span.radio-icon {
    background-color: var(--bricks-color-nbyqxs);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-default);
    display: flex;
    align-items: center;
    justify-content: center;
}

.condition-section-new-options svg path {
    fill: #fff;
}

.condition-section-new-options svg  {
    height: 4rem;
    width: 4rem;
}

.condition-section-new-options .radio-label{
    margin-top: 10px;
}

.address-help-text {
    font-size: 14px !important;
    padding-top: 5px;
}


.scale-pricing {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #92defc, #17affc, #92defc);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mid-point {
    height: 16px;
    width: 3px;
    background-color: #000;
}

#auction-split,
#normal-sale-split {
    flex-direction: column;
    gap: 10px;
    background-color: var(--bricks-color-iukxzn);
    padding: 15px;
    border-radius: var(--bricks-border-radius);
    box-shadow: var(--box-shadow-default);
}

#auction-split > div, #normal-sale-split > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.border-bottom-pricing{
    border-bottom: 1px solid #181818;
    padding-bottom: 10px;
}

.payout-text{
    font-weight: 700;
}

.value-est-box-scale {
    display: flex;
    gap: 10px;
    text-align: center;
    box-shadow: var(--box-shadow-default);
    border-radius: 5px;
    padding: 15px;
    background-color: var(--bricks-color-iukxzn);
    flex-direction: column;
    margin-bottom: 20px;
}

.pricing-results {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
}
.est-label {
    font-weight: 700;
    font-size: 16px;
}

.est-heading {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2em !important;
}

.gradient-bar {
    grid-column: span 3;
    height: 18px;
    background: linear-gradient(to right, var(--bricks-color-nbyqxs), var(--bricks-color-hpbdlh), var(--bricks-color-nbyqxs));
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
    line-height: 1em;
    align-items: center;
}

.sell-label {
    font-size: 12px;
    color: var(--bricks-color-juumuf);
}


span#max-price {
    text-align: right;
}

span#min-price {
    text-align: left;
}

.tnc-pricing{
    font-size: 12px;
}

@media (max-width: 767px){
    .carousel-slide {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }

    .carousel-container{
        height: 420px;
    }

    .radio-icon img {
        width: 5rem;
        height: 5rem;
        margin-bottom: 10px;
    }

    .carousel-slide .radio-label{
        font-size: 13px;
    }
    .condition-section-secondhand {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr 1fr;
        gap: 10px;
    }
    .condition-section-secondhand .radio-tile{
        min-height: auto !important;
    }
    .condition-section-secondhand .radio-tile {
        justify-content: center;
    }
    .con-rate-heading{
        grid-column-start: 1;
        grid-column-end: 3;
        font-size: 18px;
    }
    .con-rate-heading h6 {
        font-size: 18px;
    }
    .value-est-box {
        padding: 15px;
        font-size: 18px;
        flex-direction: column;
    }
    #listing-options{
        margin-left: 0 !important;
        font-size: 20px;
    }
    #step6-content #login-tab {
        flex-direction: column;
    }
    #step6-content #login-tab, #step6-content #register-tab{
        flex-direction: column;
    }
    .info-login{
        display: none;
    }
    .log-reg-mob{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .login-form-section{
        display: none;
    }

    .info-login, .login-form-section, .register-form-section{
        justify-content: start;
    }
    .message-acc-mob{
        display: flex;
        text-align: center;
    }
    #register-toggle-btn-mob, #login-toggle-btn-mob{
        background-color: var(--bricks-color-iukxzn);
        transition: all 0.5s;
    }
    #register-toggle-btn-mob:hover, #login-toggle-btn-mob:hover{
        background-color: var(--bricks-color-nbyqxs);
        color: var(--bricks-color-juumuf)
    }
    .tradesafe-detail-section {
        display: none;
    }
    .step-content {
        min-height: 600px;
    }
    .ts-section-main {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .ts-lm-text{
        text-decoration: underline;
        cursor: pointer;
    }

    .tt-o-table.tt-o-table-striped tr,
        .tt-o-table.tt-o-table-striped th {
        text-align: left;
        display: block;
        float: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid var(--bricks-border-color);
    }

    .tt-o-table.tt-o-table-striped thead{
        display: none !important;
    }

    .tt-o-order-action{
        width: 100% !important;
    }
        .tt-o-table tbody tr:not(:last-child) .tt-o-order-total,
        .tt-o-table tbody tr:not(:last-child) .tt-o-order-earning,
        .tt-o-table tbody tr:not(:last-child) .tt-o-order-status,
        .tt-o-table tbody tr:not(:last-child) .tt-o-order-action {
            border-bottom: none !important;
    }
    .tt-o-table.tt-o-table-striped tr{
        padding-top: 20px !important;
    }

    .tt-o-order-earning:before{
        content: "Earnings: ";
    }
    .tt-o-order-total:before{
        content: "Total: ";
    }

    #step8-content-inner .continue-buttons{
        flex-direction: column;
    } 

    #productImagesDropzone,#damageImagesDropzone,#productImagesDropzone-addlater,
    #damageImagesDropzone-addlater{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        min-height: 180px;
        max-height: 180px;
    }

    .dz-remove {
        width: 100%;
        font-size: 12px;
    }

    .dropzone .dz-preview .dz-image {
        width: 100% !important;
        height: 80px !important;
    }

    .dropzone .dz-preview .dz-image img {
        height: 80px;
        width: 100%;
        object-fit: cover;
    }

    .upload-section h6{
        font-size: 15px !important;
    }

    .dropzone .dz-preview .dz-progress{
        top: 65px !important;
    }

    .condition-section-new-options{
        grid-template-columns: 1fr;
    }

        #auction-split,
        #normal-sale-split, .border-bottom-pricing,#auction-split>div,
        #normal-sale-split>div, .value-est-box-scale {
            gap: 5px !important;
        }
}