body {
    background: #ffffff;
    padding: 10px;
    margin: 0;
}

#wapper {
    max-width: 900px;
    margin: 0 auto;
    background: #f0f0f0;
    padding: 10px;
}

.doctor-card {
    background: #fff;
    border-radius: 2px;
    margin: auto;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.doctor-card > a {
    text-decoration: none;
}

.doctor-card .info {
    padding: 15px;
    display: grid;
    grid-template-columns: 90px auto;
}

.doctor-card .info .avatar {
    overflow: hidden;
    height: 72px;
    width: 72px;
    border-radius: 3px;
    margin-top: 5px;
    border: solid 2px #676f65;
    padding: 1px;
}

.doctor-card .info .avatar img {
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
}

.doctor-card .info .details {
    align-self: center;
    padding: 10px 0;
}

.doctor-card .info .details .name {
    font-size: 18px;
    line-height: 1;
    padding: 2px 0;
    font-weight: 400;
    margin: 0;
    color: red;
}

.doctor-card .info .details .meta-info {
    padding: 2px 0;
    color: #787878;
    line-height: 16px;
    font-weight: 400;
}

@media (max-width: 575px) {
    .doctor-card .info {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .doctor-card .info .details {
        text-align: center;
    }

    .doctor-card .info .details .meta-info {
        padding: 5px;
    }

}

.doctor-card .actions {
    margin: 10px;
    display: flex;
    flex-shrink: 1;
    border-collapse: collapse;
    border-radius: 3px;
    border-style: hidden;
    box-shadow: 0 0 0 1px #dadada;
    justify-content: center;
}

.doctor-card .actions > div {
    text-align: center;
    border: 1px solid #dadada;
    vertical-align: middle;
    padding: 5px;
    flex: 1;
}

.doctor-card .actions .ratings .rating-control {
    display: block;
}

.doctor-card .actions .ratings .rating-control .fa {
    font-size: 18px;
    color: #ffdc40;
}

.doctor-card .actions .ratings .rating-count {
    font-size: 12px;
    text-transform: uppercase;
    color: #898989;
}

/*.doctor-card .actions .comments {*/
/*    width: 23%;*/
/*}*/
/*.doctor-card .actions .comments .comment-count {*/
/*    font-size: 12px;*/
/*    text-transform: uppercase;*/
/*    color: #898989;*/
/*}*/
/*.doctor-card .actions .comments .comment-count strong {*/
/*    display: block;*/
/*    color: #0081e0;*/
/*    font-size: 18px;*/
/*    font-weight: 400;*/
/*    line-height: 20px;*/
/*}*/
/*.doctor-card .actions .consultation {*/
/*    width: 23%;*/
/*}*/
/*.doctor-card .actions .consultation .fee {*/
/*    font-size: 12px;*/
/*    text-transform: uppercase;*/
/*    color: #898989;*/
/*}*/
/*.doctor-card .actions .consultation .fee strong {*/
/*    display: block;*/
/*    color: #0081e0;*/
/*    font-size: 18px;*/
/*    font-weight: 400;*/
/*    line-height: 20px;*/
/*}*/

.doctor-card .actions .appo .btn {
    background: #0081e0;
    display: block;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    padding: 15px;
    margin: 0 5px;
}

.btn-danger {
    background: #cb3737 !important;
}

@media (max-width: 575px) {
    .doctor-card .actions > div {
        display: block;
        padding: 10px;
        height: auto;
    }
}

.doctor-card .comments {
    padding: 15px 15px 20px;
    border-top: 1px solid #e2e2e2;
    border-radius: 0 0 2px 2px;
}

.doctor-card.hoverable:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.doctor-card.certified::after {
    content: "";
    background: url("//via.placeholder.com/100") no-repeat;
    background-size: contain;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
}

@media (max-width: 575px) {
    .doctor-card {
        padding: 10px;
    }

    .doctor-card .actions {
        flex-flow: column;
    }
}

.doctor-card + .doctor-card {
    margin-top: 1rem;
}

.fb-comments {
    min-width: 100% !important;
    width: 100% !important;
}

.fb_iframe_widget_fluid_desktop iframe{
    min-width: 100% !important;
    width: 100% !important;
}
