/*
    SIDEBAR
*/

#sidebarForum p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

#sidebarForum a,
#sidebarForum a:focus {
    text-decoration: none;
    transition: all 0.3s;
    color:white;
}

#sidebarForum header .navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */
#sidebarForum {
    min-width: 250px;
    max-width: 250px;
    color: #fff;
    transition: all 0.3s;
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y:scroll;
    overflow-x:hidden;
}

#sidebarForum.active {
    margin-left: -250px;
}

#sidebarForum .sidebar-header  {
  background: rgb(151 129 92 / 20%);
}
#sidebarForum .sidebar-header svg{
    height: 25px;
}

#sidebarForum ul.components {
    padding: 20px 0;
}

#sidebarForum ul p {
    color: #fff;
    padding: 10px;
}

#sidebarForum ul li svg {
    width: 20px;
    margin-right: 0.25em;
    stroke: white;
    stroke-width: 2px;

}

#quitForumPanelBtn{
    font-size: 30px;
    font-weight: 500;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

#quitForumPanelBtn:hover{
    color: #97815C;
}

#goToForumPanelBtn{
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 20px;
    padding: 5px 10px;
    border: 2px solid;
    color: white;
    background-color: #95d0cb;
}

#goToForumPanelBtn:hover{
    background-color: #46a096;
}

#sidebarForum-content{
    background-color: var(--iq-podcastSlider-bg);
    min-height: 1000vh;
}

.forum-panel-action.actions-btn.subscription-{
    display: none;
}

.forum-panel-action.actions-btn.subscription-active{
    display: block;
}

.send-message-quick{
    width: 78px;
    text-align: center;
    padding: 5px 8px;
    background-color: var(--iq-primary-hover);
    border-radius: 6px;
}

/* ---------------------------------------------------
    FORUM CARDS
----------------------------------------------------- */
.forum-card{
    border:1px solid transparent;
    background-color: var(--iq-select-bg)!important;
    color: whitesmoke;
    font-size: 14px;
}

.forum-card:hover{
    border:1px solid white;
    background-color: var(--iq-select-bg)!important;
    color: whitesmoke;
    font-size: 14px;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    #sidebarForum {
        min-width: 100vw;
        max-width: 100vw;
    }
    #sidebarForum.active {
        margin-left: -100vw;
    }
}

