/* custom breadcrumbs  */
.custom_breadcrumbs {
    width: fit-content;
    background: #0005;
    padding: 5px 15px;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #fff5;
  }
  .custom_breadcrumbs ul {
    display: flex;
    align-items: center;
    list-style: none;
  }
  
  .custom_breadcrumbs ul a {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 300;
  }
  
  .custom_breadcrumbs ul span {
    font-size: 16px;
    color: #fff;
  }
  
  .custom_breadcrumbs ul li:not(:last-child) a {
    border-right: 1px solid #fff;
    margin-right: 7.5px;
    padding-right: 7.5px;
  }
  

  /* END breadcrumbs */



  .row.hero_agenti_birou {
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 15px;
    padding-bottom: 50px;
}
.row.hero_agenti_birou::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0009;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.row.hero_agenti_birou h1 {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}
.container_title_search p {
    color: #d5d5d5;
}
.modul_cautare_agenti_birou {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    background-color: #fff;
    padding: 7.5px;
    border-radius: 10px;
    overflow: hidden;
}


#lang_filter_agents, #btn_search_agents, #search_filter_agents {
    height: 45px;
    border: unset;
}
#lang_filter_agents, #btn_search_agents {
    width: fit-content;
    white-space: nowrap;
    
}
#lang_filter_agents {
    background-color: transparent;
    font-family: "Manrope";
    padding-right: 7.5px;
    cursor: pointer;
    color: #101010;
}
#search_filter_agents {
    width: 100%;
}

select#lang_filter_agents:focus-visible,
input#search_filter_agents:focus-visible {
    outline: unset;
}
input#search_filter_agents {
    background: #ececec;
    border-radius: 7.5px;
    padding-inline: 10px;
    color: #414141;
    margin-inline: 7.5px;
    border: 1px solid #0001;
}
input#search_filter_agents::placeholder {
    font-size: 15px;
}
button#btn_search_agents {
    background: var(--primary-color);
    border-radius: 7.5px;
    color: #fff;
    transition: all .2s linear;
    padding: 5px 15px;
}
button#btn_search_agents:hover {
    background-color: var(--hover-primary);
}

.ajax_load_agents_lw {
    row-gap: 30px;
}

.agent_lw_inner_content {
    display: grid;
    grid-template: auto / 1fr;
    gap: 20px;
}
@media(min-width: 700px) {
    .agent_lw_inner_content {
        grid-template: auto / 0.4fr .8fr;
    }
}
.agent_img_side_list_view {
    background: #fff;
    border-radius: 15px;
}

.agent_img_side_list_view img {
    border-radius: 9px;
    object-fit: cover;
}

.agent_detials_side_list_view {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.details_lw h2, .details_lw h2 a {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 5px;
    font-family: 'Manrope';
}
.details_lw {
    display: flex;
}
.ma_container svg {
    width: 100%;
    height: auto;
}

.details_lw .text_s {
    display: flex;
    flex-direction: column;
    width: 85%;
    flex-shrink: 0;
}

.ma_container {
    width: 15%;
}
.details_lw_txt {
    font-family: 'Manrope' !important;
    font-weight: 300;
    color: #7a7a7a;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 0.2px;
}
span.title_contact_lw {
    font-family: 'Manrope';
    font-size: 16px;
    font-weight: 600;
}
.item_contact_lw:first-of-type {
    border-bottom: 1px solid #ddd;
}
 
@media(max-width: 800px) {
    .modul_cautare_agenti_birou {
        display: grid;
        grid-template: auto / 130px 1fr;
        grid-template: auto / 1fr;
        background: #fff2;
        border: 1px solid #fff6;
    }
    
    select#lang_filter_agents {
        grid-column: 1/-1;
        width: fit-content;
        background: #fff;
        border-radius: 5px 5px 0 0;
    }
    
    .wrapper_btn_search_agents {
        width: 100%;
        grid-column: 1/-1;
        margin-top: 10px;
        border-top: 1px solid transparent;
        margin-left: auto;
    }
    
    input#search_filter_agents {
        background: #fff;
        border-radius: 0 0 5px 5px;
        padding: 30px 15px;
        margin-inline: 0;
    }
    #btn_search_agents {
        width: 100%;
    }
}