aside.sidebar {
    width: 25%;
    min-width: 320px;
    flex-shrink: 0;
    padding-left: 10px;
    padding-right: 10px;
}
.tabs {
    background: #1c1c1c;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 3px;
}
.tabs .tab {
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: #777;
    transition: all .2s;
}
.tabs .tab:hover {
    background: #9d9d9d;
    color: #222;
}
.tabs .tab.active {
    background: #5a2e98;
    color: #eee;
}
.tabs .tab+.tab {
    margin-left: 2px;
}


section#top-anime .side.items .item {
    border-radius: 5px;
    margin-bottom: 10px;
}
section#top-anime .side.items .item.rank1 .inner {
    border-right: 2px solid #5a2e98;
}
section#top-anime .side.items .item.rank2 .inner {
    border-right: 2px solid #be5167;
}
section#top-anime .side.items .item.rank3 .inner {
    border-right: 2px solid #f7bf63;
}
section#top-anime .side.items .item .rank {
    width: 50px;
    height: 55px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    align-self: center;
    padding: 0 10px;
    flex-shrink: 0;
}
section#top-anime .side.items .item.rank1 .inner .rank {
    background-image: url("../../js/images/top-1.png");
}
section#top-anime .side.items .item.rank2 .inner .rank {
    background-image: url("../../js/images/top-2.png");
}
section#top-anime .side.items .item.rank3 .inner .rank {
    background-image: url("../../js/images/top-3.png");
}
section#top-anime .side.items .item.rank4 .inner .rank {
    background-image: url("../../js/images/top-4.png");
}
section#top-anime .side.items .item.rank5 .inner .rank {
    background-image: url("../../js/images/top-5.png");
}
section#top-anime .side.items .item.rank6 .inner .rank {
    background-image: url("../../js/images/top-6.png");
}
section#top-anime .side.items .item.rank7 .inner .rank {
    background-image: url("../../js/images/top-7.png");
}
section#top-anime .side.items .item.rank8 .inner .rank {
    background-image: url("../../js/images/top-8.png");
}
section#top-anime .side.items .item.rank9 .inner .rank {
    background-image: url("../../js/images/top-9.png");
}
.side.items .item .inner {
    background: #1c1c1c;
    border-radius: 5px;
    overflow: hidden;
    transition: all .2s;
    display: flex;
    align-items: center;
}
.scaff.items .item .inner {
    display: flex;
    position: relative;
    width: 100%;
}
.side.items .item .poster {
    width: 60px;
}
.scaff.items .item .poster {
    flex-shrink: 0;
    width: 60px;
    position: relative;
}
.scaff.items .item .poster span {
    position: relative;
    width: 100%;
    padding-bottom: 130%;
    display: block;
}
.scaff.items .item .poster span img {
    position: absolute;
    width: 100%;
    height: 100%;
}
.side.items .item .info {
    padding: 0 15px;
}
section#top-anime .side.items .item .info .name {
    color: #aaa;
}
.scaff.items .item .info .meta {
    color: #515151;
    font-size: .7rem;
}
.ep-wrap {
    display: inline-flex;
}
section#top-anime .side.items .item .inner:hover {
    background: #242424;
}
section#top-anime .side.items .item .info .name:hover {
    color: #a885da;
}
@media screen and (max-width: 1199px) {
    aside.main, aside.sidebar {
        width: 100%;
        min-width: unset;
    }
}