/* body {
    font-size:0.9em;
  } */

  


  .blue-background-class{
    border: orange dashed 3px !important;
  }

  .ta-editor {
    min-height: 300px;
    height: auto;
    overflow: auto;
    font-family: inherit;
    font-size: 100%;
  }



  .form-select {

    padding-left: 10px;
    padding-right: 25px;
    padding-top:9px;
    padding-bottom:9px;
    background-position: right 5px center;
    font-size: 10.5px;	
 }
 

 .radio-btn.active {
    border:#6c757d solid 1px;
    font-weight: bold;
 }

 .radio-btn:hover:not(.active) {
    border: #6c757d dashed 0.5px;
}



.border-muted-2{
    border:1px solid #ccc !important;
  }
  
  .border-muted{
    border:1px solid #6c757d !important;
  }

.tooltip {

  z-index: 1030;
}



.card-hover {
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
    border: 1px solid transparent; /* Borde inicial transparente */

}

.card-hover:hover {
    transform: translateY(-3px); /* Elevar un poco */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Agregar sombra */
    border: 0.25px solid var(--bs-primary); /* Borde con color primary */
    z-index: 1030;
}



  mark, .mark{
    padding-right:0px;
  }

@media (max-width: 991px) {
    .topnav .navbar-brand {
        width: 10rem;
    }
}
@media (min-width: 992px) {

.topnav .navbar-brand {
    width: 12rem;
}
}
.oculto {
    opacity: 0;
}

/* Definir la animación de agitación */
@keyframes shake {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(3px, 3px) rotate(3deg);
    }

    50% {
        transform: translate(0, 0) rotate(0eg);
    }

    75% {
        transform: translate(-3px, 3px) rotate(-3deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Aplicar la animación al hacer clic */
.shake {
    animation: shake 0.1s infinite;
}

.fw-bold {
    font-weight: 700 !important;
}

.gallery-dropzone {
    background-color: #f2f6fc;
    border: 2px solid #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 5px;
    min-height: 350px;
    height: auto;

}

.goback-circle-button {
    height: 35px;
    width: 35px;
    color: var(--bs-dark);
    cursor: pointer;
    border-radius: 50%;
}

.goback-circle-button:hover {
    color: #e7e7e7;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--bs-dark);
}

#gallery-clickeable-area {
    border: 1px solid lightgray;
    border-radius: 5px;

}

#gallery-clickeable-area:hover {
    border: 1px solid var(--bs-primary);


}

.gallery-dropzone.draggon {
    border: 2px dashed gray;
    opacity: 90%;

}

.gallery-button-view {
    background-color: var(--bs-primary);
    color: white;

}

.gallery-button-delete {
    background-color: var(--bs-danger);
    color: white;

}

.gallery-button:hover {
    background-color: black;
    color: white;
}

.gallery-item:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.gallery-item:hover {
    border: solid 1px orange;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.gallery-first-item {
    border: 2px solid #198754;
}

.gallery-first-item-text {
    background-color: #198754;
}




.image-container {
    width: 300px;
    height: 300px;
}

.image-container img {
    max-width: 100%;
}

.file-name {
    font-family: Arial;
}



#content {
   
    padding-top	:50px;
    flex-grow: 1;
    min-height: calc(100vh - 2rem);
  
}

#layoutSidenav {
    display: flex;
}

#layoutSidenav #layoutSidenav_nav {
    flex-basis: 12rem;
    flex-shrink: 0;
    transition: transform 0.15s ease-in-out;
    z-index: 1038;
    transform: translateX(-12rem);
}

#layoutSidenav #layoutSidenav_content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    flex-grow: 1;
    min-height: calc(100vh - 3.625rem);
    margin-left: -12rem;
}

.sidenav-toggled #layoutSidenav #layoutSidenav_nav {
    transform: translateX(0);
}

.sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1037;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.sidenav .sidenav-menu .nav .nav-link {
    display: flex;
    align-items: center;
    line-height: normal;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.sidenav .sidenav-menu .nav .nav-link .nav-link-icon {
    font-size: 1.2rem;
    padding-right: 0.3rem;
    display: inline-flex;
}

@media (min-width: 992px) {
    #layoutSidenav #layoutSidenav_nav {
        transform: translateX(0);
    }

    #layoutSidenav #layoutSidenav_content {
        margin-left: 0;
        transition: margin 0.15s ease-in-out;
    }

    .sidenav-toggled #layoutSidenav #layoutSidenav_nav {
        transform: translateX(-12rem);
    }

    .sidenav-toggled #layoutSidenav #layoutSidenav_content {
        margin-left: -12rem;
    }

    .sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
        display: none;
    }
}

.nav-fixed .topnav {
    z-index: 1039;
}

.nav-fixed #layoutSidenav #layoutSidenav_nav {
    width: 12rem;
    height: 100vh;
    z-index: 1038;
}

.nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav {
    padding-top: 3.625rem;
}

.nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav .sidenav-menu {
    overflow-y: overlay;
}

.nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav .sidenav-menu::-webkit-scrollbar {
    width: 0.75rem;
}

.nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav .sidenav-menu::-webkit-scrollbar-thumb {
    border-radius: 10rem;
    border-width: 0.2rem;
    border-style: solid;
    background-clip: padding-box;
    background-color: rgba(33, 40, 50, 0.2);
    border-color: transparent;
}

.nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav .sidenav-menu::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

.nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav .sidenav-menu::-webkit-scrollbar-corner {
    background-color: transparent;
}

.nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav .sidenav-menu::-webkit-scrollbar-track {
    background: inherit;
}

@media (pointer: fine) and (hover: hover) {
    .nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav .sidenav-menu {
        overflow-y: hidden;
    }

    .nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav .sidenav-menu:hover {
        overflow-y: overlay;
    }
}

@media (pointer: coarse) and (hover: none) {
    .nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav .sidenav-menu {
        overflow-y: overlay;
    }
}

@-moz-document url-prefix() {
    .nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav .sidenav-menu {
        overflow-y: auto;
    }
}

.nav-fixed #layoutSidenav #layoutSidenav_nav .sidenav.sidenav-dark .sidenav-menu::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(0, 0, 0, 0);
}

.nav-fixed #layoutSidenav #layoutSidenav_content {
    padding-left: 12rem;
    top: 3.625rem;
}

.layout-rtl #layoutSidenav #layoutSidenav_nav {
    transform: translateX(12rem);
}

.layout-rtl #layoutSidenav #layoutSidenav_content {
    margin-left: 0;
    margin-right: -12rem;
}

.layout-rtl.sidenav-toggled #layoutSidenav #layoutSidenav_nav {
    transform: translateX(0);
}

@media (min-width: 992px) {
    .layout-rtl #layoutSidenav #layoutSidenav_nav {
        transform: translateX(0);
    }

    .layout-rtl #layoutSidenav #layoutSidenav_content {
        margin-right: 0;
        transition: margin 0.15s ease-in-out;
    }

    .layout-rtl.sidenav-toggled #layoutSidenav #layoutSidenav_nav {
        transform: translateX(12rem);
    }

    .layout-rtl.sidenav-toggled #layoutSidenav #layoutSidenav_content {
        margin-right: -12rem;
    }
}

.layout-rtl.nav-fixed #layoutSidenav #layoutSidenav_nav {
    left: auto;
}

.layout-rtl.nav-fixed #layoutSidenav #layoutSidenav_content {
    padding-left: 0;
    padding-right: 12rem;
}



.page-header .page-header-content .page-header-title {

    font-size: 16pt;
    font-weight: bold;

}






.btn-activado {
    margin-top: 1px;
    border-bottom-width: 3px
}

/* .btn:not(.disabled):active{margin-top:2px;border-bottom-width:2px} */

.modal .btn-close-2,
.toast .btn-close-2 {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>");
}

.modal-header .btn-close-2 {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem -.5rem;
}

.modal-header .btn-editar-recurso {
    padding: .5rem .5rem;
    margin: -.5rem 3rem -.5rem auto;

}

.tab-pane {
    background-color: white;
}

@media (min-width: 576px) {
    .modal-xxl {
        max-width: none;
        width: 95%;
        margin: 1.75rem auto;
    }

    /* .modal-lg, */
    .modal-xl {
        max-width: 95%;
        margin: 1.75rem auto;
    }
}

@media (min-width: 992px) {

    /* .modal-lg, */
    .modal-xl {
        max-width: 95%;
        margin: 1.75rem auto;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 95%;
        margin: 1.75rem auto;
    }
}

.modal-fullscreen {
    width: 100vw;
    padding-left: 30px;
    padding-right: 30px;
    max-width: none;
    height: 100%;
    margin: 0;
}

.cell-phone {
    /* position:absolute; */
    top: 0px;
    right: 100px;
    z-index: 1;
}

.cell-phone .scan {
    animation: scanvisibility 3s linear infinite;
}

.cell-phone .scan .redline {
    animation: scanning 3s linear infinite;
}

