.inspector-row {
    padding-bottom: 2rem;
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
}
.warranty-row {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.w-btn.btn-danger {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
    margin-top: 1rem;
}
.w-btn.btn-danger:hover {
    background: #c02e3d;
    border-color: #c02e3d;
    color: #fff;
    margin-top: 1rem;
}

.w-btn.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.w-btn.btn-primary:hover {
    color: #fff;
    background-color: #0168d6;
    border-color: #0168d6;
}

.w-btn.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.w-btn.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

#spinner-div {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 999;
}
.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #007bff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
   }
    100% {
        transform: rotate(360deg);
   }
}
.progress-container {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%; 
    text-align: center;
}
#progBar {
    width: 100%;
}

#proText {
    margin-top: 10px;
    text-align: center;
}

ul.parsley-errors-list {
    color: #f55050;
    list-style: none;
    margin-left: 0;
    font-size: 0.75rem;
}

input#bulk_csv {
    padding-left: 0;
}
input#bulk_csv::file-selector-button {
    background: #138496;
    color: #fff;
    padding-left: 1em;
    padding-right: 1em;
    height: 100%;
}
h6#bulk-heading {
    margin-top: 1.5rem;
}