/** @format */
.favorite-main {
    width: 916px;
}

.favorite-container {
    box-shadow: 0 4px 20px 0 #8f8c8c14;
    padding: 24px;
    border-radius: 8px;
    border-top: 1px solid #ffffff1a;
    width: 100%;
    background-color: var(--iz-shadow-white-gray);
}

.favorite-list-podcast-header {
    height: 50px;
    border-bottom: 1px solid var(--border-color);
}

.favorite-header-title {
    color: var(--iz-red-white);
    font-family: FS PF BeauSans Pro, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 45px;
    text-align: left;
}

.favorite-header-content {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.favorite-header-content-left {
    display: flex;
    gap: 25px;
}

.favorite-header-content-left img {
    cursor: pointer;
}

.favorite-header-content-right {
    display: flex;
    gap: 20px;
}


.favorite-list-podcast tbody tr {
    height: 80px;
    border-bottom: 1px solid var(--border-color);
}

.favorite-icon-play-small {
    cursor: pointer;
    height: 30px;
    width: 30px;
    background-color: var(--iz-black-white);
    -webkit-mask: url(../../../images/favorite/play-small.svg) no-repeat center;
    mask: url(../../../images/favorite/play-small.svg) no-repeat center;
}

.favorite-icon-pause-small{
    background-image: url(../../../images/favorite/pause-small.svg);
    cursor: pointer;
    height: 30px;
    width: 30px;
    background-position: center;
    background-repeat: no-repeat;
}

.favorite-content-title {
    display: flex;
}

.favorite-content-title div {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
}

.favorite-list-podcast-header th {
    font-family: FS PF BeauSans Pro, serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-align: left;
    color: #a1a1aa;
}

.favorite-list-podcast-header th:last-child {
    text-align: center;
}

.favorite-content-title div span:nth-child(1) {
    font-family: FS PF BeauSans Pro, serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: left;
    color: var(--iz-black-white);
}

.favorite-content-title div span:nth-child(2) {
    font-family: FS PF BeauSans Pro, serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    text-align: left;
    color: #a1a1aa;
}

.favorite-content-title img {
    border-radius: 8px;
}

.favorite-content-headphones span {
    font-family: FS PF BeauSans Pro, serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: left;
    color: #a1a1aa;
}

.favorite-content-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.favorite-list-podcast {
    width: 100%;
}

.favorite-icon-download {
    cursor: pointer;
    height: 24px;
    width: 24px;
    background-color: var(--iz-red-white);
    color: var(--iz-red-white);
    -webkit-mask: url(../../../images/favorite/action-download.svg) no-repeat
    center;
    mask: url(../../../images/favorite/action-download.svg) no-repeat center;
}

.favorite-icon-like {
    cursor: pointer;
    height: 24px;
    width: 24px;
    background-color: var(--iz-player-bar-icon-action-color);
    -webkit-mask: url(../../../images/favorite/action-like.svg) no-repeat center;
    mask: url(../../../images/favorite/action-like.svg) no-repeat center;
}

.favorite-icon-liked {
    cursor: pointer;
    height: 24px;
    width: 24px;
    background: url("../../../images/favorite/icon-liked.svg") no-repeat center;
}

.favorite-icon-gift {
    cursor: pointer;
    height: 24px;
    width: 24px;
    background-color: var(--iz-red-white);
    color: var(--iz-red-white);
    -webkit-mask: url(../../../images/favorite/action-gift.svg) no-repeat center;
    mask: url(../../../images/favorite/action-gift.svg) no-repeat center;
}

.favorite-icon-share {
    cursor: pointer;
    height: 24px;
    width: 24px;
    background-image: var(--iz-share-icon-image);
}

.favorite-icon-download-background,
.favorite-icon-like-background,
.favorite-icon-gift-background,
.favorite-icon-share-background {
    padding: 6px;
    background-color: var(--iz-white-erie-black);
    border-radius: 6px;
}

.favorite-tooltip {
    position: relative;
}


.favorite-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.favorite-tooltip:hover .tooltiptext {
    visibility: visible;
}

@media screen and (max-width: 1400px) {
    .favorite-main .list-songs-table .center-info-block .total-time {
        margin-right: 20px;
    }

    .favorite-main .list-songs-table .left-info-block {
        width: 383px;
    }

    .favorite-main {
        max-width: 700px;
    }

}
