

/* Jobcard Card */
.barcode-card {
    border-radius: 3px;
    padding: 5px;
    background: linear-gradient(to right, #868f96 0%, #596164 100%);
}

.barcode-card-wrapper {
    display: flex;
}

.barcode-card-image {
    display: block;
    width: 200px;
    height: auto;
    border-radius: 3px;
    border: 1px solid #7e7e7e;
}

.barcode-card-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.barcode-card-header {
    color: #e691ff;
    font-size: 18px;
    font-family: "Parkinsans", sans-serif;
    font-weight: 600;
}

.card-header-description {
    color: #fff;
    font-style: italic;
    font-size: 14px;
}


.card-item {
    font-size: 14px;
    color: #dedede;
    margin-top: 3px;
    font-style: italic;
}

.barcode-card-info span {
    text-decoration: underline;
}

.barcode-card-info a {
    text-decoration: none;
    color: #e691ff;
    font-family: "Parkinsans", sans-serif;
    font-weight: 600;
}

.barcode-card-info a:hover {
    color: #e7b1f7;
}

.barcode-card-info div {
    text-align: right;
}








/* STONE CARD */

.stone-card {
    display: flex;
    /* background: #454953; */
}

.stone-card-image {
    display: block;
    width: 160px;
    height: auto;
    /* border-radius: 10px; */
    margin-right: 10px;
    /* border: 1px solid #7e7e7e; */
}

.stone-card-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;

}

.stone-card-item {
    background: #cee9d3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 20px;
    /* align-items: center;  */
}

.stone-card-label,
.stone-card-value {
    display: block;
}

.stone-card-label {
    /* background: #aa9494; */
    font-family: "CeraRoundProBold";
    margin-bottom: 5px;
    color: #4d7e5e;
    /* font-size: 17px; */
}

.stone-card-value {
    font-style: italic;
    /* color: #fff; */
}