.buscador-wrapper {
	display: flex;
	justify-content: center;
	padding: 40px 20px;
	font-family: 'Montserrat';
}
.buscador-wrapper.layout-right{
	display:flex;
	padding:0;
}
.buscador-wrapper.layout-right .buscador-card{
	padding: 0;
    background: transparent;
    box-shadow: none;
	display:flex;
	align-items:center;
	gap:20px;
	max-width: 100%;
	margin-bottom: 35px;
}

/* buscador */
.layout-right .buscador-main{
	flex:0 0 50%;
}

/* filtros */
.layout-right .buscador-filtros{
	flex:0 0 50%;
	display:flex;
	gap:30px;
	flex-wrap:nowrap;
	margin: 0;
}

.layout-right .buscador-input-group, .layout-right input{
	background-color: #fff !important;
}
/* radios */
.filtro-opciones{
	display:flex;
	gap:15px;
	margin-top:6px;
	font-size:14px;
}
.layout-right .filtro-opciones label:before {
	background-color: #DFE6F6;
	border: 1px solid #DFE6F6;
    content: '';
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
    border-radius: 50px;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
	margin-right: 10px;
}
.layout-right .filtro-opciones input:checked+label:before {
    background-image: url(/wp-content/uploads/2026/03/check-icon-cjp.svg);
    background-color: #fff;
    border-color: #395CAF;
}
.layout-right .filtro-opciones input{
	position: absolute;
	opacity: 0;
}
.buscador-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    max-width: 830px;
    width: 100%;
    box-shadow: 2px 10px 25px rgb(32 49 102 / 11%);
    position: relative;
}

.buscador-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #033E8C;
}

.buscador-input-group {
    display: flex;
    background-color: #F4F9FF;
    border-radius: 40px;
    border: 1px solid #395CAF;
    overflow: hidden;
    align-items: stretch;
}

.buscador-input-group input {
    flex: 1;
    border: none;
    padding: 14px 20px;
    font-size: 15px;
    outline: none;
    background-color: #F4F9FF;
}

.btn-buscar {
    background: #203166;
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s ease;
	display: flex;
    column-gap: 20px;
    align-items: center;
}

.btn-buscar:hover {
    background: #16324f;
}

.buscador-filtros {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.filtro-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
	column-gap: 10px;
	max-width: 350px;
	width: 100%;
}

.filtro-item label {
    font-size: 14px;
    color: #555;
	width: fit-content;
	display: flex;
	align-items: center;
	border: 1px solid #395CAF;
	padding: 6px 10px;
	border-radius: 100px;
}

.filtro-item select {
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 14px;
    outline: none;
	appearance: none;
    background-image: url(/wp-content/uploads/2026/03/arrow-select-cjp.svg);
	background-repeat: no-repeat;
	background-position: 90% 50%;
    max-width: 130px;
    width: 100%;
    background-size: 14px;
}
.resultados-medicos {
    position: absolute;
    top: 180px;
    left: 50%;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    box-shadow: 2px 2px 25px rgb(32 49 102 / 11%);
    padding: 25px;
    z-index: 999;
    display: none;
    max-width: 640px;
    transform: translatex(-50%);
    color: #232C5A;
}
.resultados-medicos .meta-title{
    display: flex;
    gap: 17px;
    align-items: center;
    margin-bottom: 11px;
}
.resultados-medicos .meta-title h5{
    font-size: 13px;
    text-transform: uppercase;
    margin: 0;
}
.resultados-medicos.active {
    display: block;
}
.resultados-medicos .search-item{
    padding-left: 30px;
}

.resultados-medicos .search-section:not(:last-child){
    border-bottom: 1px solid #232C5A;
    margin-bottom: 16px;
}
.medico-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.medico-item h4 {
    margin-bottom: 8px;
}
.search-item{
    margin-bottom: 17px;
}
.search-item a, .medico-card .medico-info a{
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    color: #232C5A;
}
.search-item .search-sub{
    font-size: 12px;
}
.medico-card {
    max-width: 50%;
    width: 100%;
    float: left;
    display: flex;
    column-gap: 20px;
}
.medico-img {
    min-width: 60px;
    height: 60px;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
}
.medico-card .medico-img img {
    object-fit: cover;
    position: absolute;
    width: 120px;
    height: 120px;
}
.medico-card .medico-info{
    font-size: 12px;
    color: #232C5A;
}