﻿.podcast-card {
    background-color: #1f1f1f;
    font-family: Arial, sans-serif;
}

.podcast-card.* {
    margin: 0;
    padding: 0;
}

.podcast-card a {
    text-decoration: none;
    color: white;
}

.podcast-card {
    color: rgb(255, 255, 255);
    height: auto;
    width: 100%;
    border-radius: .75rem;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.podcast-header, .podcast-picture {
    margin-bottom: .9rem;
}
/* Podcast Header Section
--------------------------------*/
.podcast-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.podcast-card .fa-spotify {
    font-size: 1.5rem;
}

/* Podcast Picture Section
-----------------------------*/
.podcast-picture {
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-card .picture-container {
    width: 137px;
    height: 137px;
    border-radius: .75rem;
    border: none;
    background: white;
    cursor: pointer;
}

/*Podcast Content Section
-----------------------------*/

.podcast-content {
    margin-bottom: 20px;
}

.podcast-card .scroll-container {
    min-width: 300px;
    /* width: 350px; */
    overflow: hidden;
    white-space: nowrap;
}

.podcast-content .scroll-text {
    font-size: 1.5rem;
    margin-bottom: .5rem;
    display: inline-block;
    position: relative;
    left: 0;
    font-weight: bold;
}

.podcast-content .scroll-text:hover {
    text-decoration: underline;
}

.podcast-content p {
    margin-bottom: .5rem;
    font-size: 14px;
    color: #979897;
}

.podcast-content p > a {
    color: inherit;
}

.podcast-content p > a:hover {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

.podcast-card .spotify-button {
    background: none;
    border: none;
    outline: none;
    color: white;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: all 0.4s;
    font-size: .875rem;
    opacity: 0.8;
}

.podcast-card .spotify-button:hover {
    transform: scale(1.05);
}

.podcast-card .spotify-button img {
    width: 20px;
    margin-right: .5rem;
}

/*Player Section
-------------------------*/
.podcast-card .player {
    display: flex;
    align-items: center;
}

.podcast-card .backward, .podcast-card .forward {
    width: 25px;
    cursor: pointer;
}

.podcast-card .backward {
    margin-right: .5rem;
}

.podcast-card .forward {
    margin: 0 .5rem;
}

.podcast-card .ctrlIcon {
    margin-left: .8rem;
}

.podcast-card .ctrlIcon {
    font-size: 50px;
    cursor: pointer;
    transition: all 0.4s;
}

.podcast-card .ctrlIcon:hover {
    transform: scale(1.1);
}

.podcast-card .showDuration {
    display: inline-block;
    width: 50px;
}

.podcast-card .progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 60%;
    height: 5px;
    background: #ffffff4d;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
}

.podcast-card .progress::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 0px;
    box-shadow: -400px 0 0 400px white;
}

.podcast-card .progress::-moz-range-thumb {
    -moz-appearance: none;
    width: 0px;
    box-shadow: -400px 0 0 400px white;
}

.podcast-card .minus {
    visibility: hidden;
}