﻿
.chips, .recommendation {
    background-color: #252631;
    border-radius: 0;
    margin: 0;
}

.custom-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    background-color: black;
    color: #f9f9f9;
    padding: 8px 125px 8px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    font-size: 14px;
    text-align: left;
    position: relative;
    margin: 0px 20px 20px 20px;
}

    .dropdown-toggle::after {
        content: "▼";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
        border: none;
    }

    .dropdown-toggle:hover {
        background-color: #696969;
    }

.dropdown-menu {
    top: calc(100% - 6px);
    display: none;
    position: absolute;
    width: 79%;
    background-color: rgba(37, 38, 49, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    font-size: 15px;
    padding: 4px 10px;
    left: 44px;
}

    .dropdown-menu a {
        display: block;
        padding: 8px 0px 8px 0px;
        margin-top: 6px;
        margin-bottom: 6px;
        text-decoration: none;
        color: #f9f9f9;
        text-align: left;
        box-sizing: border-box;
    }


        .dropdown-menu a.selected, .dropdown-menu a:hover {
            background-color: #5C70EA;
            color: #f9f9f9;
            border-radius: 10px;
        }

    .dropdown-toggle:focus + .dropdown-menu,
    .dropdown-toggle:active + .dropdown-menu,
    .dropdown-menu:hover {
        display: block;
    }

.rounded-button {
    padding: 8px 24px;
    background-color: black;
    color: #5C70EA;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    margin: 0px 20px 20px 20px;
}

    .rounded-button:hover {
        background-color: #5C70EA;
        color: #f9f9f9;
    }

.highlighted-button {
    background-color: #5C70EA;
    color: #f9f9f9;
}

.rounded-button:not(.highlighted-button):hover {
    background-color: #5C70EA;
    color: #f9f9f9;
}

/*** 
=====================================================
	Playlist style
=====================================================
***/
.playlist-container {
    width: 100%;
    height: 100%;
    background-color: #16161D;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    margin: 0;
    overflow: hidden;
}

.header-container {
    display: flex;
    justify-content: space-between;
}

.playlist-fieldset {
    border-radius: 10px;
    border: 1px solid #707070;
    padding: 20px;
    margin: 20px 0px;
}

.select-videos {
    align-items: center;
    padding: 20px;
}

.text-blue {
    color: #5771F2 !important;
}

.btn-black-blue {
    background-color: #000000 !important;
    color: #5771F2 !important;
}

.btn-distant {
    margin: 10px;
}

.search-option {
    border-radius: 10px !important;
    background-color: #000000 !important;
    border: none !important;
    color: #5771F2 !important;
    width: 100% !important;
    min-height: 37.5px !important;
}

#recommendedPlaylists {
    background-color: #16161D;
    border-radius: 20px;
    padding: 20px 0px;
    margin: 20px 0px;
}

.recommended-playlist-card {
    border-radius: 20px;
}

.recommended-playlist-content {
}

.recommended-playlist-img {
    max-height: 260px;
}

.recommended-playlist-overlay {
    left: 50% !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
}

.playlist-title {
    padding: 10px 0px;
}

.playlist-content {
    display: flex;
    padding: 20px 0px;
    justify-content: space-between;
    font-size: 20px;
}

.playlist-item-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.playlist-view-header {
    margin-bottom: 40px;
}

.playlist-item-card {
    margin-bottom: 30px;
}

.playlist-item-img {
    max-height: 200px;
}

.playlist-item-content {
    max-height: 830px;
    margin-left: 30px;
    scrollbar-width: none;
    overflow-y: scroll;
    --ms-overflow-style: none;
}

    .playlist-item-content::-webkit-scrollbar {
        display: none;
    }

.playlist-item-card-body {
    padding: 5px 10px !important;
}

.resource-info-block {
    display: flex;
    align-items: center;
    height: 100%;
}

    .resource-info-block span {
        margin-left: 10px;
        font-size: 18px;
    }

.btn-video-groups {
    margin: 10px 0px;
}