

.subject_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: flex-start;
    
}

.subject_item {
    width: 200px;
    height: 307px;
    border-radius: 13px;
    background-color: #F2F0F0;
    position: relative;
    cursor: pointer;
    box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 15%);
    margin: 10px;
    transition: transform 0.3s;
}

.subject_item:hover
{
    transform: scale(1.03);
    transition: transform 0.3s;
}


.subject_cover {
    width: 100%;
    height: 200px;
    border-radius: 13px 13px 0px 0px;
    object-fit: cover;
}

.subject_title
{
    font-family: DB_1;
    font-size: 20px;
    letter-spacing: 0.5px;
    margin-left: 12px;
    margin-right: 8px;
    line-height: 1;
    margin-top: 7px;
}


.subject_teacher
{
    font-family: DB_0;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-left: 12px;
    margin-right: 8px;
    line-height: 1;
    margin-top: 2px;
    color: gray;
}




.subject_app_imgWrapper
{
    display: flex;
    position: absolute;
    left: 12px;
    bottom: 12px;

}

.subject_app_icon {

    position: relative;
    width: 22px;
    padding: 0px;
    border-radius: 4px;
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 25%);
    background-color: white;
    transition: brightness 0.2s, box-shadow 0.2s;
    margin-right: 6px;
}

.subject_price_wrapper {
    display: flex;
    align-items: center;
    justify-content: right;
    position: absolute;
    right: 0px;
    top: 0px;
    background: white;
    padding: 0px 5px 0px 6px;
    border-radius: 0px 12px;
    opacity: 88%;
}


.subject_price_icon {
    width: 15px;
    height: 15px;
    margin-bottom: 2px;
    margin-right: 3px;
}


.subject_price {
    font-family: DB_1;
    font-size: 18px;
    letter-spacing: 0.5px;
    
}

.subject_score
{
    font-family: DB_1;
    font-size: 18px;
    letter-spacing: 0.5px;
    display:flex;
    margin-left:3px;
}

.subject_score_full
{
    font-family: DB_1;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: gray;
    margin-top: 5px;
    margin-right: 3px;
}

.subject_sign_up_count_wrapper{
    display: flex;
    align-items: center;
    justify-content: right;
    position: absolute;
    right: 12px;
    bottom: 8px;
}

.subject_sign_up_count_icon{
    width: 15px;
    height: 15px;
    margin-bottom: 2px;
    margin-right: 3px;
    opacity: 35%;
}

.subject_sign_up_count_text {
    font-family: DB_1;
    font-size: 18px;
    letter-spacing: 0.5px;
    opacity: 45%;
}

.subject_blue_check
{
    width: 17px;
    height: 17px;
    margin-top: 5px;
    margin-left: 2px;
    margin-bottom: 6px;
    margin-right: 3px;
    
}


.subject_group_name {
    font-family: 'DB_1';
    font-size: 23px;
    letter-spacing: 0.5px;
    margin-left: 12px;
    line-height: 1;
    margin-top: 11px;
    color: var(--BLUE_OG);
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
}

.search_result_wrapper {
    width: calc(100% - 97px);
    max-width: 700px;
    background-color: #f2f2f2;
    border: 0px solid var(--BLUE_OG);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 40px;
    z-index: 1;
    display: none;
}

.search_result
{
    font-family: 'DB_1';
    font-size: 19px;
    letter-spacing: 0.5px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    padding: 5px 10px;
    transition: 0.2s;
}

.search_result:hover
{
    background-color: white;
    cursor: pointer;
    border-radius: 10px;
    color: var(--BLUE_OG);
    transition: 0.2s;
}


.search_result_group_and_tag {
    font-family: 'DB_1';
    font-size: 19px;
    letter-spacing: 0.5px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
    padding: 5px 10px;
    transition: 0.2s;
    background-color: #4490e0;
    border-radius: 10px;
    color: white;
    width: 161px;
}

.search_result_group_and_tag:hover {
    background-color: var(--BLUE_HOVER);
    color: white !important;
    cursor: pointer;
    border-radius: 10px;
    color: var(--BLUE_OG);
    transition: 0.2s;
}

.group_tag_container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.group_tag_the_small_number {
    font-family: DB_0;
    margin-left: 6px;
    color: #d1d1d1;
}