.container-wrapper {
    display: flex;
}

.account-sidebar {
    display: flex;
    background: #ffffff;
    padding: 30px 0;
    align-items: baseline;
    justify-content: center;
    width: 300px;
    flex-shrink: 0;
    flex-grow: 0;
}

@media (max-width: 700px) {
    .container-wrapper {
        flex-direction: column;
    }

    .account-sidebar {
        width: 100%;
    }
}

.account-sidebar ul {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
}

ul .sidebar-item {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

ul .sidebar-item.active a {
    background: #ff9900;
    cursor: default;
    pointer-events: none;
}

ul .sidebar-item a {
    transition: 0.3s;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 5px 20px;
    background: #eaecef;
    color: #000000;
    border-radius: 10px;
}

ul .sidebar-item:last-child {
    margin-bottom: 0;
}

ul .sidebar-item a:hover {
    background: #ff9900;
    cursor: pointer;
}

.account-main {
    padding: 30px 20px;
    width: 100%;
}

.account-main .video-loop .row {
    width: 100%;
}

.account-main .title {
    margin-bottom: 20px;
}

.account-main h1 {
    font-size: 24px;
}

.favourites-filter {
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 20px;
}

.favourites-filter .filter {
    max-width: 250px;
    padding: 5px 20px;
    background: #eaecef;
    border-radius: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.favourites-filter .filter:not(:last-child) {
    margin-right: 10px;
}

.favourites-filter .filter:hover {
    background: #ff9900;
    cursor: pointer;
    color: #000000!important;
}

.favourites-filter .filter.active {
    background: #ff9900;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 400px) {
    .favourites-filter {
        flex-wrap: wrap;
    }

    .favourites-filter .filter {
        margin-bottom: 10px;
    }
}

.account-main #actors, .account-main #categories {
    display: none;
}
.title h1{
    line-height: 1.2;
}

.sidebar_favourite_btn{
    background: #ff9900;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.sidebar_favourite_btn .fa{
    margin-right: 5px;
}
.sidebar_favourite_btn:hover{
    filter: brightness(110%);
}

.add-favourite:hover .fa-heart-o:before,
.fav:not(.add-favourite):hover .fa-heart-o:before{
    content: "\f004";
}
.remove-favourite:hover .fa-heart:before{
    content: "\f08a";
}