#frm_search {
    background-color: #b20e6f;
    padding: 20px;
}

.item-teacher {
    border: 1px solid #ccc;
}

.item-teacher:hover {
    border: 1px solid #000;
    cursor: pointer;
}

.teacher-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--magenta);
    margin-bottom: 5px;
}

.teacher-image {
    height: 150px;
    padding: 0
}

.teacher-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border: 1px solid #ccc;
}

.expertise {
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 15px;
    padding: 5px;
}

.teacher-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.teacher-description.show {
    -webkit-line-clamp: unset;
}

.teacher-vote {
    font-size: 20px;
    color: var(--magenta);
}

.teacher-videos {
    height: 230px;
    border: 1px solid #ccc;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 80%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    border: 2px solid #fff;
    background: #000;
}

@media (max-width:480px) {
    .teacher-vote {
        font-size: 16px;
        margin-bottom: 10px;
    }
}