.list {
    display: flex;
    flex-flow: column nowrap;
    padding: 20px 0;
}

/*-------------------------------------------- 
        Main List - Positions
    --------------------------------------------*/

.position {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    margin: 0 0 20px;
    padding: 0 30px;
    background: #ffffff;
    box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.04);
    cursor: pointer;
}

    .position:hover {
        box-shadow: 0px 0px 15px 0px rgba(23, 24, 25, 0.2);
    }

    .position .content {
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        width: 490px;
        height: 50px;
        margin: 0 30px 0 0;
    }

        .position .content .title {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            color: #2681f6;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

            .position .content .title .time {
                margin: 0 0 0 12px;
                font-size: 12px;
                color: #9c9c9c;
            }

        .position .content .tip {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            color: #9c9c9c;
            font-size: 14px;
        }

            .position .content .tip span, .position .info .location span {
                display: inline-block;
                height: 14px;
                line-height: 14px;
                padding: 0px 8px 0px 10px;
                border-left: 1px solid #9c9c9c;
                font-size: 14px;
                max-width: 200px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

                .position .content .tip span:first-child, .position .info .location span:first-child {
                    padding-left: 0px;
                    border-left: 0px;
                }

                .position .content .tip .divider {
                    margin: 0 10px;
                }

    .position .info {
        flex: 1;
        display: flex;
        flex-flow: column nowrap;
        justify-content: space-between;
        min-width: 0;
        height: 50px;
        margin: 0 30px 0 0;
    }

        .position .info .school {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            color: #2681f6;
        }

            .position .info .school .vip {
                height: 12px;
                width: auto;
                margin: 0 0 0 4px;
            }

            .position .info .school .verify {
                height: 16px;
                width: auto;
                margin: 0 0 0 4px;
            }

        .position .info .location {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            color: #9c9c9c;
            font-size: 14px;
        }

            .position .info .location .divider {
                margin: 0 10px;
            }

    .position .icon {
        display: flex;
        align-items: center;
        height: 50px;
    }

        .position .icon img {
            width: 60px;
            height: 60px;
        }

