@font-face {
    font-display: swap;
    font-family: 'Audiowide';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/audiowide/Audiowide-Regular.ttf');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Symbols';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto sans symbols two/NotoSansSymbols2-Regular.ttf');
}

* {
    padding: 0;
    margin: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
    background-color: #9e9e9e;
    /* background-color: dimgrey; */
    /* background: linear-gradient(45deg, gainsboro 5%, dimgrey 45%, gainsboro 95%); */
    /* background: linear-gradient(180deg, gainsboro 5%, dimgrey 45%, #9e9e9e 90%, dimgrey 100%); */
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

h1 {
    color: white;
    font-size: 64px;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
    min-width: 170px;
    font-family: 'Audiowide';
}

h2 {
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
    min-width: 170px;
    font-family: 'Audiowide';
}

h3 {
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
}

h4 {
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
}

h5 {
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 86vh;
    background: linear-gradient(45deg, darkgoldenrod 0%, goldenrod 80%);
    background-color: goldenrod;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
    background-size: cover;
    background-position: center;
    background-image: url("/images/site/CGCastBG.jpg");
    position: relative;
    margin-bottom: 60px;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    /* text-decoration: underline; */
    animation: hueShift 1s linear infinite;
}

::placeholder {
    color: gainsboro;
}

[disabled] {
    cursor: not-allowed;
}

[hidden] {
    display: none !important;
}

menu {
    height: 8vh;
    display: flex;
    background-color: cadetblue;
    background-image: linear-gradient(to bottom right, cadetblue, #347072);
    color: white;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
}

header span {
    padding: 32px;
    background-image: radial-gradient(rgb(0 0 0 / 50%), rgb(0 0 0 / 0%), rgb(0 0 0 / 0%));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0px 0px 20px 8px rgba(0, 0, 0, 0.15);
    position: absolute;
    transform: translate(-50%, -50%);
    bottom: -165px;
    left: 50%;
    width: 85%;
    max-width: 950px;
    text-align: center;
    transition: .33s all;
}

header h1 {
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .15);
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(226deg, #7cedeb 0%, #fdec8c 70%);
    -webkit-text-stroke: 2px dimgray;
}

header h2 {
    -webkit-text-stroke: 1px lightslategray;
}

.logoCon {
    display: flex;
    align-items: center;
    width: 25%;
    min-width: 300px;
}

.logoCon a:hover {
    color: goldenrod;
}

.logoCon img {
    width: auto;
    height: 80%;
    aspect-ratio: 1;
    margin-left: 32px;
    margin-right: 8px;
}

.logoCon span {
    font-size: 5vh;
    font-weight: bold;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(226deg, #7cedeb 0%, #fdec8c 70%);
    min-width: 200px;
    font-family: 'Audiowide';
    -webkit-text-stroke: 1px darkslategray;
}

.navCon {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navCon nav {
    margin: 32px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    min-width: 170px;
    font-family: 'Audiowide';
    transition: .33s all;
}

.navCon nav:hover {
    color: goldenrod;
}

.navCon nav.active {
    color: darkseagreen;
    cursor: default;
    text-decoration: line-through;
}

#episodes {
    max-width: 1200px;
    margin: auto;
}

#episodes h2 {
    text-align: center;
    padding: 3%;
    font-size: 33px;
    color: darkslategray;
}

.filterContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2%;
}

.filterButtonContainer {
    display: flex;
    justify-content: space-evenly;
    width: 80%;
    align-items: center;
}

.filterButtonContainer span {
    text-align: center;
    width: 100%;
}

.filterButtonContainer label {
    font-size: 17px;
    font-weight: 700;
}

.filterButtonContainer input,
select {
    width: 50% !important;
    padding: 1.5% 3%;
    margin: auto;
    margin-top: 1%;
    margin-bottom: 1%;
    display: inline-block;
    border: none;
    outline: none;
    color: white;
    font-weight: bold;
    font-size: 133%;
    background-color: slategray;
    box-sizing: border-box;
    box-shadow: 0 5px 25px 5px rgba(0, 0, 0, .15), -3px -4px 12px 1px rgba(255, 255, 255, .15);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .15);
    transition: .33s all;
    border-radius: 15px;
    height: 42px;
}

.filterButtonContainer select:open {
    border-radius: 15px 15px 0 0;
}

#search {
    cursor: text;
}

input {
    cursor: pointer;
}

