@font-face {
    font-family: 'Luckiest Guy';
    src: url('LuckiestGuy-Regular.ttf') format('truetype');
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

* {
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
}
*::-webkit-scrollbar { 
	display: none !important;
}

pre { 
	font-family: inherit;
	white-space: pre-wrap; 
	word-wrap: break-word;
	margin: 0px;
}


:root {
  --bg: #1e1e1e;
  --text: #f5f5f5;
  --container-bg: #2c2c2e;
  --card-bg: #333;
  --input-border: #3b82f6;
  --button-bg: #f5f5f5;
  --button-dark: #0d1117;
  --button-text: #333;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}

html {
	position: relative;
    min-height: 100%;
}
a { color: #fff; text-decoration: none; }



/*************************************************************************/
/* Header */
/*************************************************************************/
#header {
	max-width: 650px;
	margin: 0px auto;
	padding: 20px;
}
#header .header-container {
  max-width: 650px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .header-container .logo {
	display: flex;
	align-items: center;
}
#header .header-container .logo img { height: 70px; }

#footer {
	max-width: 610px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	background: var(--card-bg);
	border-radius: 8px;
	margin-top: 10px;
	margin-bottom: 20px;
	padding: 10px;
}

#footer .footer-links {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

#footer .footer-links a {
	color: var(--text);
	text-decoration: none;
	padding: 5px;
}
#footer .footerC { margin-top: 10px; }
#footer .footerD { margin-top: 10px; font-size: 13px; }




@media screen and (max-width: 740px) {
	#header { margin-bottom: -20px; }
	#header .header-container .logo img { height: 60px; }
	#footer { margin-bottom: 30px !important; margin: 0 10px;}
}


/*************************************************************************/
/* Main Site Config */
/*************************************************************************/
#main {
  max-width: 650px;
  margin: 0px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
#main .container {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 10px;
}

.navigation {
  display: flex;
  justify-content: space-around;
  background: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 10px 0;
}

.navigation a {
  color: var(--text);
  text-decoration: none;
  padding: 5px;
}

.content-box {
	background-color: var(--container-bg);
	border-radius: 12px;
	margin-bottom: 20px;
	padding: 10px;
	font-size: 16px;
	overflow: hidden;
}

.content-title {
	width: 100%;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	padding: 10px 0px;
	margin-top: -10px;
}

@media screen and (max-width: 740px) {
	#main { margin-top: 10px !important; margin-bottom: 10px; padding: 0 10px; }
	.content-title.nav {
		border-bottom: 0;
		margin-bottom: -10px;
	}
	.content-title.nav.open {
		margin-bottom: 10px;
		border-bottom: 1px solid #ddd;
	}

}

/*************************************************************************/
/* Dropdown Config */
/*************************************************************************/
.content-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.content-nav > div {
	display: flex;
	align-items: center;
	position: relative; 
}

/* Dropdown styles */
.dropdown-content,
.dropdown-account {
	display: none;
	position: absolute;
	top: 100%; 
	left: 0;
	margin-top: 5px;
	background: var(--text);
	min-width: 200px;
	border: 1px solid var(--bg);
	border-radius: 4px;
	z-index: 1000;
}
.dropdown-account { left: -170px !important; }

.dropdown-content a,
.dropdown-account a {
	color: var(--bg);
	font-size: 13px;
	padding: 15px 10px;
	display: block;
	border-bottom: 1px solid var(--bg);
	text-decoration: none;
}

.dropdown-content a:last-of-type, .dropdown-account a:last-of-type { border-bottom: 0; }
.show { display: block; }


/*************************************************************************/
/* Side Nav Config */
/*************************************************************************/
.side-nav {
	float: left;
	width: 100%;
	max-width: 30%;
}

.nav-area { float: left; width: 100%; margin-bottom: -10px; }
.nav-area a {
	float: left;
	width: 100%;
	border-bottom: 1px solid #ddd;
	font-size: 15px;
	padding: 15px 0;
	cursor: pointer;
	letter-spacing: 1px;
	color: #000;
	text-decoration: none;
}
.nav-area a.first { margin-top: -10px !important; }
.nav-area a.last { border-bottom: 0; }
.nav-btn { display: none !important; }

@media screen and (max-width: 740px) {
	.side-nav { display: none; }
	.maker-nav { display: inherit !important; width: 100%; max-width: 100%; }
	.account-nav { display: inherit !important; width: 100%; max-width: 100%; }
	.nav-btn { display: inherit !important; font-size: 10px !important; width: 44px; height: 24px; }
	.create-area { display: none; }
	.nav-area { display: none; }
}

