/*<css-9513>*/.custom-select {
	position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select::after {
	content: '';
    position: absolute;
    top: 26%;
    right: 6%;
    width: 18px; /* Ajusta el tamaño de la imagen */
    height: 18px; /* Ajusta el tamaño de la imagen */
    background: url('https://file.urp.edu.pe/file-urp-20240731-112741-181-48966aa65fd043f9.png') no-repeat center center; /* Ruta a tu imagen */
    background-size: contain; /* Ajusta el tamaño de la imagen dentro del contenedor */
    pointer-events: none;
	rotate: 90deg;
} 
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2e7d32; /* verde */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* color del ícono */
    font-size: 22px;
  }

.fila-boton2{
	display:none !important;
}

.icono-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #cccccc;
  cursor: pointer;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  transition: transform 0.2s ease;
  z-index: 2;
}

.icono-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 991px) {
	.fila-boton1{
		display:none !important;
	}
	
	.fila-boton2{
		display:block !important;
	}
	
}
/*</css-9513>*/