label {
    font-size: 20px;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
}

.episodeContainer {
    display: flex;
    margin-bottom: 2%;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
    height: 36vh;
    animation-fill-mode: forwards !important;
    animation-iteration-count: 1;
    transition: .33s all;
    border-color: springgreen;
    border-width: 6px;
}

.episodeContainer:hover {
    box-shadow: 2px 4px 12px 6px rgba(0, 0, 0, 0.33);
}

.episodeHidden {
    transform: scaleY(0) !important;
    height: 0vh !important;
    margin: 0 !important;
}

.episodeImg {
    width: 20%;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
}

.episodeImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: .33s all;
    position: relative;
}

.episodeImg img:hover {
    filter: saturate(1.33);
}

.episodeInfo {
    width: 50%;
    background-color: silver;
    background: linear-gradient(45deg, silver 0%, gainsboro 80%);
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 2%;
    padding-bottom: 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.episodeInfo:hover {
    filter: brightness(1.1);
}

.episodeTitle {
    cursor: pointer;
    transition: .33s all;
    text-decoration: underline;
    font-size: 24px;
    transition: .33s all;
}

.episodeTitle:hover {
    color: cadetblue;
    animation: hueShift 1s linear infinite;
}

.participants {
    background-color: aliceblue;
    margin-right: 5px;
    border-radius: 15px;
    padding: 2px;
    padding-right: 6px;
    padding-left: 6px;
    font-size: 12px;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
    cursor: pointer;
    transition: .33s all;
    white-space: pre;
}

.participants:hover {
    background-color: cadetblue;
    color: white;
    animation: hueShift 1s linear infinite;
}

.participants:hover .participantsFilter {
    font-size: 12px;
}

.participantsFilter {
    font-size: 0;
    transition: .33s all;
    background-color: burlywood;
    border-radius: 50%;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
}

.participantsFilter:hover {
    background-color: green;
}

.episodePlay {
    display: flex;
    width: 20%;
    position: relative;
}

.episodePlay:hover .playButtonOL {
    opacity: 1;
}

.playButtonOL {
    position: absolute;
    transform: translate(-50%, -50%) rotate(356deg);
    left: 50%;
    top: 68%;
    color: white;
    font-size: 34px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .25s all;
    pointer-events: none;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
}

.playButtonOL:hover {
    opacity: 1;
}

.episodePlayButton {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 120px;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: .33s all;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
    border-style: none;
}

.episodePlayButtonCon {
    width: 130px;
    height: 130px;
    background-color: cadetblue;
    border-radius: 50%;
    line-height: 111px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 20px 2px;
    color: white;
    background-image: linear-gradient(to bottom right, #9bbcba, #347072);
    border-style: solid;
    border-color: gainsboro;
    box-sizing: border-box;
}

.episodePlayButtonIcon {
    transform: scaleX(1.35);
    display: inline-block;
    width: 100%;
    font-family: 'Noto Symbols';
    margin-left: 5px;
}

.episodePlayButton:hover {
    /* filter: hue-rotate(45deg) !important; */
    animation: hueShift 1s linear infinite;
}

footer {
    text-align: center;
    padding-bottom: 2%;
    padding-top: 1%;
    color: gainsboro;
    font-weight: bold;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
}

.footerMenu {
    display: flex;
    justify-content: space-around;
    margin-bottom: 26px;
}

.footerMenu button {
    font-size: 15px;
    padding: 5px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    border-style: none;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
    transition: .33s all;
}

.footerMenu button:hover {
    background-color: darkgreen;
    color: white;
    animation: hueShift 1s linear infinite;
}

#player {
    width: 100%;
    height: 14vh;
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(45deg, dimgrey 0%, grey 80%);
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.33);
    animation: fadein .5s ease-in;
    animation-iteration-count: 1;
    border-top-style: solid;
    border-color: darkgray;
    z-index: 99;
}

#player audio {
    width: 97%;
    height: 30px;
    filter: drop-shadow(2px 4px 6px grey);
    display: block;
    margin: auto;
}

#player video {
    width: 25%;
    height: auto;
    position: absolute;
    bottom: 10vh;
    right: 0%;
    border-radius: 16px 0 0 0;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.33);
}

#player h3 {
    color: white;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .33);
    margin-left: 14px;
    width: 100%;
    margin-top: 8px;
    font-family: 'Audiowide';
}

