﻿.card {
    display: flex;
    flex-direction: column;
    border-radius: 5 px;
    background: #fff;
    padding: 1rem 1.25rem;
    font-size: .875rem;
    box-shadow: -1px 1px 4px 0 rgb(117 138 172 / 12%);
    position: relative;
}
.card-grid {
    display: grid;
    grid-gap: 1rem;
    grid-auto-flow: column;
    overflow: auto;
    margin: 0 -1rem;
    padding-left: 1rem;
    justify-content: left;
    margin-right: 8px;
}
.card-grid .card {
    width: 230px;
}
.card--test{
    padding: 1rem;
}

.card--test .card__header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.5rem;
}

.card--test .card__logo{
    height: 44px;
    width: 44px;
}

.card--test .card__body{
    min-height: 167px;
}

.card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 140px;
}
.card h3{
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    max-width: 190px;
    margin-bottom: 0.25rem;
}
.total-test{
    text-transform: capitalize;
    font-size: .75rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f6f8f9;
    display: flex;
    align-items: center;
}
.lang-group[_ngcontent-serverApp-c22] {
    border-bottom: 1px solid #f6f8f9;
    padding: 0 0 0.625rem;
    margin-bottom: 0.75rem;
}
.lang-group__text{
    position: relative;
    padding-left: 1.25rem;
    font-size: .75rem;
}
.lang-group__text:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(https://testbook.com/assets/img/utility/lang-options-primary.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    height: 14px;
    width: 14px;
}
.card--test .card__list{
    margin: 0;
    padding: 0;
    list-style: none;
    color: #646f79;
    font-size: .75rem;
}
.card--test .card__list li{
    margin-bottom: 0.25rem;
}
.card--test .card__footer{
    width: 100%;
}
.btn, .btn:hover {
    transition: all .2s ease-in-out;
}
.card__footer .btn {
    display: block;
    width: 100%;
}
@media (max-width: 1200px) {
    .card {
        padding: 0.75rem;
    }
}
