.card{
    background: transparent;
}

.card .img{
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    margin: 20px auto 10px auto;
} 

.custom-select-box {
    position: relative;
    padding: 0;
}

.custom-select {
    width: 100%;
    height: 100%;
    padding: 12px 16px;
    padding-right: 40px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 12px;
    color: var(--color-black);
    cursor: pointer;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-select-box::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--color-text-muted);
    pointer-events: none;
}

.custom-select option {
    background: var(--color-surface);
    color: var(--color-text);
    padding: 10px;
}

.custom-select:hover {
    background: rgba(0,0,0,0.05);
    border-radius: 8px;
}

.profile-card{
    position: relative;
    background-color: #e5e5e5;
    padding: 10px;
    border: 1px solid var(--color-border);            
    border-radius: 10px
}

:root.dark .profile-card{
    background-color: #555;
}

.profile-card .header{
    position: relative;  
    margin: 40px 0;   
    margin-bottom: 10px;   
}

.profile-card .header .img{
    width: 90px;
    height: 90px;
    border: none;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}

.profile-card .body .btns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.profile-star-badge{
    width: 30px; height: 30px;
    border: 2px solid var(--color-primary);
    background-color: var(--color-primary);
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: #fff;
    border-radius: 50%
}

.light-badge{
    padding: 5px 10px;
    background-color: #ddd;
    border-radius: 5px;
    font-size: 10.5px;
}

:root.dark .light-badge{
    padding: 5px 10px;
    background-color: #fff;
    border-radius: 5px;
    font-size: 10.5px;
}

.expert-card {
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-surface);
    width: 100%;
}

.expert-card:hover .heading-sm{
    color: var(--color-primary);
}

.expert-img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.custom-select{
    background-color: #f3f3f5 !important;            
}

.btn-grey{
    background: rgb(236 238 242);
    border: 1px solid rgb(236 238 242);
    color: var(--color-text);
    font-weight: 600;
}

:root.dark .btn-grey{
    background: rgb(38 38 38);
    border: 1px solid rgb(38 38 38);
}

.cs-selected, .cs-option{
    font-size: 11px;
}

.cs-wrapper{
    width: 15rem;
}

:root.dark .custom-select{
    background-color: #121212 !important;
}

.custom-input{
    background-color: #f3f3f5;
    border: 1px solid var(--color-border);
}

:root.dark .custom-input{
    background-color: #111718;
}

.expert-card .body{
    display: flex; justify-content:flex-start; align-items:center; gap:10px;
}

.expert-card .body .desc{
    padding:10px; display:flex; flex-direction:column;
}

.expert-card .body .desc p, .expert-card .body .desc h4, .expert-card .body .desc a{
    text-align: left;
}
.ready-to-connect{
    padding: 10px; border: 1px solid var(--color-border); border-radius: 10px;
}

.btn-message{
    background-color: #FFFFFF;
    border: 1px solid #e5e5e5;
    color: var(--color-text);
}

.btn-message:hover{
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.btn-grey:hover{
    color: var(--color-text);
}

:root.dark .btn-message{ 
    background-color: #121212;
    border: 1px solid #262626;
}

:root.dark .btn-message:hover{ 
    background-color: #ddd;
    color: #000;
}

.footer{
    display: flex; justify-content:flex-end;
}

@media (max-width:1000px){

    .ci-wrapper {
        position: relative;
        width: 100%;
    }
}

@media (max-width:592px){            

    .ci-wrapper {
        width: 100%;
    }

    .cs-wrapper {
        width: 100%;
    }
    .custom-input{
        width: 100%;
    }

    .expert-card .body .expert-img{
        width: 60px;
        height: 60px;
    }

    .expert-card .footer .btn{
        width: 100%;
    }

    .expert-card .row .btn-xs{
        padding: 4px 10px;
    }
}

@media (max-width: 576px) {
    .expert-card .body{
        flex-direction: row;
        align-items: flex-start;
    }

    .expert-card .body .row .col-lg-4 a{
        width: 100%;            
    }
    .footer{
        justify-content: center;

    }
}    

.areasofexpertises-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.areasofexpertises-tag {
    padding: 4px 10px;
    font-size: 13px;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    white-space: nowrap;
}