#playerInfoCon {
    width: 100%;
    height: 100%;
    /* margin-left: 10%; */
    display: flex;
    flex-direction: column;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #00000099 100%);
}

#playerInfoCon span {
    width: 100%;
}

#playerTranscript {
    position: static !important;
    width: 100% !important;
    color: white;
    text-align: center;
    margin-top: 8px;
    margin-left: 14px;
    text-align: center;
    min-height: 20px;
}

#playerImage {
    height: 100%;
    aspect-ratio: 1;
    width: auto;
    object-fit: cover;
}

#player span {
    /* width: 10%; */
    /* height: 100%;
    position: absolute; */
}

#player img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
}

#player button {
    position: absolute;
    right: 2%;
    top: 10%;
    font-size: 18px;
    display: flex;
    padding-bottom: 3px;
    width: 22px;
    height: 22px;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.33);
    font-family: 'Noto Symbols';
}

#player button:hover {
    background-color: crimson;
    color: lightgray;
}

#player .closeX {
    margin-bottom: -4px;
    margin-right: 1px;
    font-family: 'Noto Symbols';
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

::-webkit-scrollbar-thumb {
    height: 33px;
    width: 33px;
    background: #888;
    background-image: linear-gradient(to bottom right, #555, grey);
}

::-webkit-scrollbar-track {
    display: none;
}

:focus {
    outline-style: none;
}

.allEpisodes {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    margin-top: 8px;
}

.allEpisodes button {
    font-size: 24px;
    padding: 15px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    border-style: none;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
    transition: .33s all;
}

.allEpisodes button:hover {
    background-color: goldenrod;
    animation: hueShift 1s linear infinite;
    color: white;
}

#participants {
    max-width: 1200px;
    margin: auto;
}

#participants h2 {
    text-align: center;
    padding: 3%;
    font-size: 33px;
    color: darkslategray;
}

.participantContainer {
    padding: 32px;
    text-align: center;
}

.participantFp {
    width: 20%;
    display: inline-block;
    aspect-ratio: 1;
    text-align: center;
    font-size: 18px;
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
}

.participantFp img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    transition: .33s all;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
}

.participantFp img:hover {
    filter: saturate(1.2);
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.55);
}

.participantFp span {
    transition: .33s all;
}

.participantFp:hover span {
    color: darkslategray;
    animation: hueShift 1s linear infinite;
    font-weight: bold;
}

/* Episode Solo */

#episodeSolo {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 1%;
}

.episodeSide {
    width: 30%;
    position: sticky;
    padding-top: 5%;
    height: 100%;
    top: 0;
}

.episodeMain {
    width: 70%;
    padding: 5%;
    text-align: left;
}

.episodeMain h2 {
    margin-top: 16px;
}

.episodeMain h3 {
    margin-top: 5px;
}

.episodeMain h4 {
    margin-top: 5px;
}

.episodeMain p {
    margin-top: 5px;
}

.episodeMain ul {
    padding: 18px;
}

.episodeMain li {
    padding: 5px;
    margin-bottom: 4px;
}

.episodeMain strong {
    color: mediumturquoise;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
}

.episodeMain .episodeTitle {
    text-decoration: none;
    cursor: auto;
}

.episodeMain .episodeTitle:hover {
    color: gainsboro;
}

.episodeSoloTitleCon {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1%;
}

.episodeSoloTitleCon button {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: .33s all;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
    white-space: nowrap;
    margin-top: 8px;
    background-image: linear-gradient(to bottom right, #9bbcba, #347072);
    color: white;
    cursor: pointer;
}

.episodeSoloTitleCon button:hover {
    filter: saturate(1.25);
    animation: hueShift 1s linear infinite;
}

.episodeSoloTitleCon div {
    width: 70%;
}

.episodeSoloImg {
    width: 20%;
    border-radius: 25px;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
    aspect-ratio: 1;
    object-fit: cover;
}

.episodeSoloPlayButton {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
    /* box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25); */
    cursor: pointer;
    transition: .33s all;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
    border-style: none;
    border-radius: 25px 25px;
    background-color: transparent;
}

.episodeSoloPlayButton:hover {
    filter: saturate(1.5);
    animation: hueShift 1s linear infinite;
}

.episodePlaySolo {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    margin-bottom: 16px;
}

.episodeTranscribeHL {
    background-color: cadetblue;
}

.participantsSolo {
    background-color: aliceblue;
    margin-right: 5px;
    border-radius: 15px;
    padding: 2px;
    padding-right: 6px;
    padding-left: 6px;
    font-size: 15px;
    color: black;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.25);
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
    cursor: pointer;
    transition: .33s all;
    margin: 4px;
}

