/* ALL */
* {
    font-family: Raleway, var(--bs-body-font-family);
}

/* HEADER */
header {
    background-color: #252525;
    border-bottom: 0.825rem solid #6fbe44;
}

header h1 {
    font-weight: 900;
}

/* MAIN */
    /* Video */
    main .video-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
    }
    /* Vimeo player within the container */
    main .video-container #vimeo-player,
    main .video-container #vimeo-player iframe, 
    main .video-container #vimeo-player object, 
    main .video-container #vimeo-player embed { 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%; 
        height: 100%; 
    }
    /* Time Links */
    main .time-links-wrapper {
        background-color: #252525;
        height: 100%;
        padding: 1rem;
        padding-right: 0.5rem;
    }
    main .time-links-wrapper #time-links {
        max-height: 414px;
        overflow-y: auto;
        padding-right: 0.5rem;
        font-family: var(--bs-body-font-family);
    }
    main .time-links-wrapper .list-group {
        border-radius: 0;
    }
    main .time-links-wrapper .list-group .list-group-item {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #6fbe4430;
        color: white;
        display: flex;
    }
    main .time-links-wrapper .list-group .list-group-item.active,
    main .time-links-wrapper .list-group .list-group-item:hover {
        background-color: #6fbe44;
        color: #252525;
    }
    main .time-links-wrapper .list-group .list-group-item.active > span.identifier,
    main .time-links-wrapper .list-group .list-group-item:hover > span.identifier {
        color: #000;
    }
    main .time-links-wrapper .list-group .list-group-item > span.identifier {
        color: #6fbe44;
        margin-right: 1rem;
        display: inline-block;
        font-weight: 700;
    }
    main .time-links-wrapper .list-group .list-group-item > span.identifier.ms-1{
        margin-left: 1rem!important;
    }
    main .time-links-wrapper .list-group .list-group-item > span.identifier.ms-2{
        margin-left: 2rem!important;
    }
    main .time-links-wrapper .list-group .list-group-item > span.identifier.ms-3{
        margin-left: 3rem!important;
    }
    main .time-links-wrapper .list-group .list-group-item > span.identifier.ms-4{
        margin-left: 4rem!important;
    }
    /* Scrollbar */
    main .time-links-wrapper #time-links {
        scrollbar-width: thin;
        scrollbar-color: #6fbe44 transparent;
    }
    main .time-links-wrapper #time-links::-webkit-scrollbar {
        width: 12px;
    }
    main .time-links-wrapper #time-links::-webkit-scrollbar-track {
        background: transparent;
    }
    
    main .time-links-wrapper #time-links::-webkit-scrollbar-thumb {
        background-color: transparent;
        border: none;
    }

/* FOOTER */
footer .rightReserve {
    font-size: 0.75rem;
    line-height: 2rem;
}