body{
    background:#EBECF2;
}

.btns a span{
    font-size:0px;
}
/**/

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0;
}
.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    opacity: 0;
}
.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(calc(2.25rem + 2px) - 1px * 2);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Examinar";
    background-color: #e9ecef;
    border-left: 1px solid #ced4da;
    border-radius: 0 .25rem .25rem 0;
}
.img-thumbnail
{
    width: 100%;
}

/**/
.chat-message{
    background:#fff;
    margin-bottom:1rem;
    padding:1rem 0.5rem;
    border-radius:0.3rem;
}

/**/
.bootstrap-tagsinput {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    min-height: calc(2.5rem + 2px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    cursor: text;
}

.bootstrap-tagsinput:focus-within {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.bootstrap-tagsinput .tag {
    margin: 0.125rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.bootstrap-tagsinput .tag span {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.bootstrap-tagsinput .tag span:hover {
    background: rgba(255, 255, 255, 0.5);
}

.bootstrap-tagsinput textarea {
    border: none;
    outline: none;
    background: transparent;
    padding: 0.25rem;
    flex: 1;
    height:30px;
    min-width: 80px;
    font-size: 0.875rem;
    resize:none;
    overflow:hidden;
}
input[type="checkbox"],label{
    cursor:pointer;
}
input[type="checkbox"]:checked + label[for="forcheck"]{
    visibility:hidden;
}
input[type="checkbox"]:checked + label[for="forcheck"]:before{
    content:"Mostrar";
    visibility:visible;
}
/**/
.section-link{
    margin-left:0.5rem;
    text-decoration:none;
    cursor:pointer;
    color: var(--color-text-secondary);
    background:#fff;
    padding:0rem 0.5rem;
    font-size:0.8rem;
    border-radius:0.3rem;
}
/**/
.check-public{
    margin:auto;
    margin-bottom:0.5rem;
    position:relative;
}
.check-public label{
    border:1px solid #00b894;
    color: #00b894;
    font-weight:400;
    box-shadow: 0 0 20px rgba(0,184,148,.3);
    cursor:pointer; 
    border-radius:0.3rem;
    padding:0.1rem 0.5rem;
    user-select:none;
    font-size:0.8rem;
}
.check-public:has(input:checked) label{
    padding-left:1.2rem;
    background: #00b894;
    color: #fff;
}
.check-public input { display: none; }    
.check-public:has(input:checked) .check::after{
    content:'';
    position:absolute;
    left:0.5rem;
    top:0.5rem;
    width:4px;
    height:8px;
    border:solid #fff;
    border-width:0 2px 2px 0;
    transform:rotate(45deg);
    animation:in .25s ease;
}

@keyframes in {
    from { transform: rotate(45deg) scale(0); opacity: 0; }
    50% { transform: rotate(45deg) scale(1.3); }
    to { transform: rotate(45deg) scale(1); opacity: 1; }
}
/**/
.text-action{
    text-decoration:none;
    color: var(--color-text-secondary);
    cursor:pointer;
    transition:0.3s;
    font-size:0.8rem;
    font-weight:500;
    margin-left:0.5rem;
}
.text-action:hover{
    color:var(--color-primary);
}
.text-action.top{
    font-size:1rem;
}
/**/
.box-action{
    width:100%;
    padding:1rem;
    background-color:#ffffff;
    border-radius:0.3rem;  
}
/**/
.nav-pills-view{
    list-style:none;
    margin-bottom:2rem;
    text-align:center;
    cursor:pointer;
    border-bottom: 1px solid #dee2e6;
    padding:0rem;
}
.nav-pills-view>li{
    display:inline-block;
    transition:0.1s all;
}
.nav-pills-view>li>a.active::before{
    content:'';
    position:absolute;
    bottom:-1px;
    left:0;
    background:var(--color-secondary);
    width:100%;
    height:2px;
}
.nav-pills-view>li>a{
    position:relative;
    color:#000;
    text-decoration:none;
    padding:1rem 0.5rem 0.2rem 0.5rem;
    font-size:1rem;
    display:block;
}
.nav-pills-view>li>a:hover{
    background:transparents;
}
.nav-pills-view>li ul{
    background:#fff;
    border: 1px solid rgba(0,0,0,.15);
    position:absolute;
    list-style:none;
    padding:0rem;
}
.nav-pills-view>li ul{
    display:none;
}
.nav-pills-view>li ul>li>a{
    text-decoration:none;
    min-width:6rem;
    padding:0.5rem 1rem;
    color: #212529;
    text-align:left;
    font-size:0.9rem;
    display:block;
}
.nav-pills-view>li:hover ul{
    display:block;
}
.nav-pills-view>li ul>li{
    position:relative;
}
/**/
.admin-img{
    width:350px;
    height:300px;
}
.login-logo{
    margin-top:4rem;
    text-align:center;
}
.login-logo>img{
    width:150px;
    height:40px;
}

@media screen and (min-width:360px){
}
@media screen and (min-width:576px){
    .btns a span{
        font-size:1rem;
    }
}
@media screen and (min-width:768px){
    .admin-img{
        width:600px;
        height:500px;
    }
}
@media screen and (min-width:992px){
}
@media screen and (min-width:1200px){
}