.participantsSolo:hover {
    background-color: cadetblue;
    animation: hueShift 1s linear infinite;
    color: white;
}

.episodePlaySolo:hover .playButtonOL {
    opacity: 1;
}

.episodePlaySolo .playButtonOL {
    top: 79%;
}

.episodeSoloPartiCon {
    display: flex;
    flex-direction: column;
}

#epTranscript {
    line-height: 26px;
}

#epTranscript div {
    transition: .33s all;
    padding: 5px;
    border-radius: 9px;
    cursor: pointer;
    transition: .33s all;
}

#epTranscript div:hover {
    background-color: cornflowerblue;
}


/* Participants */

.partiContainer {
    min-height: 80vh;
    max-width: 1200px;
    margin: auto;
}

.partiConSolo {
    display: flex;
    flex-direction: row;
}

.partiLeftSolo {
    width: 30%;
    padding: 16px;
    text-align: left;
}

.partiSocial {
    display: flex;
    flex-direction: column;
    margin-top: 6px;
}

.partiLeftSolo img {
    width: 100%;
    border-radius: 25px;
    aspect-ratio: 1;
    object-fit: cover;
    padding: 2px;
}

.partiSocial span {
    transition: .33s all;
    word-break: break-word;
}

.partiSocial span:hover {
    color: turquoise;
}

.partiMainSolo {
    width: 70%;
}

.partiDesc {
    margin-bottom: 32px;
    margin-top: 8px;
    width: 90%;
    text-align: left;
}

.partiEpisodes {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partiEpisode {
    cursor: pointer;
    padding: 2px;
    margin: 1px;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    width: 80%;
    text-align: left;
    padding-left: 2%;
    padding-right: 2%;
    border-radius: 15px;
    transition: .33s all;
}

.partiEpisode:hover {
    background-color: cadetblue;
    animation: hueShift 1s linear infinite;
    color: white !important;
}

.partiEpisode:nth-child(odd) {
    color: lightblue;
}

.viewTextWrap {
    max-width: 650px;
    display: inline-block;
    text-align: left;
    padding-top: 30px;
}

.Contact {
    text-align: center;
}

.coninput {
    width: 50% !important;
    font-family: 'Economica' !important;
    padding: 1.5% 3%;
    margin: auto;
    margin-top: 1%;
    margin-bottom: 1%;
    display: inline-block;
    border: none;
    outline: none;
    color: rgb(64, 64, 64);
    font-weight: bold;
    font-size: 133%;
    background-color: gainsboro;
    box-sizing: border-box;
    box-shadow: 0 5px 25px 5px rgba(0, 0, 0, .15), -3px -4px 12px 1px rgba(255, 255, 255, .15);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .15);
    -webkit-appearance: none;
    transition: .33s all;
    border-radius: 15px;
}

.Contact button {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 18px;
    font-size: 0.8rem;
    font-weight: bold;
    transition: .33s all;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, .25);
    white-space: nowrap;
    margin-top: 8px;
    background-image: linear-gradient(to bottom right, #9bbcba, #347072);
    color: white;
    cursor: pointer;
    transition: .33s all;
}

.Contact button:hover {
    animation: hueShift 1s linear infinite;
}

.Contact ::placeholder {
    color: rgb(122, 122, 122);
    text-shadow: none;
}

