.imgSchProfiles {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.searchbar {
    margin-bottom: auto;
    margin-top: auto;
    height: 60px;
    width: 60px;
    background-color: #3157A7;
    border-radius: 30px;
    padding: 10px;
    margin-bottom: 20px;
}

.search_input {
    color: white;
    border: 0;
    outline: 0;
    background: none;
    width: 0;
    caret-color: transparent;
    line-height: 40px;
    transition: width 0.4s linear;
    margin-top: 10px;
    position: absolute;
}

.searchbar:hover {
    padding: 0 10px;
    width: 450px;
    transition: width 0.4s linear;
}

    .searchbar:hover > .search_input {
        padding: 0 10px;
        width: 450px;
        transition: width 0.4s linear;
        caret-color: red;
    }

    .searchbar:hover > .search_icon {
        background: white;
        color: #3157A7;
        margin-top: 10px;
        float: right;
    }

.search_icon {
    height: 40px;
    width: 40px;
    float: right !important; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
}


.CardA {
    margin-bottom: 1rem;    
}