
.accordion {
    width: 80%;
    margin: 20px auto;
}

.accordion-header, .accordion-item-header {    
    border-color:#ffffff;
    outline: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.accordion-content, .accordion-item-content {
    display: none;
    overflow: hidden;
    padding: 0 10px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    margin-top: 5px;
}

.accordion-item {
    margin: 10px 20px;
}

.accordion-item-content p {
    margin: 10px 0;
}

/* Pop-up styles */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.popup-content {
    display: block;
    max-width: 80%;
    max-height: 80%;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

video::-internal-media-controls-download-button {
    display: none;
}

video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px); /* Ajuste el ancho para compensar la eliminación del botón de descarga */
}

.custom-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.custom-video {
    width: 100%;
    height: auto;
}

.custom-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.custom-controls button,
.custom-controls input[type="range"] {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
}

.custom-controls button:hover,
.custom-controls input[type="range"]:hover {
    background: rgba(0, 0, 0, 0.7);
}

.custom-controls input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    margin: 0 10px;
}

.custom-controls input[type="range"]::-webkit-slider-runnable-track {
    background: #ddd;
    height: 5px;
}

.custom-controls input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.download-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
}

.download-button:hover {
    background-color: #0056b3;
}

.download-button i {
    margin-right: 5px;
}

