.strains-table-content {
    padding-top: 40px;
    margin-top: 50px;
}
.strains-table-sub-title {
    color: #666;
    line-height: 26px;
    margin-top: 10px;
}
.strains-table {
    margin-top: 30px;
    margin-bottom: 50px;
    display: grid;
    gap: 0px 0px;
    grid-template-columns: 1fr 180px 180px;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    background-color: #ededf8;
    border-radius: 12px;
}
.strain-cell {
    min-height: 50px;
    font-size: 16px;
    line-height: 50px;
    color: black;
    text-align: center;
    /* border-bottom: 1px solid #b8b3c7; */
}
.bg-purple {
    /* background-color: #3d3165; */
    /* color: white; */
    background-color: rgba(125, 108, 184, 0.5);
    /* border-bottom: 1px solid white; */
}
.strain-cell .fa {
    font-size: 20px;
}
.strain-cell.top-radius {
    border-radius: 20px 20px 0 0;
}
.strain-cell.bottom-radius {
    border-radius: 0 0 20px 20px;
    border-bottom: none;
}
.strain-cell.no-border {
    border-bottom: none;
}
.strain-cell.strain-cell-title {
    text-align: left;
    padding: 0 20px 10px 20px;
}
@media screen and (max-width: 750px) {
    .strains-table {
        grid-template-columns: 1fr 50px 90px;
    }
}
@media screen and (max-width: 750px) {
    .strains-table-content {
        margin-top: 0px;
    }
    .strains-table {
        grid-template-columns: 1fr 50px 100px;
    }
    .strain-cell {
        min-height: auto;
        font-size: 13px;
    }
    .strain-cell.cell-last, .strain-cell.bg-purple {
        line-height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .strain-cell.strain-cell-title {
        line-height: 20px;
        display: flex;
        align-items: center;
    }
    .strains-table-sub-title {
        line-height: 16px;
    }
}

@media screen and (min-width: 1300px) {
    .strains-table {
        grid-template-columns: 1fr 250px 250px;
    }
}
