﻿.expanded-card-separator {
    display: flex;
    height: 100%;
}

.expanded-card-separator-left {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    position: relative;
}

.expanded-card-separator-left:before {
    content: '';
    position: absolute;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: darkgray;
}

.expanded-card-separator-right {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    padding-left: 22px;
}