.panel-code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem;
    flex-direction: column;
}
.panel-code .panel_body {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 500px;
}
.panel-code .list {
    width: 100%;
    overflow-Y: scroll;
}
.panel-code .panel_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2rem;
}
.panel-code .panel_title span {

}
.panel-code .panel_item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    border-bottom: 1px dashed #058cff;
}
.panel-code panel_item span {
    text-align: center;
    width: 100%;
    user-select: text;
}
.panel-code .active_item {
    display: none;
}
*{
    box-sizing: border-box;
}
.panel-code .search-box{
    width: fit-content;
    height: fit-content;
    position: relative;
}
.panel-code .input-search{
    height: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    transition: all .5s ease-in-out;
    padding-left: 40px;
    color:#000;
    width: 300px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom:1px solid rgb(0 122 247 / 84%);
}
.panel-code .input-search::placeholder{
    color: rgb(42, 41, 41);
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 100;
}
.panel-code .btn-search{
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    left: -28px;
    color:#0072ff ;
    background-color:#bdd4ff;
    pointer-events: painted;
}
/*.btn-search:focus ~ .input-search{
    width: 300px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom:1px solid rgb(0 122 247 / 84%);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}*/
.panel-code .input-search:focus{
    width: 300px;
    border-radius: 0px;
    background-color: transparent;
    border-bottom:1px solid rgb(0 126 255 / 50%);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

@media (min-width: 345px) and (max-width: 767.98px) {

    .panel-code .panel {
        padding: 0 !important;
    }

    .panel-code .panel_body {
        width: 100% !important;
    }

    .panel-code .btn-search {
        width: 35px;
        height: 35px;
        left: -8px;
    }
}