@media only screen and (min-width: 1200px) {
    .episodeImg {
        border-radius: 25px 0 0 25px;
    }

    .episodeImg img {
        border-radius: 25px 0 0 25px;
    }

    .episodeContainer {
        border-radius: 25px;
    }

    .episodePlayButton {
        border-radius: 0 25px 25px 0;
    }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {

    header {
        margin-bottom: 20px;
    }

    header h1,
    h2 {
        text-align: center;
    }

    header h2 {
        color: white;
    }

    header span {
        text-align: left;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        height: 100%;
        width: 100%;
        top: 50%;
        bottom: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 0px;
        background-image: radial-gradient(rgb(0 0 0 / 51%), rgb(0 0 0 / 0%));
    }

    .navCon {
        display: none;
    }

    .filterButtonContainer {
        width: 100%;
        margin-bottom: 8%;
    }

    .filterButtonContainer span {
        width: 100%;
        text-align: center;
    }

    .filterButtonContainer label {
        display: none;
    }

    .filterButtonContainer input,
    select {
        width: 80% !important;
        font-size: 17px;
    }

    .episodeContainer {
        display: flex;
        flex-direction: column;
        /* min-height: 50vh;
        max-height: 70vh; */
        height: 70vh;
        position: relative;
        border-width: 4px;
    }

    .episodeImg {
        width: 100%;
        height: 40%;
    }

    .episodeInfo {
        width: 90%;
        height: 100%;
    }

    .episodePlay {
        height: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        top: 19%;
        left: 50%;
        width: 130px;
    }

    .episodeContainer .episodeTitle {
        /* position: absolute; */
        /* text-align: center; */
        top: 10%;
        left: 5%;
        /* max-width: 40%; */
        /* color: white; */
        font-weight: bold;
        text-shadow: 3px 3px 13px rgba(0, 0, 0, .55);
        /* backdrop-filter: blur(5px); */
        /* background-color: rgb(105 105 105 / 75%); */
        padding: 4px;
        padding-top: 6px;
        padding-bottom: 12px;
        border-radius: 25px;
        font-size: 22px;
        /* text-decoration: none; */
        text-decoration-thickness: 1px;
    }

    .episodePlayButton {
        background-color: transparent;
        box-shadow: none;
    }

    .episodeSide {
        position: static;
    }

    .episodeSoloTitleCon {
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-top: 12px;
    }

    .episodeSoloTitleCon h1 {
        font-size: 32px;
    }

    .episodeSoloTitleCon div {
        text-align: center;
    }

    .episodeSoloImg {
        margin: 0;
        width: 80%;
        height: auto;
    }

    #episodeSolo {
        display: flex;
        flex-direction: column;
    }

    .episodeSide {
        position: static;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .episodeMain {
        width: 75vw;
    }

    .episodePlayButtonCon {
        background-color: transparent;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        background-image: linear-gradient(to bottom right, rgb(155 188 185 / 40%), rgb(52 112 114 / 40%));
    }

    .participantFp img {
        margin-bottom: 8px;
    }

    .participantContainer {
        padding: 16px;
    }

    .participantFp {
        width: 38%;
        font-size: 12px;
    }

    .partiContainer {
        width: 85vw;
    }

    .partiContainer h1 {
        font-size: 32px;
    }

    .partiConSolo {
        display: flex;
        flex-direction: column;
    }

    .partiLeftSolo {
        width: 100%;
        padding: 0;
    }

    .partiLeftSolo img {
        margin: auto;
        width: 80%;
        display: block;
        margin-bottom: 10px;
    }

    .partiMainSolo {
        width: 100%;
    }

    #player h3 {
        font-size: 15px;
    }

    #playerTranscript {
        margin-left: 0;
        margin-top: 10px;
        padding-left: 2.5%;
        padding-right: 2.5%;
        width: 95% !important;
        font-size: 12px;
    }

    #player video {
        width: 100%;
        border-radius: 16px 16px 0 0;
    }

    #player button {
        top: 5%;
    }

    .footerMenu button {
        font-size: 10px;
    }

    #modalBG #modalText {
        padding: 0 !important;
    }

}

@keyframes fadein {
    from {
        filter: opacity(0%) blur(5px);
    }

    to {
        filter: opacity(100%) blur(0px);
    }
}

@keyframes fadeout {
    from {
        filter: opacity(100%) blur(0px);
    }

    to {
        filter: opacity(0%) blur(5px);
    }
}

@keyframes expand {
    from {
        height: 0vh;
        transform: scaleY(0);
        filter: opacity(0%) blur(5px);
        margin-bottom: 0%;
    }

    to {
        height: 33vh;
        transform: scaleY(1);
        filter: opacity(100%) blur(0px);
        margin-bottom: 2%;
    }
}

@keyframes shrink {
    from {
        height: 33vh;
        transform: scaleY(1);
        filter: opacity(100%) blur(0px);
        margin-bottom: 2%;
    }

    to {
        height: 0vh;
        transform: scaleY(0);
        filter: opacity(0%) blur(5px);
        margin-bottom: 0%;
    }
}

@keyframes hueShift {
    from {
        filter: hue-rotate(0deg);
    }

    to {
        filter: hue-rotate(360deg);
    }
}