/* FILTRO */

.opcion-flotante {
    position: absolute;
    background: #FFF;
    display: none;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);

    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.opcion-flotante.visible-flotante {
    opacity: 1;
    transform: translateY(0);
}

.opcion-boton {
    width: 36px !important;
    display: flex;
    flex: inherit;
    padding: 0;
    justify-content: center;
    align-items: center;
    background-color: #3c7d94 !important;
    border: 0 !important;
    outline: 0 !important;
    font-size: 13px;
    text-align: center;
    color: white;
    /*border-radius: 3px;*/
    transition: all ease 0.3s;
    cursor: pointer;
    font-weight: 500;
    vertical-align: middle;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.boton-component .select-component {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: 0 !important;
}

.filtro-component {
    background-color: #ffff;
    border-radius: 30px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 2px 3px rgb(0 0 0 / 5%);
    padding: 3px;
    font-weight: 500;
    font-size: 14px;
    flex-wrap: nowrap;
}

.filtro-component .selector {
    white-space: nowrap;
}

.filtro-component:hover {
    box-shadow: 0 4px 6px rgb(0 0 0 / 5%);
}

.filtro-component .opciones {
    position: absolute;
    right: 0;
    top: calc(100% - 10px);
    z-index: 11;
    width: 100%;
    min-width: 200px;
    background-color: #131313;
    color: #fff;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.2s;
    padding: 10px;
}

.filtro-component.active .opciones {
    visibility: visible;
    top: calc(100% + 10px);
    opacity: 1;
}

.filtro-component .opciones > .option {
    padding: 12px 15px;
    color: #fff;
    flex-wrap: nowrap !important;
    white-space: nowrap;
}

.filtro-component .opciones > .option:hover {
    background-color: #292929;
    border-radius: 25px;
}

.filtro-component .iconob {
    width: 40px;
    height: 40px;
    background-image: url('../public/img/boton.svg');
    overflow: hidden !important;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.filtro-component .iconob > i {
    color: #fff !important;
}

.filtro-component .selector {
    line-height: 40px;
    padding: 0 15px;
}


*[chevron-down=true].filtro-component {
    border: 1px solid #ddd;
    border-radius: 3px;
}

*[chevron-down=true].filtro-component .initial.iconob {
    background-image: unset;
    width: 10px;
    height: 13px;
    margin-right: 10px;
}

*[chevron-down=true].filtro-component .iconob > i {
    color: unset !important;
}

.select-component {
    background-color: #ffff;
    border-radius: 30px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 2px 3px rgb(0 0 0 / 5%);
    border: 1px solid rgb(0 0 0 / 4%);
    /* box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);*/
    padding: 3px;
    font-weight: 500;
    font-size: 14px;
    flex-wrap: nowrap;
}

.select-component .selector {
    padding: 0 15px 0 7px;
}

.select-component .selector > div {
    display: flex;
    align-items: center;
}

.select-component .selector > span {
    margin-right: 5px;
}

.select-component .selector > div img {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 1px solid #ddd;
    margin-right: 5px;
}

.select-component .selector > div span :nth-child(2) {
    font-size: 11px;
}

.select-component .selector > div span {
    display: flex;
    flex-direction: column;
}

.select-component .selector > div > i {
    width: 30px;
    border-radius: 100%;
    margin-right: 8px;
    font-size: 17px !important;
    text-align: center !important;
}

.select-component .opciones {
    position: absolute;
    padding: 6px;
    right: 0;
    top: calc(100% - 3px);
    z-index: 11;
    width: 100%;
    min-width: 300px;
    background-color: #FFF;
    border: 1px solid #ddd;
    color: #fff;
    border-radius: 5px;
    display: none;
}

.select-component .opciones input:focus {
    border-color: #1694CA;
    box-shadow: inset 0 1px 3px rgb(0 0 0 / 6%), 0 0 5px rgb(19 131 179 / 70%);
}

.select-component .iconob {
    width: 40px;
    height: 40px;
    background-image: url('../public/img/boton.svg');
    overflow: hidden !important;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.select-component .iconob > i, .filtro-component .iconob > i {
    transform: rotate(180deg);
    font-size: 8px !important;
    transition: transform 0.3s ease;
    color: #FFF;
}

.select-component .opciones .opciones2 {
    overflow-y: scroll;
    max-height: 200px;
}

.select-component .opciones .opciones2 > .option > div {
    display: flex;
    align-items: center;
}

.select-component .opciones .opciones2 > .option > div img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid #ddd;
    margin-right: 8px;
}

.select-component .opciones .opciones2 > .option > div:first-child > i:first-child {
    width: 30px;
    border-radius: 100%;
    margin-right: 8px;
    font-size: 17px !important;
    text-align: center !important;
}

.select-component .opciones .opciones2 > .option > div span {
    display: flex;
    flex-direction: column;
    overflow: hidden; /*RETIRAR*/
    /*color: #3e4357;*/
}

.select-component .opciones .opciones2 > .option > div span :nth-child(1) {
    font-weight: 550;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-component .opciones .opciones2 > .option > div span :nth-child(2) {
    font-size: 11px;
}

.select-component .opciones .opciones2::-webkit-scrollbar {
    background-color: #b8b8b83b;
    width: 10px !important;
}

.select-component .opciones .opciones2 > .option {
    color: #3a3939;
    padding: 5px 9px;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-component .opciones .opciones2 > .option:hover {
    background: #3c7d94 !important;
    color: #FFF;
}

.select-component.active .opciones {
    visibility: visible;
    background: #FFF;
    top: calc(100% + 3px);
    display: block;
    opacity: 1;
    left: 0;
}


*[chevron-down=true].filtro-component {
    border: 1px solid #ddd;
    border-radius: 3px;
}

*[chevron-down=true].filtro-component .initial.iconob {
    background-image: unset;
    width: 10px;
    height: 13px;
    margin-right: 10px;
}

*[chevron-down=true].filtro-component .iconob > i {
    color: unset !important;
}


*[chevron-down=true].filtro-component .iconob > i, *[chevron-down=true].select-component .iconob > i {
    /*transform: rotate(180deg);
    font-size: 9px !important;*/
    color: #807171 !important;
}

.filtro-component .iconob, .select-component .iconob {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.rotar-icono > i {
    transform: unset !important;
}


/* Cards */

.CardUser {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    width: 350px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    transform: all ease 0.3s;
    background-color: #121212;
    position: absolute;
    left: 0;
    top: calc(100%);
    z-index: 111;
    visibility: hidden;
    opacity: 0;
    transition-timing-function: ease-out;
    transition-property: all;
    transition-delay: 0.3s;
    transition-duration: 0.1s;
    cursor: default;
}

.CardUser:hover {
    opacity: 1;
    visibility: visible;
}

.CardUser > .info {
    padding: 20px 10px;
    color: #fff;
}

.CardUser > .foto {
    height: 170px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.CardUser > .info .name {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
}

.CardUser ul li {
    color: rgb(169, 169, 169);
    margin-bottom: 7px;
}

.CardUser ul li i {
    font-size: 16px !important;
    color: inherit;
}

.CardUser .acciones {
    padding: 10px;
    border-top: solid 1px #292929;
}

.CardUser .acciones a {
    display: block !important;
    margin-bottom: 10px;
    background-color: #292929;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    border: solid 3px transparent;
}

.CardUser .acciones a:active {
    transform: scale(0.9);
}

.CardUser .acciones a:hover {
    border-color: var(--primary);
}

.CardUser .acciones a:nth-last-child(1) {
    margin-bottom: 0 !important;
}

.loadtarjeta:hover + .CardUser {
    opacity: 1;
    visibility: visible;
}

.loadtarjeta {
    cursor: pointer !important;
}

/* BOTONES DESPLEGABLES */

.mdesple {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.mdesple > i {
    font-size: 20px !important;
    color: rgb(194, 194, 194);
}

.mdesple .opciones .loading {
    margin: 0 20px;
}

.mdesple .opciones {
    width: 200px;
    background-color: #131313;
    padding: 10px;
    border-radius: 10px;
    right: -5px;
    /*top: 10px;*/
    position: absolute;
    /* z-index: 1;
     opacity: 0;*/
    /*visibility: hidden;*/
    transition: all ease 0.2s;
    text-align: left !important;
    top: calc(100% + 10px);
    /*opacity: 1;*/
    /*visibility: visible;*/
    z-index: 2;
    display: none;
}

.mdesple .opciones a {
    padding: 10px;
    border-radius: 25px;
    display: block;
    width: 100%;
    color: #fff;

}

.mdesple .opciones a:hover {
    background-color: #292929;
}

/*.mdesple.active .opciones {
    top: calc(100% + 10px);
    opacity: 1;
    visibility: visible;
    z-index: 2;
}*/

@media (max-width: 600px) {
    #buscador-component {
        width: 100% !important;
        max-width: 100% !important;
    }

    .mdesple {
        display: inline-flex;
    }
}


div[responsive="true"] .me-show {
    display: none;
}

.mdesple .opciones div.responsive-info {
    /*padding: 11px 0;*/
    border-radius: 25px;
    display: block;
    width: 100%;
    color: #fff;
}

.mdesple .opciones div.responsive-info a {
    margin-left: 0 !important;
    padding: 3px 10px;
}

.mdesple .opciones div.responsive-info ul > li:first-child a {
    margin-left: 0 !important;
    border-radius: unset !important;
}


.mdesple .opciones div.responsive-info .CardUser {
    right: 0 !important;
    left: unset !important;
    display: none;
}

.mdesple .opciones div.responsive-info:hover {
    background-color: unset;
}

.mdesple .opciones div.responsive-info ul li {
    padding-top: 5px;
}


.mdesple .opciones div.responsive-info .loadtarjeta:hover + .CardUser {
    display: block;
    top: calc(100% + 8px);
}

.mdesple .opciones div.responsive-info .ml-20, .mdesple .opciones div.responsive-info .mr-20 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hover-unset:hover {
    background: unset !important;
}

.option .circle {
    margin-right: 6px;
}