@keyframes scanning {
    0% {
        transform: translateY(0px)
    }

    25% {
        transform: translateY(94px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(94px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes scanvisibility {
    0% {
        visibility: visible;
    }

    51% {
        visibility: visible;
    }

    100% {
        visibility: visible;
    }
}

.em-05 {
    font-size: 0.5em;
}

.em-06 {
    font-size: 0.6em;
}

.em-075 {
    font-size: 0.75em;
}

.em-07 {
    font-size: 0.7em;
}


.em-08 {
    font-size: 0.8em;
}

.em-085 {
    font-size: 0.85em;
}

.em-09 {
    font-size: 0.9em;
}

.em-095 {
    font-size: 0.95em;
}

.em-11 {
    font-size: 1.1em;
}

.em-115 {
    font-size: 1.15em;
}

.em-12 {
    font-size: 1.2em;
}

.em-125 {
    font-size: 1.25em;
}

.em-13 {
    font-size: 1.3em;
}

.em-135 {
    font-size: 1.35em;
}

.em-14 {
    font-size: 1.4em;
}

.em-145 {
    font-size: 1.45em;
}

.em-15 {
    font-size: 1.5em;
}

.em-16 {
    font-size: 1.6em;
}

.em-17 {
    font-size: 1.7em;
}

.em-18 {
    font-size: 1.8em;
}

.em-19 {
    font-size: 1.9em;
}

.em-20 {
    font-size: 2.0em;
}

.em-21 {
    font-size: 2.1em;
}

.text-supermuted {
    color: #b3b3b3;
}

.text-muted-2 {
    color: #71787e !important
}

.text-green {
    color: green;
}

.text-darkgreen {
    color: darkgreen;
}

.text-orange {
    color: #CD7300;
}

.text-marine {
    color: #2FAF84;
}

.text-violet {
    color: #8B008B;
}

.text-purple {
    color: #A569BD
}

.text-golden {
    color: goldenrod;
}

.text-money {
    color: #6ba449;
}

.pointer {
    cursor: pointer;
}

.pointer:hover {
    text-decoration: underline;
}

.hover:hover {
    cursor: pointer;
    color: #337ab7;
}

.line-height-sm {
    line-height: 1.2em;
}

.line-height-md {
    line-height: 1.4em;
}

.content-header {
    height: 3.25rem;
}

#page-container.page-header-fixed #main-container {
    padding-top: 3.25rem;
}

#superloading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9998;
}

.bg-disabled {
    background-color: #f0f0f0bf;
}

.text-disabled {
    color: #c9c9c9bf;
}

.img-disabled {
    opacity: 50%;
    ;
}

.form-control.form-control-alt:focus {
    border-color: orange;
    border-width:2px;
}


.md-datepicker-input-container {
    position: relative;
    border-bottom-width: 0px;
    border-bottom-style: none;
    display: inline-block;
    width: auto;
    z-index: 9999999;
}

.form-control-alt {
    border-color: #c7cad0;
    background-color: #edf0f7;
    transition: none;
    box-shadow:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.ui-datepicker {
    /*  margin-top: 100px; */
    z-index: 999999;

}

#ui-datepicker-div {
    z-index: 999999;
}


.border-left-success {
    border-left: 4px solid #198754;
}

.border-left-secondary {
    border-left: 4px solid #6c757d;
}

.border-left-warning {
    border-left: 4px solid #ffc107;
}

.border-left-light-orange {
    border-left: 4px solid orange;
}

.border-left-orange {
    border-left: 4px solid #A569BD;
}

.card-border-success {
    border-top: 2px solid #198754;
    border-right: 2px solid #198754;
    border-bottom: 2px solid #198754;
}

.card-border-warning {
    border-top: 3px solid #ffc107;
    border-right: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

/* Chrome, Safari, Edge, Opera */
.nospin::-webkit-outer-spin-button,
.nospin::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.nospin {
    -moz-appearance: textfield;
}

hr {
    margin-top: 3px;
    margin-bottom: 3px;
    padding-bottom: 0px;
    padding-top: 0px;
}

hr.light {
    color: lightgray;
}


.table .th,
.table td,
.table th {
    vertical-align: middle;
    /* background-color: #fff !important */
}


table .td[class*=col-],
table .th[class*=col-] {
    position: static;
    display: table-cell;
    float: none
}



.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1100;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-open {
    overflow: hidden;
    padding-right: 0;
}


/* Small devices (landscape phones, 576px and up)*/
@media (max-width: 576px) {
    .w-sm-100 {
        width: 100% !important;
    }

    .w-sm-75 {
        width: 75% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-25 {
        width: 25% !important;
    }

    .h-sm-100 {
        height: 100% !important;
    }

    .h-sm-75 {
        height: 75% !important;
    }

    .h-sm-50 {
        height: 50% !important;
    }

    .h-sm-25 {
        height: 25% !important;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (max-width: 768px) {
    .w-md-100 {
        width: 100% !important;
    }

    .w-md-75 {
        width: 75% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-25 {
        width: 25% !important;
    }

    .h-md-100 {
        height: 100% !important;
    }

    .h-md-75 {
        height: 75% !important;
    }

    .h-md-50 {
        height: 50% !important;
    }

    .h-md-25 {
        height: 25% !important;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (max-width: 992px) {
    .w-lg-100 {
        width: 100% !important;
    }

    .w-lg-75 {
        width: 75% !important;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-25 {
        width: 25% !important;
    }

    .h-lg-100 {
        height: 100% !important;
    }

    .h-lg-75 {
        height: 75% !important;
    }

    .h-lg-50 {
        height: 50% !important;
    }

    .h-lg-25 {
        height: 25% !important;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .w-xl-100 {
        width: 100% !important;
    }

    .w-xl-75 {
        width: 75% !important;
    }

    .w-xl-50 {
        width: 50% !important;
    }

    .w-xl-25 {
        width: 25% !important;
    }

    .h-xl-100 {
        height: 100% !important;
    }

    .h-xl-75 {
        height: 75% !important;
    }

    .h-xl-50 {
        height: 50% !important;
    }

    .h-xl-25 {
        height: 25% !important;
    }
}