.doctor-card{
    display: inline-block;
    background-color: white;
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
    min-height: 135px;
    height: fit-content;
    margin-bottom: 10px;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 25px 55px;
    -webkit-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.02);
    -moz-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.02);
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.02);
}    


.doctor-cardr:hover {
    -webkit-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.06);
}

.doctor-info{
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    height: 70px;
}

.doctor-info .badge-cont{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.doctor-info .name{
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 17px;
    margin-right: 10px;
}

.doctor-info .name.no-badge{
    margin-right: 0px;
}


.doctor-info .total-rating{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: auto;
}

.doctor-info .badge-cont .badge{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.doctor-info .badge-cont .badge svg{
    width: 35px;
    height: 35px;
    /* margin: auto; */
}

.doctor-info .total-rating span{
    text-align: center;
    height: 40px;
    width: 60px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 14px;
    box-sizing: border-box;
    padding-top: 5px;
    color: white;
}

.doctor-secondary-info{    
    display: flex;
    flex: row;
    flex-direction: row-reverse;
    box-sizing: border-box;
}

.doctor-secondary-info .gender{
    margin-left: 10px;
}

.doctor-secondary-info .gender .female {
    color: #e050a9;
}
  
.doctor-secondary-info .gender .male {
    color: #35bab0;
}

.doctor-secondary-info .college{
    color: #cccccc;
}
  
.doctor-stats{
    display: flex;
    flex-direction: row;
    margin-top: 10px;
    box-sizing: border-box;
    padding-left: 5px ;
    padding-right: 5px;
}

.doctor-stats .stat{
    display: flex;
    flex-direction: row;
    margin-right: 20px;
    color: #afafaf;
}


.doctor-stats .stat .icon{
    margin-right: 5px;
}

.wcard{
    display: inline-block;
    /* background-color: white; */
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
    min-height: 135px;
    height: fit-content;
    margin-bottom: 10px;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 25px 55px;
    /* -webkit-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.02);
    -moz-box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.02);
    box-shadow: 0px 10px 45px 0px rgba(0, 0, 0, 0.02); */
}

.wcard .img{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.wcard div{
    text-align: center !important;
    /* text-align: center; */
    text-justify: inter-word;
    line-height: 30px;
    margin-bottom: 20px;
}

.wcard div a{
        text-decoration: underline !important;
}

@media (max-width: 1400px) {
    .doctor-card{
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
        padding: 15px 15px;
    }   

    .wcard{
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
        padding: 15px 15px;
    }

}



