﻿.ListRow:nth-child(odd) {
    background-color: #f8f9fa;
    flex-wrap: wrap;
}

.ListRowInner {
    height: 120px;
    padding: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.RowImgContainer {
    width: 200px;
    height: 100%
}

.RowImg {
    background-color: white;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    border-radius: 4px
}

.CompanyName {
    flex-grow: 1;
    padding: 10px;
    font-weight: 600;
    color: black;
}

.DataCol {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-right: 1px solid #0000003b;
    padding: 20px;
    min-width: 150px;
    max-width: 180px
}

    .DataCol div:nth-child(1) {
        font-size: 14px;
    }

    .DataCol div:nth-child(2) {
        font-weight: 600;
        margin-top: 10px;
        color: black;
    }

.DataColBtnContainer {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.DataColBtn {
    height: 40px;
    width: 40px;
    background-color: #e7eae8;
    color: black;
    border-radius: 40px;
}


@media (max-width: 768px) {

    .ListRow:nth-child(odd) {
        background-color: #f4f6f5;
        flex-wrap: wrap;
    }

    .ListRowInner {
        height: auto;
        width: 100%;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }



    .RowImgContainer {
        width: 100%;
        height: 130px;
    }

    .CompanyName {
        width: 100%;
        padding: 20px 0px;
        font-weight: 600;
        color: black;
        font-size: 20px;
    }

    .DataCol {
        height: 100%;
        width: 50%;
        border-right: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 5px;
        min-width: 50px;
    }
}
