

.card {
    max-width: 250px;
    width: 250px;
    display: inline-table;
    background-color: #eeeeee;
    border: 1px solid;
    border-color: #898d8e;
    border-radius: .25rem;
    box-shadow: 9px 7px 2px #888888;
    margin: 10px;
    
}


.card.rush {   
    border: 2px solid;
    border-color: #ff0000; 
    box-shadow: 9px 7px 2px #4d0000;
}

.card.exception {   
    border: 2px solid;
    border-color: #DA68CE; 
    box-shadow: 9px 7px 2px #962299;
}



.cardHeader {
    height: 40px;
    width: 100%;
    background-color: #24b4d7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.idContainer {
    display: flex;
    align-content: center;
    justify-content: center;
    background-color: #24b4d7;
}

.idHolder {
    width: 56%;
    text-align: center;
    border-bottom: 1px solid black;
    color: white;
}

.idSpacerL {
    background-color: #eeeeee;
    width: 22%;
    border-top-right-radius: 10px 10px;
    border-right: 1px solid black;
    border-top: 1px solid black;
    text-align: center;
}

.idSpacerR {
    background-color: #eeeeee;
    width: 22%;
    border-top-left-radius: 10px 10px;
    border-left: 1px solid black;
    border-top: 1px solid black;
    text-align: center;
}

.cardHeader > p {
    font-size: 20px;
    font-style: bold;
    color: #eeeeee;
    padding-top: 15px;
    white-space: nowrap;
    
}

.cardContent {
    margin: 3px;
    text-align: center;
    
}

.cardFooter {
    height: 100%;
    width: 100%;
    border-top: 1px solid black;
    background-color: #cccccc;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem;
    
}

.cardFooterAgent {
    height: 100%;
    width: 100%;
    border-top: 1px solid black;
    background-color: #cccccc;
    
}


.cardFooter > p, label {
    margin: 3px;
    
}
.cardFooter > input {
    margin: 3px;
    width: 244px;
}

.cardDateContainer {
    height: 50px;
    width: 100px;
    max-height: 50px;
    max-width: 100px;
    background-color: #24b4d7;
    display: inline-table;
    margin: 5px;
    
}

.cardDates {
}

.cardType {
 transform: rotate(270deg);
 position: relative;
 
}


.rightClickMenu {
    visibility: hidden;
    background-color: #eeeeee;
    width: auto;
    height: auto;
    border: solid 2px black;
    border-radius: .25rem;
    display: block;
}

.rcmHeader {
    width: 100%;
    height: 25px;
    display: flex;
}

#rcmhDate {
    display: flex;
    padding: 5px;
    float: left;
    border-bottom: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    align-content: center;
    justify-content: center;
}

#rcmhReqFound {
    display: flex;
    width: 100%;
    padding: 5px;
    float: left;
    border-bottom: 1px solid #cccccc;
    align-content: center;
    justify-content: center;
}

.rcmContainer {
    padding: 5px;
}

.rcmContainer > a {
    width: 100%;
}

.rcmContainer > div:hover {
    background-color: #ddd;
}

.rcmContainer > span {
    display: flex;
    position: relative;
    left: 25%;
    width: 50%;
    border-bottom: 1px solid #cccccc;
    
}


















