.mobile-only {
    display: none;
}

@media only screen and (max-width: 768px) {
    .btn-aps {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .containerHistory .hisC .right .hisNome {
        text-align: left;
    }
}

.btn-favoritar {
    width: 100%;
    padding: 8px 13px;
    margin: .85rem 0;
    border-radius: 5px;
    background-color: #111317;
    border: 1px solid #0b0c10;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: -.2px;
    text-transform: uppercase;
    overflow: hidden;
    cursor: pointer;
}

.btn-favoritar i {
    padding: 10px;
    margin: -8px 0;
    margin-left: -13px;
    margin-right: 2px;
    color: #fff;
}

.btn-favoritar:hover,
.btn-favoritar.active {
    background-color: #343f8d;
    border-color: #343f8d;
}

.btn-aps {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-aps .hsr-m {
    padding: 10px;
    border-radius: 10px;
    background-color: #282626;
    color: #fff;
    cursor: pointer;
}

.btn-aps .hsr-m:hover {
    background-color: #343f8d;
}

.favFixed {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background: #101010;
    opacity: .991;
    z-index: 1000;
    overflow-y: auto;
    display: none;
    line-height: 1.3;
}

.containerFavoritos {
    position: absolute;
    top: 0;
    width: 100%;
}

.containerFavoritos .favEmpty {
    text-align: center;
    color: #ccc;
}

.containerFavoritos .favEmpty h3 {
    margin: 0;
    font-size: 30px;
}

.containerFavoritos .favEmpty span {
    display: block;
}

.containerFavoritos .favApp {
    display: flex;
    gap: 20px;
    clear: both;
    max-width: 1280px;
    margin: auto auto;
    margin-top: 2em;
}

.item-fav {
    position: relative;
    width: calc(100%/5);
}

.item-fav .remove_item {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cc3131;
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
    z-index: 99999;
}

.item-fav .remove_item svg {
    width: 17px;
    fill: #fff;
}

.item-fav .thumb {
    position: relative;
    width: 100%;
    padding-top: 160.5%;
    overflow: hidden;
}

.item-fav .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-fav .title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 15px;
    width: 100%;
    text-transform: uppercase;
}

.item-fav .sOverlay {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #0c0c0c 85%);
    transition: .2s all ease-in-out;
    border-radius: 0;
}

.item-fav .button_play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: #343f8d;
    border-radius: 50%;
    display: flex;
    z-index: 5;
    opacity: 0;
    transition: ease-in .5s;
}

.item-fav:hover .button_play {
    opacity: 1;
    transition: ease-out .5s;
}

.item-fav .button_play .play-video svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.item-fav .button_play .play-video {
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
}

.item-fav .title .title_anime {
    font-weight: 500;
    color: #ffff;
}

.containerFavoritos .cleanFav {
    padding: 15px 0;
    background: #333;
    text-align: center;
    font-weight: bolder;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .5s ease;
    color: #fff;
}

.containerFavoritos .cleanFav:hover {
    background: #343f8d;
}

.containerFavoritos .closeFav {
    background: #00000024;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    position: absolute;
    cursor: pointer;
    float: right;
    margin: 10px 10px 10px 0;
    margin-top: -43px;
    right: 23px;
    color: #fff;
}

.containerFavoritos .closeFav span {
    font-size: 30px;
    position: absolute;
    top: 48%;
    left: 53%;
    transform: translate(calc(-50% + 0.1px), calc(-50% + 0.1px));
    margin-top: -2px;
    margin-left: -1px;
    transition: all .1s ease;
}