html,
body {
    background-color: white;
}

.header {
    background-color: #d50000;
}

.full_height {
    height: calc(100vh - 57px);
}


.table_header {
    background-color: #dc3545;
    color: white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.4);
}

.table_row:nth-child(even) {
    background-color: #fafafa;
}

.table_row:nth-child(odd) {
    background-color: #eeeeee;
}

#stock_container {
    overflow: hidden;
}

.stock_row {
    transition: all .15s ease;
    cursor: pointer;
}

.pointer {
    cursor: pointer;
}

.stock_row:nth-child(even):hover{
    background-color: #f0f0f0;
    scale: 1.01;
}

.stock_row:nth-child(odd):hover{
    background-color: #dddddd;
    scale: 1.01;
}

.btn_main {
    border-radius: 4px!important;
}

.job_line_row {
    padding: 1rem;
    background-color: #f0f0f0;
    border: 1px solid #e7e7e7;
    border-radius: 4px;
    box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.4);
}

.invalid_outline {
    border: 1px solid #dc3545;
}

/* .iframe_overlay {
    position: absolute;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    top: 0;
    margin: 0;
}

.iframe {
    height: 80vh;
    width: 100vw;
    top: 0px;
    position: fixed;
    left: 0px;
} */

.hider {
    display: none;
}

.overlay_loader_outter {
    z-index: 10000;
    position: fixed;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.5);
}

/* HTML: <div class="spin_loader"></div> */
.spin_loader {
    width: 75px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 7px solid #ffffff;
    animation:
        l20-1 0.8s infinite linear alternate,
        l20-2 1.6s infinite linear;
}

@keyframes l20-1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%)
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%)
    }
}

@keyframes l20-2 {
    0% {
        transform: scaleY(1) rotate(0deg)
    }

    49.99% {
        transform: scaleY(1) rotate(135deg)
    }

    50% {
        transform: scaleY(-1) rotate(0deg)
    }

    100% {
        transform: scaleY(-1) rotate(-135deg)
    }
}


/* select2 overrides */

.select2-container {
    flex: 1;
    height: 100% !important;
}

.select2 {
    height: auto !important
}

.selection {
    height: 100% !important;
    display: block;
}

.select2-selection {
    height: 100% !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #E9ECEF;
}

.swal2-popup {
    max-height: 96vh;
    overflow-y: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 35px;
}

.highlight {
    background-color: rgba(0, 0, 0, 0.19) !important; /* Slightly darker tone */
}


.highlight-dark {
    background-color: rgba(0, 0, 0, 0.5) !important; /* Slightly darker tone */
    color: white;
}

.header-cell:hover {
    cursor: pointer;
    background-color: #9e222e;
}

@media only screen and (max-width: 900px) {
    .custom_break_modal {
        max-width: 80%; /* Adjust as needed */
    }
}

@media only screen and (max-width: 768px) {
    .custom_break_modal {
        max-width: 100%; /* Adjust as needed */
    }
}