@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.ttf');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}
.bg{
  background-image: url(images/fondo-tec-neutro.webp);
  height: 100%;
  background-repeat: no-repeat;
  overflow-y: hidden;
}
p {
    margin-top: 0;
    margin-bottom: 0.3rem;
}
.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: top;
  flex-wrap: wrap;
  gap: 50px;
  padding: 40px 70px 0px 70px;
}

.container .custom-card,
.container .custom-card-disabled {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 270px;
  max-width: 100%;
  height: 180px;
  background: #FFF;
  border-radius: 8px;
  transition: 0.5s;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.container .custom-card:hover,
.container .custom-card-disabled:hover {
  height: 216px;
}

.container .custom-card .img-box,
.container .custom-card-disabled .img-box{
  position: absolute;
  top: 10px;
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 100px;
  overflow: hidden;
  transition: 0.5s;
}

.container .custom-card:hover .img-box,
.container .custom-card-disabled:hover .img-box{
  top: -40px;
  scale: 0.65;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.container .custom-card .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  width: 100%;
  object-fit: cover;
}
.container .custom-card-disabled .img-box img {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  width: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.container .custom-card .custom-content,
.container .custom-card-disabled .custom-content {
  position: absolute;
  top: 100px;
  width: 100%;
  height: 34px;
  text-align: center;
  overflow: hidden;
  transition: 0.3s;
}

.container .custom-card:hover .custom-content,
.container .custom-card-disabled:hover .custom-content {
  top: 80px;
  height: 230px;
}

.container .custom-card .custom-content h2 {
  font-size: 1.1rem;
  color: #303030;
  text-align: center;
  font-family: var(--sds-typography-body-font-family);
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
}

.container .custom-card-disabled .custom-content h2 {
  font-size: 1.1rem;
  color: #999999;
  text-align: center;
  font-family: var(--sds-typography-body-font-family);
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 24px */
}

.container .custom-card .custom-content p,
.container .custom-card-disabled .custom-content p {
  color: #333;
  top: 5px;
  font-size: .8rem;
  padding: 0 30px;
}

.container .custom-card .custom-content a {
  position: relative;
  display: inline-block;
  padding: 7px 0px;
  width: 100%;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  background: #07425A;
  color: #fff;
  font-size: .8rem;
}

.container .custom-card-disabled .custom-content a {
  position: relative;
  display: inline-block;
  padding: 7px 0px;
  width: 100%;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  background: #A9CF37;
  color: #232323;
  font-size: .8rem;
}

.container .custom-card .custom-content a:hover,
.container .custom-card-disabled .custom-content a:hover {
  opacity: 0.8;
}

@media (max-width: 480px) {
  .container .custom-card {
      width: 230px;
      border-radius: 15px;
  }

  .container .custom-card .img-box {
      width: 185px;
      border-radius: 10px;
  }

  .container .custom-card .custom-content p {
      font-size: 0.8rem;
  }

  .container .custom-card .custom-content a {
      font-size: 0.9rem;
  }
}

.bienvenida{
 text-align: center;
}
.bienvenida h2{
  text-align: center;
  font-size: 1.2rem;
 }
.notificaciones{
  margin-right: 25px;  
  position:relative;
  display:inline-block;  
}

@keyframes animation-layer {
  0% { transform: rotate(0deg); }
  8.0% { transform: rotate(0deg); }
  12.0% { transform: rotate(42deg); }
  16.0% { transform: rotate(-35deg); }
  20.0% { transform: rotate(0deg); }
  23.0% { transform: rotate(28deg); }
  26.0% { transform: rotate(-20deg); }
  29.0% { transform: rotate(0deg); }
  31.0% { transform: rotate(16deg); }
  33.0% { transform: rotate(-12deg); }
  35.0% { transform: rotate(0deg); }	
  37.0% { transform: rotate(-6deg); }
  39.0% { transform: rotate(0deg); }
  40.0% { transform: rotate(6deg); }
  44.0% { transform: rotate(-3deg); }
  49.0% { transform: rotate(2deg);}
  55.0% { transform: rotate(0deg); }
  62.0% { transform: rotate(1deg); }
  70.0% { transform: rotate(0deg); }  
}

.notificaciones:hover{
  z-index:7;
  animation-name: animation-layer;
  animation-duration: 5000ms; 
}

.form-control-dark {
  border-color: var(--bs-gray);
}
.form-control-dark:focus {
  border-color: #fff;
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
}

.text-small {
  font-size: 85%;
}

.dropdown-toggle {
  outline: 0;
}
.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* Gestión */

 .fondo-gris{
  background-color: #eeeeee !important;
  color: #1E1E1E;
 }
.bg-inactivo{
  background-color: #eeeeee !important;
  letter-spacing: 0.1em;
  color: #1E1E1E;
 }
 
 .fondo-azul{
  background-color: #07425A;
  color: #ffffff;
 }
 .btn.fondo-azul:hover{
  background-color: #105e7d;
  color: #d6d6d6;
 }
 .bg-activo, .bg-normal{
  background-color: #93b91e;
  letter-spacing: 0.1em;
 }
 .bg-alta{
  background-color: #E4D90A;
  letter-spacing: 0.1em;
  color: #0b0b0b;
 }
 .bg-urgente{
  background-color: #CC3123;
  letter-spacing: 0.1em;
 }

 h1{
  color: #07425A;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--Body-Large-Line-Height, 24px); /* 120% */
  letter-spacing: var(--Body-Large-Tracking, 0.5px);
 }
 h2{
  color: #8f8f8f;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--Body-Large-Line-Height, 14px); 
 }
 .accordion-button:not(.collapsed) {
  color: #1E1E1E;
  background-color: #e6ede1;
}
.btn{
  font-size: .85rem;
}
.p-abrir-modal{
  float: inline-end;
}
.progress-bar {
  background-color:  #93b91e;
}
.editar-titulo-dupla{
  float: inline-end;
}
.borrar-card-dupla{
  float: inline-end;
  margin: 2px;
}

/* Drag and drop */

#modules {
  padding: 20px;
  background: #fff;
  border: 1px solid #d5d5d5;
  margin-bottom: 20px;
  z-index: 1;
  border-radius: 10px;
}

#dropzone {
  padding: 2px;
  background: #ffff;
  min-height: 50px;
  margin-bottom: 2px;
  z-index: 0;
}

