/**********************************************/
/***************** BLANKO CARD ****************/
/**********************************************/

.blanko {
    display: flex;
    flex-flow: row-reverse wrap;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    padding: 17px 17px 40px 30px;
    background: rgba(40, 45, 55, 0.7);
}

.blanko__left_col {
    flex: 2;
    word-break: break-word;
}

.blanko__right_col {
    width: 150px;
    padding: 15px;
    margin-left: 20px;

    border: 1px solid rgba(69, 236, 236, 0.3);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.blanko__wrapper_img {
    width: 150px;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding-top: 15px;
    background: rgba(67, 116, 137, 0.5);
    border: 1px solid rgba(58, 146, 146, 0.3);
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.blanko__img_name {
    width: fit-content;
    padding: 3px 5px;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1;
    background: #962c33;
    text-align: center;
    color: #fff;
    transform: matrix(0.9, 0.2, -0.12, 0.96, 0, 2);
}

.blanko__img_name::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 0;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #962c33;
}

.blanko__img {
    width: 100%;
    height: 150px;
    display: block;
    object-fit: contain;
}

.blanko__offdesc {
    font-style: italic;
    font-size: 11px;
    text-align: justify;
}

.blanko__desc {
    max-width: 490px;
    overflow: hidden;
}

.offdesc__line {
    width: 100%;
    height: 1px;
    margin: 7px 0 10px;
    background: #7A7C8D;
}

.stats__item {
    display: flex;
    justify-content: space-between;
}

.stats_item__value {
    color: rgba(74, 242, 242, 0.8);
    font-weight: bold;
}

.blanko__sales_chart {
    width:100%;
    height:400px;
}