.topic-list-pr li {
    display: flex;
    flex-wrap: wrap; 
    align-items: flex-start;
    padding: 6px 0;
}

.topic-list-pr li .hora {    
    width: 140px;
    min-width: 100px; 
    flex-basis: 140px; 
    flex-shrink: 0; 
    font-weight: bold;
    color: #002e4a;
    padding-right: 10px; 
    box-sizing: border-box; 
}

.topic-list-pr li .descripcion {    
    flex: 1; 
    min-width: 300px; 
    max-width: 100%; 
    color: #333;
    box-sizing: border-box; 
}

.topic-list-pr li .sqr,
.topic-list-pr li .sqr2 {    
    float: none !important; 
    align-self: flex-start; 
    margin-left: auto; 
    margin-right: 0; 
    width: 80px; 
    height: 20px; 
    flex-shrink: 0; 
}

@media (max-width: 600px) { 
    .topic-list-pr li .hora,
    .topic-list-pr li .descripcion,
    .topic-list-pr li .sqr,
    .topic-list-pr li .sqr2 {
        flex-basis: 100%; 
        width: auto; 
        margin-left: 0; 
        margin-right: 0;
    }

    .topic-list-pr li .hora {
        padding-right: 0; 
        margin-bottom: 5px; 
    }

    .topic-list-pr li .descripcion {
        margin-bottom: 5px; 
    }
}


.sqr2 {
    width: 100px;
    height: 20px;
	background: linear-gradient(to right, #F88E04, #FA9004);
	text-align: left;
	padding-right: 5px;
	padding-left: 5px;
	box-sizing: border-box;
	clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
	color: white;
	font-weight: bold;


float: left !important;
margin-left: 0 !important;
margin-right: auto !important;



}
.sqr {
    width: 100px;
    height: 20px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    text-align: right;
    padding-right: 5px;
    box-sizing: border-box;
    clip-path: polygon(0 50%, 15% 0, 100% 0, 100% 100%, 15% 100%);
    color: white;
    font-weight: bold;
}

.ripple-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: ripple 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

:root {
    --rt-primary-color: #fa360a;
    --rt-secondary-color: #ffa996;
}

a.scrollup.back-top {
    bottom: 25px;
}

a.scrollup {
    text-decoration: none;
    background-color: #fa360a;
}

a.scrollup {
    overflow: hidden;
    position: fixed;
    height: 50px;
    width: 50px;
    line-height: 20px;
    border-radius: 50%;
    bottom: -105px;
    right: 20px;
    padding: 9px 0;
    text-align: center;
    z-index: 9999;
    background-color: var(--rt-primary-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    -webkit-transition: all 0.8s cubic-bezier(0, 0, 0.15, 1.88);
    transition: all 0.8s cubic-bezier(0, 0, 0.15, 1.88);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

a.scrollup i {
    display: block;
}

a.scrollup:hover {
    background-color: #ffffff;
    color: var(--rt-primary-color);
}

a.scrollup.back-top {
    bottom: 25px;
}

.filtros-tramites-card {
    align-items: flex-start;
    display: flex;
    gap: 1rem
}

.filtros-tramites-icono-img {
    height: auto;
    margin-top: 4px;
    width: 10px
}

.filtros-tramites-titulo {
    color: #231f20;
    font-family: Roboto-Bold;
    font-size: 18px;
    margin: 0 0 .2rem
}

.filtros-tramites .filtros-tramites-categoria {
    color: #ff5900;
    font-family: Roboto-Bold;
    font-size: 14px;
    margin: 0
}


/**** CSS para las Apps de los Estudiantes ***/

.apps-card {
  background: #efefef;  
  border: 2px solid #adacac; ;
  border-radius: 16px;
  overflow: hidden;
  width: 230px;
  height: 390px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;  
}

.apps-card:hover {
  transform: translateY(-5px);
}

.apps-image {
  width: 210px;
  height: 385px;
  margin-top: 10px;
  margin-left: 12px;
  background:#efefef;
  background-repeat: no-repeat;  
  background-position: center;
}
