 /* cross line */

 #cross-line {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    
    user-select: none;

    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    font-size: 14px;

    opacity: 0.6;
}

#cross-line > #row-line {
    background: #000000;
    height: 0.5px;
    width: calc(100% - 140px);
    position: absolute;
    top: 50%;
    left: 72px;
    transform: translateY(-50%);
}

#cross-line > #col-line {
    background: #000000;
    height: calc(100% - 80px);
    width: 0.5px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

#crossline-text {
    position: absolute;
    /* background: #ee9c9c; */

    height: 100%;
    width: 100%;
    z-index: 1;
}
 
#col-text > div {
    text-align: center; 
    line-height: 0;
}

#col-text {
    position: absolute;

    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-direction: column;


    height: 100%;
    width: 100%;
}

#row-text {
    position: absolute;

    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-direction: row;

    left: 8px;
    height: 100%;
    width: calc(100% - 16px);
}