.active {
  outline: 1px solid rgb(73, 107, 241);
}

.hover {
  outline: 1px solid rgb(67, 164, 50);
}

.drop-item {
  cursor: pointer;
  margin-bottom: 10px;
  background-color: rgb(255, 255, 255);
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid rgb(204, 204, 204);
  position: relative;
}

.drop-item .remove {
  position: absolute;
  top: 4px;
  right: 4px;
}
.remove{
  background-image: url(icons/borrar.svg);
  background-repeat: no-repeat;
  height: 16px;
  margin-top: 4px;
}
.input-group-text, .form-select{
  font-size: 0.85rem;
}
.linea-vertical{
  height: 100px;
  width: 1px;
  margin-left: 30px;
  background-color: #cecece;

}
.form-signin {
  max-width: 330px;
  padding: 15px;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.encabezado-fijo{
  position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
    font-size: 1rem;
    text-align: left;
    border-radius: 0;
    overflow-anchor: none;
}

.nav-tabs .nav-link {
  color: #07425A;
}

.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #07425A;
  border-color: #07425A;
}
.page-item a.active{
  background-color: #07425A;
  border-color: #07425A;
}
.page-item a{
  color: #07425A;
}
.DocSearch-Button-Placeholder {
    font-size: 1rem;
    padding: 0 12px 0 6px;
}
.DocSearch-Button-Container {
    align-items: center;
    display: flex
;
}
.DocSearch-Button {
    --docsearch-searchbox-background: rgba(0, 0, 0, 0.1);
    --docsearch-searchbox-focus-background: rgba(0, 0, 0, 0.25);
    --docsearch-searchbox-shadow: 0 0 0 0.25rem rgba(255, 228, 132, 0.4);
    width: 100%;
    height: 38px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: .375rem;
}
.DocSearch-Button {
    align-items: center;
    background: var(--docsearch-searchbox-background);
    border: 0;
    border-radius: 40px;
    color: var(--docsearch-muted-color);
    cursor: pointer;
    display: flex;
    font-weight: 500;
    height: 36px;
    justify-content: space-between;
    margin: 0 0 0 16px;
    padding: 0 8px;
    user-select: none;
}