﻿.home-status-tab {
    width: 150px;
}

.order-image {
    min-width: 752px;
    width: 100%;
}

.pe-none {
    pointer-events: none;
}

.upload-zone {
    background: gray;
    width: 100%;
    min-height: 320px;
    display: flex;
}

.upload-preview {
    min-width: 752px;
    width: 100%;
}

.upload-zone.has-file-hover {
    transition: ease-in 1s;
    background-color: antiquewhite;
}

.loader-overlay {
    width: 100vw;
    height: 100vh;
    position: absolute;
    transition: ease-in;
    display: flex;
    opacity: 0.5;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 1050;
}

.loader-overlay.show {
    opacity: 0.5;
}

.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.validation-summary-errors ul {
    list-style: none;
    padding: 0;
}

.validation-summary-errors ul li {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.badge-count {
    font-size: 11px;
    padding: 1px;
    text-align: center;
    position: absolute;
    top: 15px;
    right: 5px;
    border-radius: 50%;
    background: red;
    color: white;
    height: 18px;
    width: 18px;
}

.companyLogo .avatar img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}

.profilePicture .avatar img {
    height: 36px;
    width: 36px;
    object-fit: contain;
}

.uploadFileList {
    display: flex;
    flex-wrap: wrap;
}

.uploadFileItem {
    border-radius:50rem;
    padding: 0.25rem 0.75em;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.uploadFileItem-text {
    display: inline-block;
    max-width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
    line-height: 1rem;
}

.uploadFileItem-icon {
    margin-left: 0 !important;
    vertical-align: middle;
}

div.stepper {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 1rem;
}

span.stepper__label:first-of-type {
    transform: translateX(-3rem);
}

span.stepper__label:nth-of-type(2) {
    transform: translateX(-1rem);
}

span.stepper__label:last-of-type {
    transform: translateX(1.5rem);
}

.eyelet-display{
    grid-template: "a a a"
                    "b b b"
                    "c c c";
    display: grid;
    text-align: center;
}