.op-parent-search div,
.op-parent-search input,
.op-parent-search ul,
.op-parent-search li {
    box-sizing: border-box;
    font-family: 'Libre Franklin';
}

.op-content-input-search {
    width: 100%;
    position: relative;
}

.op-input-search {
    width: 100%;
    height: 48px !important;
    border-radius: 12px !important;
    outline: none;
    border: 0px solid #000;
    background: #FFFFFF;
    padding: 17px 12px 0 12px!important;
    font-size: 14px;
}

.op-input-search:focus {
    /* border: 2px solid #528af3; */
    /* border: 0px solid #000; */
}

.op-content-list-search {
    background: #fff;
    border-radius: 12px;
    border: 0px solid #000;
    margin-top: 4px;
    display: none;
    width: 100%;
    max-height: 200px;
}

.op-list-search {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    max-height: 100%;
    overflow: auto;
}

.op-list-search > div {
    font-size: 14px;
    height: auto;
    min-height: 32px;
    padding: 0 15px;
    display: flex;
    justify-content: start;
    align-items: center;
}

.op-list-search > div:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.op-list-search > div.op-title-item-search {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: #F6F6F6;
    color: #0000005C;
}

.op-list-search > div.op-item-search {
    cursor: pointer;
    color: #00000099;
}

.op-list-search > div.op-item-parent-search {
    color: #00000099;
    font-size: 14px;
    font-weight: 700;
}

.op-list-search > div.op-item-not-found-search {
    color: #00000099;
    justify-content: center;
    text-align: center;
}

.op-list-search > div.op-item-search:hover {
    cursor: pointer;
    background: #DBDBDB;
    color: #00000099;
}

.op-input-search + label {
    position: absolute!important;
    top: 0!important;
    left: 12px!important;
    right: 0px!important;
    color: #aaa!important; /* Color del placeholder */
    pointer-events: none!important; /* Permite clics a través del label para enfocar el input */
    transition: all 0.2s ease-out!important;

    display: block;
    width: 100%!important;
    height: 100%!important;
    /* padding: .75rem; */
    margin-bottom: 0!important;
    font-size: 1rem!important;
    line-height: 1.5!important;
    color: #C4C4C4!important;
    pointer-events: none!important;
    cursor: text!important;
    transition: all .1s ease-in-out!important;
    font-weight: 100!important;
    font-size: 14px!important;
    display: flex!important;
    align-items: center!important;
}

/* Sube el label y reduce su tamaño cuando el input está enfocado o lleno */
.op-input-search:focus + label {
    position: absolute !important;
    top: -11px !important;
    left: 12px !important;
    right: 0px !important;
    color: #aaa !important;
    pointer-events: none !important;
    transition: all 0.2s ease-out !important;
    font-size: 10px!important;
    
}

.op-input-search:not(:placeholder-shown) + label {
    position: absolute !important;
    top: -11px !important;
    left: 12px !important;
    right: 0px !important;
    color: #aaa !important;
    pointer-events: none !important;
    transition: all 0.2s ease-out !important;
    font-size: 10px!important;
}