/*************************************************************************/
/* Form Config */
/*************************************************************************/
.login-area .login-top { float: left; width: 100%; font-size: 14px; margin-bottom: 10px; }
.login-area .login-forgot { float: left; width: 100%; font-size: 14px; margin-top: 15px; }
.login-area .terms { float: left; width: 100%; margin-top: 10px; margin-bottom: 20px; }
.login-area a { text-decoration: none; color: #3069cb; font-weight: bold; }

input[type=text],
input[type=email],
input[type=password],
select,
textarea {
	width: 100%;
	font-size: 14px;
	color: #000;
	background: #fff;
	border: 1px solid #3069cb;
	line-height: 1.5;
	border-radius: 5px;
	display: inline-block;
	padding: 10px;
	margin-bottom: 10px;
}
textarea { resize: none; height: 150px; }

.login-area .label {
	float: left;
	width: 100%;
	text-align: left;
	font-size: 15px;
	margin-bottom: 5px;
}


.login-area .terms label {
    cursor: pointer;
}

.login-area .terms .input-frame {
    float: left;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #3069cb;
    border-radius: 5px;
}

.login-area .terms span {
    margin-top: -3px;
}

.login-area .terms input[type="checkbox"]:checked + .input-frame::after {
	float: left;
	content: "\2713";
	font-size: 15px;
	color: #3069cb;
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 740px) {
    .login-area .terms input[type="checkbox"] {
        float: left; 
        width: auto; 
        margin-right: 0px; 
    }

    .login-area .terms .agree {
        float: right; 
        width: 90%;
    }
}


/*************************************************************************/
/* Homepage Config */
/*************************************************************************/
.homepage-head {
    display: flex;
    justify-content: space-between;
    border-radius: 6px;
}

.homepage-save {
	margin-right: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}
.homepage-save .homepage-save-row {
	width: 100%;
	font-weight: 500;
	display: flex;
	justify-content: center;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	padding: 8px 12px;
	border-radius: 6px;
}

.play-btn {
	width: 100%;
	max-width: 120px;
	align-content: center;
}

.home-login {
	float: left;
	width: 100%;
    text-align: center;
    border-radius: 10px;
    margin-top: 20px !important;
}
.home-login .btn {
	min-width: 150px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    margin: 0 10px;
    transition: background-color 0.3s;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	font-size: 18px;
	cursor: pointer !important;
}
.home-login .btn:hover {
    transform: scale(1.10);
}

@media screen and (max-width: 740px) {
	.home-login .btn { margin: 0 auto; }
}

/*************************************************************************/
/* News Area Config */
/*************************************************************************/
.news-row {
	display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 6px;
	background: rgba(255, 255, 255, 0.05);
	margin-top: 10px; 
}
.news-row .news-article {
	width: 100%;
	font-weight: 500;
	display: flex;
	line-height: 22px;
	justify-content: center;
	text-align: center;
	padding: 8px 12px;
	border-radius: 6px;
}

.news-row .news-view {
	width: 100%;
	max-width: 90px;
	align-content: center;
}


.news-article a { color: #3069cb; }
.news-dates {
	display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 10px 0;
	margin-top: 10px;
	font-size: 14px;
}
.news-back {
	padding-top: 10px;
	font-size: 14px;
}


/*************************************************************************/
/* Account Area Config */
/*************************************************************************/
.account .stat-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.account .stat-area .stat-box {
	float: left;
	width: calc((100% / 3) - 10px);
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	text-align: center;
	padding: 5px;
}
.account .stat-area .stat-box .stat-type {
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
}
.account .stat-area .stat-box .stat-count {
	padding-top: 5px;
}

.account .account-row {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
}
.account .account-row .label {
    width: 30%; 
    font-size: 15px;
}
.account .account-row input[type=text],
.account .account-row input[type=email],
.account .account-row input[type=password],
.account .account-row select,
.account .account-row textarea {
    width: 70%; 
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px; 
    margin-bottom: 0; 
	color: #000;
}
.account .account-row select { text-transform: capitalize; }


.account .delete-warning {
	float: left;
	width: 100%;
	padding: 10px;
	background: #F2385A;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
.account .delete-warning span { 
	float: left; 
	width: 100%; 
	text-decoration: underline; 
	margin-bottom: 10px; 
}
.account .delete-process {
	float: left;
	width: 100%;
	margin-top: 10px;
	font-size: 14px;
}
.account .delete-process li {
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
.account .delete-area {
	float: left;
	width: 100%;
	text-align: center;
	margin-top: 50px;
}
.account .delete-area .delete-confirm { 
	float: left;
	width: 100%;
	margin-top: 10px;
	display: none; 
}

.account .not-premium {
	float: left;
	width: 100%;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}


.green { color: #4ca15b; }
.red { color: #F2385A; }


/*************************************************************************/
/* View Seasons / View Episodes Config */
/*************************************************************************/
.season-list-row:first-of-type { margin-top: 0px; }
.season-list-row:last-of-type { margin-bottom: 0px; }
.season-list-row {
	display: flex;
	flex-direction: column;
	padding: 10px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	margin: 20px 0;
	font-size: 16px;
}

.season-name { 
	display: flex;
	justify-content: center;
	width: 100%;
	font-size: 30px; 
	font-family: 'Luckiest Guy', sans-serif;
	letter-spacing: 2px;
	margin-top: 5px;
	margin-bottom: 12px;
}

.season-info {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.season-episodes,
.season-view {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 150px;
	border-radius: 8px;
	padding: 10px;
}

.season-list-row .season-episodes {
	background: #ddd;
	color: #000;
	text-align: center;
	font-size: 18px;
}

.season-list-row .season-episodes .season-episodes-count {
	width: 100%;
	padding-bottom: 5px;
	border-bottom: 1px solid #000;
}
.season-list-row .season-episodes .season-episodes-info {
	width: 100%;
	padding-top: 5px;
}

.season-list-row .season-view {
	background-color: #2185D0;
	color: #fff;
	text-align: center;
}

@media screen and (max-width: 740px) {
	.season-list-row .season-episodes,
	.season-list-row .season-view { width: calc((100% / 2) - 10px); margin: 0 15px; }
	.season-list-row .season-view a { margin-top: 0 !important; }
}

.no-episodes {
	float: left;
	width: 100%;
	font-size: 16px;
	text-align: center;
	font-weight: bold;
}

.episode-season-no {
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
}
.episode-row {
	display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--container-bg);
    border-radius: 12px;
    margin: 10px 0;
    font-size: 16px;
}
.episode-row .episode-data {
	margin-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.episode-list .episode-row .episode-name,
.episode-list .episode-row .episode-scenes {
	font-weight: 500;
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
}
.episode-list .episode-row .episode-options a {
	  min-width: 100px;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}


/*************************************************************************/
/* Info Config */
/*************************************************************************/
.info a { color: #3069cb; }
.info .text {
	float: left;
	width: 100%;
	margin-bottom: 15px;
	font-size: 16px;
}
.info .text li {
	float: left;
	width: 100%;
	margin-top: 6px;
}
.info .text li.first { margin-top: 0; }
.info .text .head {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 3px;
}
.info .text .head span { font-size: 22px; color: #3069cb; }
.info .label {
	float: left;
	width: 100%;
	text-align: left;
	font-size: 16px;
	margin-bottom: 5px;
}

.info .share {
	float: left;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 10px;
}
.info .share a {
	float: left;
	width: calc((100% / 4) - 10px);
	padding: 10px;
}
.info .share a img {
	width: 100%;
	height: 100%;
	max-width: 60px;
	max-height: 60px;
}


/*************************************************************************/
/* Pagination Config */
/*************************************************************************/
.pagination {
	float: left;
	width: 100%;
	text-align: center;
	padding-top: 10px;
}
.pagination li {
	margin: 0 10px;
	padding: 10px 30px;
	font-size: 14px;
	cursor: pointer;
}

/*************************************************************************/
/* Updates Config */
/*************************************************************************/
.updates {
	font-size: 18px;
}
.updates li {
	float: left;
	width: 100%;
	margin-bottom: 15px;
}
.updates li.last { margin-bottom: 0; }
@media screen and (max-width: 740px) {
	.updates a { font-size: 16px; }
	.updates { font-size: 14px; }
}

/*************************************************************************/
/* 404 Config */
/*************************************************************************/
.fof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
}

.fof-page { 
	display: flex; 
    flex-wrap: wrap;
    width: 60%;
    text-align: center; 
    margin: 10px 0px;
}

.fof a {
	color: #ff5f6d;
	font-weight: bold;
	font-size: 22px;
}
.fof-content {
	text-align: center;
	font-size: 20px;
}
.fof-content span { font-weight:bold; }
.fof-content li {
	width: 100%;
	margin-bottom: 18px;
}
.fof-content li.last { margin-bottom: 0; }

@media screen and (max-width: 740px) {
	.fof-page { width: 100%; }
	.fof a { font-size: 16px; }
	.fof-content { font-size: 14px; }
}

/*************************************************************************/
/* Misc Config */
/*************************************************************************/
.left { float: left; }
.right { float: right; }
.w100 { width: 100% !important; max-width: 100% !important; }
.w50 { width: 47% !important; }
.w40 { width: 40% !important; }
.w30 { width: 30% !important; }
.mt0 { margin-top: 0px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }

.ptb20 { padding: 20px 0 !important; }

.txc { text-align: center; }

.bold { font-weight: bold; }
.underline { text-decoration: underline; }


/*************************************************************************/
/* Button Config */
/*************************************************************************/
.btn {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	border: 1px solid transparent;
	padding: 5px;
	font-size: 18px;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer !important;
	color: #fff;
}

.btn-large {
	padding: 12px !important;
	font-size: 20px;
}

@media screen and (max-width: 740px) {
	.btn {
		-webkit-appearance: none;
	}
	.btn-large { font-size: 16px; }
}

.btn-white {
	color: #000 !important;
	border: 1px solid #ddd;
	border-radius: 10px;
	background-color: #fff;
}

.btn-white:hover { background: #ddd; }


.btn-blue {
	color: #fff !important;
	background-color: #2185D0;
}
.btn-grey {
	color: #000 !important;
	background-color: #ddd;
}
.btn-red {
	color: #fff !important;
	background-color: red;
}
.btn-green {
	color: #fff !important;
	background-color: green;
}

.btn-black {
	color: #fff;
	background: #000;
}
.btn-yellow {
	color: #fff !important;
	background-color: #FBBD08;
}
.btn-orange {
	color: #fff !important;
	background-color: #F2711C;
}



/*************************************************************************/
/* Notification Config */
/*************************************************************************/
.default-alert {
	float: left;
	position: fixed;
	z-index: 999;
	top: 95px;
	left: 50%; 
	width: 100%;
	max-width: 600px; 
	transform: translate(-50%, -50%); 
	text-align: center;
	font-size: 14px;
	padding: 10px;
	color: #ffffff;	
}

@media screen and (max-width: 740px) {
	.default-alert { width: 98%; top: 85px; left: 50%; transform: translate(-50%, -50%); }
}

.alert-green { background: #4ca15b; }
.alert-red { background: #F2385A; }
.alert-blue { background: #46a2d5; }
.alert-yellow { background-color: #f0ad4e; }


/*************************************************************************/
/* Icons Config */
/*************************************************************************/
.icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-color: black; 
    mask-size: contain; 
    mask-repeat: no-repeat;
}
.icon-shuffle { mask-image: url('icons/Random.svg'); }
.icon-x { mask-image: url('icons/X.svg'); }
.icon-star { mask-image: url('icons/Star.svg'); }
.icon-cog { mask-image: url('icons/Settings.svg'); }
.icon-nav { mask-image: url('icons/Navigation.svg'); }
.icon-heart { mask-image: url('icons/Heart.svg'); }
.icon-user { mask-image: url('icons/User.svg'); }

/* Social Icons */
.icon-facebook { mask-image: url('social-icon/facebook.svg'); }
.icon-instagram { mask-image: url('social-icon/instagram.svg'); }
.icon-linkedin { mask-image: url('social-icon/linkedin.svg'); }
.icon-pinterest { mask-image: url('social-icon/pinterest.svg'); }
.icon-reddit { mask-image: url('social-icon/reddit.svg'); }
.icon-snapchat { mask-image: url('social-icon/snapchat.svg'); }
.icon-threads { mask-image: url('social-icon/threads.svg'); }
.icon-tiktok { mask-image: url('social-icon/tiktok.svg'); }
.icon-tumblr { mask-image: url('social-icon/tumblr.svg'); }
.icon-twitch { mask-image: url('social-icon/twitch.svg'); }
.icon-website { mask-image: url('social-icon/website.svg'); }
.icon-xx { mask-image: url('social-icon/x.svg'); }
.icon-youtube { mask-image: url('social-icon/youtube.svg'); }

.icon.black { background-color: black; }
.icon.white { background-color: white; }


/*************************************************************************/
/* Push Menu Config */
/*************************************************************************/
.pushmenu { display: none; }
@media screen and (max-width: 740px) {
	/* Navigation Style */
	.pushmenu { 
		display: block;
		background: #fff;
		width: 240px;
		top: 0px;
		bottom: 50px;
		z-index: 10;
		position: fixed;
		overflow: scroll;
		scrollbar-width: none;
	}
	.pushmenu::-webkit-scrollbar { 
		display: none;
	}
	.pushmenu .nav-title {
		float: left;
		width: 100%;
		font-size: 15px;
		font-weight: bold;
		text-align: center;
		border-bottom: 1px solid #ddd;
		padding: 10px;
		background: #3069cb;
		color: white;
	}
	.pushmenu .nav-title.first { border-top: 1px solid #ddd; }
	.pushmenu .navi {
		float: left;
		width: 100%;
		font-size: 16px;
	}
	.pushmenu .navi a,
	.pushmenu .navi li {
		width: 100%;
		height: 44px;
		color: #000 !important;
		text-decoration: none;
		font-size: 16px;
		padding: 12px 0px;
		cursor: pointer;
		display: block;
		border: none;
		background: none;
		text-align: center;
		outline: none;
		border-bottom: 1px solid #ddd;
		overflow: hidden;
	}
	.pushmenu .navi li { padding-left: 10px; text-align: left !important; }

	/* Left Toggle */
	.pushmenu-left { left: -240px; border-right: 1px solid #ddd; }
	.pushmenu-left.pushmenu-open { left: 0; }
	.pushmenu-push { overflow-x: hidden; position: relative; left: 0; }
	.pushmenu-push-toright { left: 240px !important; }

	/*Transition*/
	.pushmenu, .pushmenu-push {
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		transition: all 0.3s ease;  
	}
}

/*************************************************************************/
/* Popup Config */
/*************************************************************************/
.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.8);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
	z-index: 10;
}
.overlay:target {
	visibility: visible;
	opacity: 1;
}
.popup {
	width: 100%;
	max-width: 500px;
	max-height: 90%;
	margin: 30px auto;
	background: #fff;
	border-radius: 5px;
	overflow: scroll;
}
.popup::-webkit-scrollbar { 
	display: none;
}
.popup.play { max-width: 390px; }
.popup .popupHead {
	float: left;
	width: 100%;
	border-bottom: 1px solid #ddd;
	background: #fff;
	color: #000;
}
.popup .popupHead .popup-title {
	float: left;
	width: 100%;
	font-size: 20px;
	padding: 10px;
}
.popup  .popupHead .close {
	float: right;
	margin-top: -20px;
	margin-right: 9px;
	font-size: 32px;
	font-weight: bold;
	text-decoration: none;
	color: #000;
}
.popup .popup-content {
	display: flex;
    flex-wrap: wrap;
    justify-content: center; 
	width: 100%;
	padding: 10px;
	color: #000 !important;
}
.popup-image img {
	width: 100%;
	max-width: 300px;
	margin-bottom: 20px;
}

.popup .popup-content .episode-name {
	width: 100%;
	text-align: center;
	font-size: 38px;
	font-family: 'Luckiest Guy', sans-serif;
	color: #333;
	margin-top: 10px;
}

.popup .popup-content .episode-no-login {
	width: 100%;
	font-size: 22px;
	text-align: center;
	margin-top: 10px;
}
.popup .popup-content .episode-no-login a {
	color: blue;
}

.popup .popup-content .episode-inactive {
	width: 100%;
	text-align: center;
	font-size: 22px;
	color: red;
	margin-top: 10px;
}

.popup .popup-content .episode-save  {
	width: 100%;
	text-align: center;
}
.popup .popup-content .episode-save .save-title { 
	font-size: 20px; 
	padding: 10px;
	border-top: 1.5px dashed black; 
	border-bottom: 1.5px dashed black; 
}
.popup .popup-content .episode-save .save-play { 
	margin-top: 10px;
}

.popup .popup-content .episode-save .save-current {
	font-size: 18px;
	margin-top: 10px;
}
.popup .popup-content .episode-save .save-current span {
	font-weight: bold;
	font-size: 20px;
}

.popup .popup-content .episode-save .save-overwrite {
	margin-top: 30px;
}


.popup.play .popup-content .menu-options { float: left; width: 100%; text-align: center; margin-bottom: -10px; }
.popup.play .popup-content .menu-options a {
	float: left;
	width: 100%;
	border-bottom: 1px solid #ddd;
	font-size: 15px;
	padding: 15px 0;
	cursor: pointer;
	letter-spacing: 1px;
	color: #000;
	text-decoration: none;
}
.popup.play .popup-content .menu-options a.first { margin-top: -10px !important; }
.popup.play .popup-content .menu-options a.last { border-bottom: 0; }



@media screen and (max-width: 740px) {
	.popup { width: 90%; }
}

/*************************************************************************/
/* Elements Config */
/*************************************************************************/
.close-nav, .open-nav { font-size: 14px !important; }
.close-nav {
	position: relative;
	display: inline-block;
}
.close-nav::before { content: "\2303"; }

.open-nav {
	position: relative;
	display: inline-block;
	transform: rotate(180deg);
}
.open-nav::before { content: "\2303"; }