﻿:root {
    --rin-orange: #E87722;
    --white1: rgb(230, 230, 230);
}

::-webkit-scrollbar {
    width: 5px;
    /* Width of the vertical scrollbar */
    height: 3px;
    /* Height of the horizontal scrollbar */
}

/* Styling the scrollbar track */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.4);
}

/* Styling the scrollbar thumb */
::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    width: 10px;
    background: #555;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #ffa516 94%, #0000) top/8px 8px no-repeat, conic-gradient(#0000 30%, #ffa516);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
    animation: l13 1s infinite linear;
}

.loading-cursor {
    cursor: wait !important;
}

.mca-page-loader{
   /* height:200px;
    background-color:yellow;*/

    margin-bottom:100px;
}

.btn-new-mca {
    /*background-color: var(--rin-orange) !important;*/
    background: linear-gradient(180deg, orange 20%, var(--rin-orange) 80%) !important;
    color: black;
}

.custom-btn {
    /*background-color: var(--white1);*/
    background: linear-gradient(180deg, white 20%, var(--white1) 80%);
    outline: none;
    border: none;
    box-shadow: 1px 1px 4px 1px black;
    font-weight: bold;
    border-radius:5px;
    padding: 2px 10px;
}

.custom-btn:not([disabled]):hover {
    box-shadow: 1px 1px 2px 1px black;
}

    .custom-btn[disabled] {
        box-shadow: none;
        padding: 2px 10px;
    }

.custom-btn-deactivated {
    background-color: var(--white1) !important;
    box-shadow: none !important;
    color: darkgray;
    border:1px solid gray;
}

.custom-btn-deactivated:hover {
    cursor: default;
}


.wf-class {
    display: inline-block;
    background-color: gray;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 10px;
    width: 150px;
    color: white;
    text-align:center;
}

.wf-class-AwaitingClarification,
.wf-class-PaymentPending {
    background-color: red;
    color: white;
}

.wf-class-DocumentsAccepted,
.wf-class-Processing {
    background-color: green;
    color: white;
}


.wf-class-Completed {
    background-color: var(--rin-orange);
    color: white;
}

.wf-class- .new-mca-input {
    width: 300px;
    height: 35px;
}

input:focus {
    outline: none;
}

input{
    /*background-color:yellow;*/
    background-color:gainsboro;
    padding: 8px 10px;
    border-bottom:1px solid gray;
}

.new-mca-input[type="file"] {
    width: 500px;
    height: 35px;
}

.all-mcas-tr:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.clicked {
    background-color: aliceblue;
}

.unmarked {
    background-color: #FFEDEDFF;
}

.clicked.unmarked {
    background-color: aliceblue;
}


.clicked:hover {
    background-color: #dff0ff; /* darker aliceblue */
}

.unmarked:hover {
    background-color: rgba(255, 0, 0, 0.1); /* slightly darker red tint */
}

.clicked.unmarked:hover {
    background-color: rgba(255, 128, 128, 0.25); /* darker mix */
}


.file-download-link {
    display: inline-block;
    max-width: 300px;
    height: 25px;
    font-size: 12px;
    line-height: 25px;
    padding: 0px 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: white;
    border: 1px solid gray;
    text-decoration: none;
    color: black;
    margin-right: 5px;
}

.file-attachment-container {
    margin-top: 15px;
}

.file-download-link:hover {
    color: black;
    background-color: #faf6f2;
}

.img-attachment-container {
    display: flex;
    flex-wrap: wrap;
}

.img-attachment {
    max-height: 500px;
    max-width: 60vw;
    padding-top: 10px;
    display: inline-block;
}

.img-attachment:hover {
    box-shadow: 1px 1px 5px 1px black;
    cursor: pointer;
}

.breadcrumb-container {
    padding-left: 20px;
    padding-top: 10px;
    font-size: 14px;
}

.breadcrumb-container>a {
    font-weight: bolder;
    /*color: var(--rin-orange);*/
    text-decoration: none;
}

.breadcrumb-container>a:hover {
    /*text-decoration: underline;*/
    color:black;
}

.dynamic-input {
    opacity: 0;
    border: 0.5px solid #151516;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0;
    position: absolute;
    z-index: 1;
    background-color: transparent;
}

.rinstrum-message-box a {
    color: var(--rin-orange);
}

    .rinstrum-message-box a:hover {
        text-decoration: underline;
    }

.rich-text-editor-for-chat div {
    background-color: #ebebeb;
    /*background-color:white !important;*/
}

.rich-text-for-chat p{
    margin:0;
    min-height:13px;
}

.clickable-tile:hover {
    /*outline:1px solid var(--rin-orange);*/
    /*color:orange;*/
    background-color:#dff0ff;
    /*box-shadow: 1px 1px 1px 2px rgba(0,0,0,0.1);*/
}

@media (max-width: 921px) {
    .new-mca-input[type="file"] {
        width: fit-content !important;
    }
}

