#tradecard {
    position: fixed;
    bottom: 0;
    left: 0;

    width: 1080px;
    height: 1080px;
    padding: 24px;

    display: grid;
    grid-template-columns: repeat(6, 1fr) 2fr;
    grid-template-rows: 3fr 5fr 2fr;

    background: linear-gradient(7deg, rgb(var(--darkest)) 24%, rgb(var(--orange)) 50%, rgb(var(--deepdark)) 76%);
    border-top: 2px solid rgb(var(--orange));
}

#card-render {
    grid-area: 2 / 1 / 3 / 7;

    background-color: rgb(var(--darkest));
    border-top-left-radius: var(--r20);
    border-bottom-left-radius: var(--r20);
}

#card-risk {
    grid-area: 2 / 6 / 3 / -1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40%;

    border: 2px solid rgb(var(--orange));
    border-left: none;
    border-top-right-radius: var(--r20);
    border-bottom-right-radius: var(--r20);
    
    line-height: 0;
    background: linear-gradient(to left, rgb(var(--darkest)) 70%, transparent 0%);
}

#card-stats {
    grid-area: 3 / 1 / -1 / -1;
    position: relative;

    display: flex;
    flex-direction: row;
    padding: 70px 43px 0px 43px;

    gap: 24px;
}

#card-header {
    position: absolute;
    top: -8px;
    left: 29px;

    display: inline-flex;
    width: 30%;
    height: 40px;  
    padding: 4px 8px;
    align-items: flex-end;

    background-color: rgb(var(--deepdark));
    border-radius: 6px;
    gap: 8px;
}

.information {
    flex: 1;

    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;

    column-gap: 8px;
    row-gap: 12px;
}

.information * {
    color: var(--el-color);
}

.information i {
    font-size: 32px;
}

/* Labels */
.information > *:nth-child(2) {
    align-self: center;
    font-size: 24px;
}

/* Direction and quotes */
.information > *:nth-child(3) {
    grid-column: 1 / -1;
    font-size: 40px;
    border-bottom: 2px dashed;
}