/*
Theme Name: dramacool_show
 
/*

01:	- Normalize
02:	- Typography
03:	- Elements
04:	- Header Content
05:	- Body Content
06: - Footer Content
07:	- Widgets
08:	- Comments
09: - Single pages
10: - Archive Pages
11: - Responsive
12:	- Additional Styles
*/

/*
 * 01: Normalize
 * Styles based 
 on Normalize v7.0.0 @link https://github.com/necolas/normalize.css
 */
 
* {
    padding: 0;
    margin: 0;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
article,
aside,
footer,
header,
nav,
section {
	display: block;
}

figcaption,
figure,
main {
	display: block;
}

a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:focus,
a:active {
	outline: 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

b,
strong {
	font-weight: 700;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

dfn {
	font-style: italic;
}

abbr[title] {
	border-bottom: 1px #777 dotted;
	text-decoration: none;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

small {
	font-size: 80%;
}

audio,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

img {
	border: 0;
	border-style: none;
}

button,
input,
select,
textarea {
	font-family: sans-serif;
	font-size: 100%;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

textarea {
	overflow: auto;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

canvas {
	display: inline-block;
}

template {
	display: none;
}

[hidden] {
	display: none;
}


/*
 * 02: Typography
 */

html,
body {
	text-rendering: optimizelegibility;
}
 
body,
button,
input,
select,
textarea {
    background:#fff;
    color: #000;
    font-size: 13px;
    font-family: lato,Helvetica,Arial,sans-serif;
    line-height: 1.5;
}

/*
 * 03: Elements
 */
 
p {
	margin: 0 0 20px 0;
	line-height: 1.6;
	font-size: 15px;
}

hr {
	height: 1px;
	border: 0;
	background-color: #eee;
	margin-bottom: 20px;
}

ol {
	list-style: decimal;
}
li{
    list-style:none;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 20px 20px;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {
	border-left: 5px solid #e54e53;
    color: #555;
    margin: 0 0 20px;
    padding: 10px 20px;
    font-style: italic;
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
}

blockquote p {
	margin: 20px 0 0 0;
}

blockquote > p:first-child {
	margin: 0;
}

cite {
	color: #999;
    display: block;
    font-size: 1em;
    margin: 10px 0 0;
    text-align: left;
}

address {
	margin: 0 0 20px;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 1em;
	line-height: 1.65;
	margin-bottom: 20px;
	max-width: 100%;
	overflow: auto;
	padding: 10px;
	border: 1px dashed #ccc;
}

code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

code {
	font-size: 1em;
	display: inline-block;
	padding: 0.1em 0.2em;	
	background-color: #f2f2f2;
    border: 1px solid #ddd;
    -webkit-border-radius: 2px;
	border-radius: 2px;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	text-decoration: none;
}

mark {
	background: #fff9c0;
}

big {
	font-size: 125%;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 0 20px;
	width: 100%;
}

th {
	font-weight: 700;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

embed,
object,
iframe {
	max-width: 100%;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
    border: none;
    border-radius: 2px;
    background: #a3a1a1;
    color: #fff;
    line-height: 1.4;
    padding: 2px 10px;
    font-weight: 700;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	opacity: 0.8;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	opacity: 0.8;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #888;
	background: #fff;
    border: 1px solid #eee;
    -webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #333;
	background-color: #eee;
	border: 1px solid #eee;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	padding: 0.5em;
}

textarea {
	vertical-align: top;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

select {
	padding: 0.25em 0.5em;
	background-color: #fff;
	color: #666;
	border: 1px solid rgba(0, 0, 0, 0.07);
}

blockquote, input, select {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: none;
	background: #fff;
	border-radius: 3px;
}

fieldset {
	margin-bottom: 20px;
}

/* Links */

a {
	color: #018f9d;
	text-decoration: none;
}
a:visited, a:focus{
	
}
a:hover {
	text-decoration:none
}
a:active, a:focus {
	outline: none;
}

/* Headings */

h1, h2, h3, h4, h5, h6 {
	font-size:1em;
}

.entry-header h1{
	font-size: 22px;
}
.entry-header h2{
	font-size: 18px;
}
.entry-header h3{
	font-size: 16px;
}
.entry-header h3{
	font-size: 14px;
}

/* Alignments */

.alignleft {
	display: inline;
	float: left;
	margin: 0 20px 5px 0;
}

.alignright {
	display: inline;
	float: right;
	margin: 0 0 5px 20px;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 20px auto;
}

/* Text meant only for screen readers */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #e54e53;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/* Clearing */

.clear:before,
.clear:after,
.container:before,
.container:after,
.site-main:before,
.site-main:after,
.menu:before,
.menu:after,
.hentry:before,
.hentry:after,
.product:before,
.product:after,
.entry-content:before,
.entry-content:after,
.entry-magazine:before,
.entry-magazine:after,
.comment-meta:before,
.comment-meta:after,
.comment-content:before,
.comment-content:after,
.nav-links:before,
.nav-links:after,
.gallery:before,
.gallery:after,
.search-form:before,
.search-form:after,
.widget_search:before,
.widget_search:after {
	content: '';
	display: table;
}

.clear:after,
.container:after,
.site-main:after,
.menu:after,
.hentry:after,
.product:after,
.entry-content:after,
.entry-magazine:after,
.comment-meta:after,
.comment-content:after,
.nav-links:after,
.gallery:after,
.search-form:after,
.widget_search:after {
	clear: both;
}

/* Scroll Up Button */
#scroll-up { 
	display: none;
	position: fixed;
	width: 40px;
	height: 40px;
	bottom: 20px;
	right: 20px;
	background-color: #e54e53;
	color: #fff;
	line-height: 40px;
	text-decoration: none;
	text-align: center;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

#scroll-up .ion-angle-up:before {
	font-size: 18px;
}

/* Galleries */

.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.gallery-item {
	display: inline-block;
	padding: 0 10px;
	margin: 0 0 20px 0;
	text-align: center;
	vertical-align: top;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.gallery-item img {
	display: block;
	max-width: 100%;
	height: auto;
	border: none;
}

.gallery-icon img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	border: none;	
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

/* Captions */

.wp-caption {
	margin-bottom: 10px;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0;
}

.wp-caption .wp-caption-text {
	font-size: 13px;
	color: #777;
	font-style: italic;
	padding-top: 5px;
}

.gallery-caption {
	color: #777;
	display: block;
	font-size: 13px;
	font-style: italic;
	padding-top: 5px;
}

/*
 * 04: Header Content
 */
 
.site-header {
	margin: 0;
	padding: 0;
	opacity: 1;
	background-color: #fff;
	-webkit-transition: opacity 0.3s ease-in-out 0s, background 0.3s ease-in-out 0s;
	transition: opacity  0.3s ease-in-out 0s, background 0.3s ease-in-out 0s;
}
.header-top{
    position:relative;
}
#site-branding{
	display:none
}
#mobile-header {
	display: block;
	position: relative;
	height: 50px;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px 5px;
    background-color: #35b3bf;
    text-align: left;
}

#mobile-header a {
	color: #fff;
}

.menu-toggle {
 position: absolute;
    left: 10px;
    top: 5px;
    margin: 0;
    width: 28px;
    height: 40px;
    text-decoration: none;
	z-index: 5;
}

.button-toggle {
    display: block;
    background-color: #fff;
    content: "";
    height: 2px;
    opacity: 1;
    position: absolute;
    transition: opacity 0.3s ease 0s, background 0.3s ease 0s;
    width: 20px;
    z-index: 20;
    left: 0px;
    top: 20px;
}
.button-toggle:before {
    background-color: #fff;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: -6px;
    transform-origin: center center 0;
    transition: transform 0.3s ease 0s, background 0.3s ease 0s;
    width: 20px;
}
.button-toggle:after {
    background-color: #fff;
    bottom: -6px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform-origin: center center 0;
    transition: transform 0.3s ease 0s, background 0.3s ease 0s;
    width: 20px;
}

.mobile-menu-active .button-toggle {
	background-color: transparent !important;
}

.mobile-menu-active .button-toggle:before {
    opacity: 1;
    transform: translate(0px, 6px) rotate(-45deg);
}

.mobile-menu-active .button-toggle:after {
    opacity: 1;
    transform: translate(0px, -6px) rotate(45deg);
}


.mobile-branding{
	position: absolute;
	left: 45px;
	top: 18px;
}

.mobile-sidebar {
	position: fixed;
	top: 0;
	left: 0;
	height: 50px;
	width: 100%;
	overflow: hidden;
    overflow-y: auto;
	padding: 20px 10px;
	background-color: #000;
	opacity: 0.7;
	visibility: hidden;
	-webkit-transition: opacity 0.35s linear 0s, height 0.35s ease-in;
	transition: opacity 0.35s linear 0s, height 0.35s ease-in;
	box-sizing: border-box;
	z-index: 9998;
}

.mobile-navigation {
	display: block;
	float: none;
	margin: 0;
	padding: 0;
	text-align: left;
	font-size: 16px;
}

.mobile-navigation ul,
.mobile-navigation ul ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	background-color: transparent;
    border: 0;
    opacity: 1;
    position: static;
}

.mobile-navigation ul ul {
	background-color: rgba(255,255,255,.1);
}

.mobile-navigation .mobile-menu {
	padding: 0 20px;
	display: block;
	margin: 20px 0;
}

.mobile-navigation .mobile-menu:first-child {
	margin-top: 0;
}

.mobile-navigation li {
	display: block;
	position: relative;
}

.mobile-navigation ul li:before {
	content: none;
}

.mobile-navigation ul ul {
	display: none;
}

.mobile-navigation ul .toggled-on {
	display: block;
}

.mobile-navigation ul a,
.mobile-navigation ul ul a,
.mobile-navigation .woo-cart-link a {
	display: block;
	width: auto;
	padding: 10px 15px;
	height: auto;
	line-height: 1.5;
	color: #fff;
	text-transform: none;
	font-weight: 400;
}

.mobile-navigation ul a,
.mobile-navigation ul li {
	float: none;
}

.mobile-navigation ul a:hover {
	text-decoration: none;
}

.mobile-navigation a {
	border-bottom: 1px solid rgba(255,255,255,.15);
}

.mobile-navigation hr {
	background-color: rgba(255,255,255,0.15);
	margin: 10px 0;
}

.mobile-navigation .home-link {
	float: none;
}

.mobile-navigation .home-link a {
	display: block;
	padding: 10px 15px;
}

.mobile-navigation .search-form {
	padding: 0 15px;
}

.mobile-navigation .search-form label {
	display: inline-block;
	width: 65%;
}

.mobile-navigation input.search-field {
    line-height: 20px;
    padding: 6px;
    width: 100%;
    font-size: 14px;
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.mobile-navigation input.search-submit {
	width: 30%;
    padding: 8px 0;
    line-height: 20px;
    font-size: 14px;
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.main-navigation .sub-menu{
    display:none;
} 

.main-navigation ul a {
    display: block;
    width: auto;
    padding: 10px 15px;
    height: auto;
    color: #fff;
    text-transform: none;
    font-weight: 400;
    font-weight: bold;
}

.toggled-on .main-navigation{
display:block;
position: fixed;
    top: 0;
    left: 0;
    height: 50px;
    width: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 20px 10px;
    background-color: #000;
    opacity: 0.7;
    visibility: hidden;
    -webkit-transition: opacity 0.35s linear 0s, height 0.35s ease-in;
    transition: opacity 0.35s linear 0s, height 0.35s ease-in;
    box-sizing: border-box;
    z-index: 9998;
    top: 50px;
    height: calc(100% - 50px);
    opacity: 1;
    visibility: visible;
}
.toggled-on .main-navigation .main-menu{
        padding: 0 20px;
    display: block;
    margin: 20px 0;
}
.toggled-on .main-navigation .main-menu li{
    display: block;
    position: relative;
}
.toggled-on .main-navigation .main-menu li a{
        display: block;
        width: auto;
        padding: 10px 15px;
        height: auto;
        line-height: 1.5;
        color: #fff;
        text-transform: none;
        font-weight: 400;
}

body.mobile-menu-active {
	overflow: hidden;
}

body.mobile-menu-active:before {
	content: "";
	position: fixed;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.75;
	-webkit-transition: opacity .4s;
	transition: opacity .4s;
	content: none;
	z-index: 9;
}

.mobile-sidebar.toggled-on {
	top: 50px;
	height: calc(100% - 50px);
	opacity: 1;
	visibility: visible;
}

.admin-bar .mobile-sidebar.toggled-on,
.admin-bar body.mobile-menu-active:before {
	top: 96px;
}

.dropdown-toggle {
	height: 40px;
	width: 40px;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	right: 5px;
	text-transform: none;
	background-color: transparent;
	color: #fff;
	border: 0;
	content: "";
	-webkit-border-radius: 0;
	border-radius: 0;
}

.dropdown-toggle:after {
	font-family: 'simple-line-icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	font-size: 14px;
	content: "\72";
	vertical-align: middle;
	padding: 6px 8px;
	border-radius: 4px;
}

.dropdown-toggle.toggled-on:after {
	content: "\73";
}

.dropdown-toggle:focus {
	outline: none;
}

.dropdown-toggle:focus:after {
	background-color: rgba(255,255,255,.2);
}

 .main-navigation{
    display:none;
}
.main-navigation ul .toggled-on {
    /*display: block;*/
}
.toggled-on .main-navigation ul, .toggled-on.sub-menu {
    margin: 0;
    padding: 0;
    list-style-type: none;
    background-color: transparent;
    border: 0;
    opacity: 1;
    position: static;
}

.toggled-on .main-navigation {
    width: 320px;
    left: 0px;
}
.search-top{
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.search-form {
	position: relative;
}
.search-form input[type="search"]:focus {
    box-shadow: 0 0 8px rgb(227 214 141);
    outline: none; 
    transition: box-shadow 0.3s ease-in-out;
}

.search-top .search-form input[type="search"]:focus {
	background: #f4f4f4;
	cursor: text;
	width: 180px;
	text-indent: 0;
}

.search-top .search-form input[type="search"] {
    position: relative;
    height: 28px;
    width: 160px;
    border: 1px solid #eee;
    margin: 0;
    padding: 6px 40px 6px 10px;
    background: #fff;
    -webkit-transition: width 400ms ease, background 400ms ease;
    transition: width 400ms ease, background 400ms ease;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 13px;
    outline: 0;
}

.search-top .search-form label {
	position: relative;
	margin: 0;
	float: right;
}

.search-top .search-form .search-submit {
	width: 20px;
	height: 24px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 4px;
	z-index: 2;
	color: #292824;
    background: white;
}



/*
 * 05: Body Content
 */

.container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.site-content{
    background: #f3f1f1;
    padding-top: 10px;
    padding-bottom: 30px;
}


.wrapper{
	padding:10px; 
}

.block {
    border: 1px solid #eaeaea;
    margin-bottom: 20px;
    padding: 10px;
    background: #FFF;
    position: relative;
    overflow: hidden;
}


/*
 * 06: Header Content
 */

.site-footer {
    background-color: #35b3bf;
    color: #fff;
    padding: 10px 15px;
}

.site-footer a {
	color: #fff;
}

.site-footer a:hover {
	color: #eee;
}

.site-info {
	margin-bottom: 10px;
	text-align: center;
}


.footer-nav ul li{
	display: inline-block;
    margin-right: 12px;
}


/*
 * 07: Widgets 
 */

.blog-content ul.box h3{
	bottom: 10px;
	max-height: 35px;
	left: 5px;
	width: 95%;
}

ul.widget-list li{
    margin-bottom:10px;
}
ul.widget-list h3{
    font-weight: normal;
}

/*
 * 08: Comments
 */

.comments-area {
	padding: 35px 15px;
	background-color: #ffffff;
}

h3.comment-reply-title,
h2.comments-title {
	font-size: 1.125em;
	font-weight: 700;
	margin: 0 0 10px;
}
h4.comments-title{
	padding-bottom: 10px;
    border-bottom: 2px solid #ebebeb;
}
h5.comments-title{
	font-size: 29px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.comment-content {
	font-size: 0.875em;
	color: #555;
	word-wrap: break-word;
}

.comment-list {
    list-style-type: none;
    margin: 20px 0;
    padding: 20px 5px 0px;
}

.comment-list > li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ebebeb;
}

.comment-list > li:last-child {
	margin-bottom: 0;
}

.comment-list .children {
	list-style-type: none;
	margin-left: 20px;
}

.comment-list .children > li {
    margin: 20px 0;
    padding: 0 0 20px 20px;
    border-left: 2px solid #ebebeb;
}

.comment-list .children > li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.comment-list .avatar {
	float: left;
	margin: 0 10px 0 0;
	-webkit-border-radius: 128px;
	border-radius: 128px;
	max-width: 30px;
	height: auto;
}

.comment-list .comment-meta {
	margin-bottom: 10px;
}

.comment-list .comment-metadata {
	font-size: 0.875em;
	color: #999;
}
.comment-list .comment-metadata a {
	color: #999;
}


.comment-content p {
	margin-bottom: 10px;
	line-height: 1.5;
}

.comment-list .comment-author .fn {
	display: inline-block;
	text-align: left;
	font-size: 1.0625rem;
	font-style: normal;
    font-weight: 700;
	color: #333;
	margin: 0;
}

.comment-list .comment-author .says {
	display: none;
}

.comment-list .reply {
	clear: both;
	font-size: 	0.8em;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.form-allowed-tags {
	display: none;
}

.comment-form label {
	display: block;
}

.comment-form .required {
	color: red;
}
#comment {
	padding:8px;
	width:95%
}

.comment-form input[type="submit"]{
}

.comment-respond{
    margin: 20px 0 30px;
    background: #e7e7e7;
    padding: 20px;
}
.comment-reply-title small{
	margin-left: 10px;
}

/*
 * 09: Single Pages
 */
 
/** homepage **/  

.flex-home{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-bottom: 20px;
}

.logo_home, .search_home{
	/* margin-bottom: 5px; */
}

.site-main .search-form, .search_home{
	width: 90%;
}


.logo_home img{
	width:200px
}

.search_home, .btn_home, .logo_home, .hot-dramas{
	 /* margin: 20px 0; */
}


.site-main .search-form input[type="search"]{
    padding: 14px;
    width: 100%;
    background: #ffffff;
    color: #333;
    border: 1px solid #ddd;
    font-size: 17px;
}
.site-main .search-form button[type="submit"]{
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 16px;
	color: #292824;
	background: #ffffff;
}

a.btn_home:hover{
	color:#fff
}

#homepage-content .site-main {
	padding: 20px;
	background: #fff;
	margin: 10px 0;
	}


p.more-link{
        text-align: right;
        margin: 10px 0 0 0;
        
}


/** home updates page **/

.nav-tabs{
    margin: 0 0 2px 5px;
}
.nav-tabs li{
    display: inline-block;
    background: #35b3bf;
    padding: 5px;
    cursor: pointer;
    margin-right: -1px;
}
.nav-tabs li.active{
    background: #FDB813;
}
.nav-tabs li a, .nav-tabs li a:hover{
    color: #FFF;
}

.nav-tabs h2{
    font-size: 13px;
	font-weight: normal;
}

.tab-content > .tab-pane {
	display: none;
}
.tab-content > .active {
	display: block;
}

/** drama detail page **/

.entry-header h1{
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.drama-thumbnail{
    width: 26%;
    float: left;
}
.drama-description{
    float: right;
    width: 74%;
}

.drama-thumbnail a{
	display:block;
	margin-right:10px
}

.drama-description .wrapper{
	border: 1px solid #f1ecec;
	overflow: hidden;
	padding: 10px;
}

.drama-description .entry-header h1 {
    font-size: 30px;
}

.drama-description span{
    font-weight:bold;
}

.drama-description p {
	margin-bottom:10px
}


.trailer{
	    margin-top: 10px;
    position: relative;
    padding-bottom: 70%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.trailer iframe{
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 90%;
}


ul.episode-list li{
    margin: 8px 0;
}
ul.episode-list li:hover, ul.episode-list li:nth-child(even) {
    background: #EDEDED;
}
ul.episode-list li.current a, ul.episode-list li:hover a {/* background: #737373; */color: #d19917;}
ul.episode-list li.current a{/* color: #fff; */}
ul.episode-list .sub {
    float: left;
    color: #FFF;
    display: block;
    padding: 3px 8px;
    background: #C0C0C0;
    font-size: 12px;
    text-transform: uppercase;
}
ul.episode-list .sub.raw {
    background: #FDB813;
}
ul.episode-list .sub.subbed {
    background: #35b3bf;
}
ul.episode-list h3 {float: left;font-weight: normal;margin-left: 5px;font-size: 14px;display:block;}
h3.title a{
    color: #000;
}
h3.title a:hover{
        color: #d19917;
}
.time{
    color: #ccc;
}

ul.episode-list .time{
    float: right;
    padding: 5px;
}

.episode-list .time {
    display: none;
}


/** episode page **/

.meta-cat{
    border-bottom: 1px solid #cfcfcf;
    margin: 10px 0;
    padding: 5px 0 10px;
}

.meta-cat a{
    font-weight: bold;
}

#player-content .entry-header h1{
    color: #FDB813;
    font-size: 18px;
    margin-bottom: 10px;
}

.videoplayer{
	background-color: #000;
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
	padding-bottom: 71.75%;
	margin-bottom: 10px;
	margin-top: 10px;
	z-index: 1000;
}

.videoplayer iframe{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 250px;
}

.show-all{
    position: absolute;
    right: 0;
    top: 5px;
    cursor: pointer;
    color:#207a9e;
}

.serverslist{
    background-position: left center;
    background-repeat:no-repeat;
    position: relative;
    margin: 1px 0;
    text-transform: uppercase;
    padding: 10px 0 10px 34px;
    font-size: 12px;
    background-size: 20px auto;
}
#w-server div:nth-child(2n+1){
        background-color: #eee;
}
#w-server div:hover span, #w-server div.active span {
    background-color: #FDB813;
}
.serverslist.Standard,.serverslist.Cloud9,.serverslist.Hydrax {
background-image: url(images/animeupload.png);

}
.serverslist.Streamtape{
background-image: url(images/streamtape.png);

}
.serverslist.Streamsb, .serverslist.StreamSB{
background-image: url(images/streamsb.png);

}
.serverslist.Mixdrop{
background-image: url(images/mixdrop.png);

}
.serverslist.Doodstream{
background-image: url(images/doodstream.png);

}


.serverslist.XstreamCDN{
background-image: url(images/xstreamcdn.png);

}

.serverslist.Rapidvideo{
    background-image: url(images/rapidvideo.png);

}
.serverslist.Openload{
    background-image: url(images/openload.png);

}

.serverslist.Streamango{
     background-image: url(images/streamango.png);

}
.serverslist.Estream{
    background-image: url(images/estream.png);

}
.serverslist.Mp4upload{
    background-image: url(images/mp4upload.gif);

}
.serverslist.theVideo{
background-image: url(images/thevideo.png);

}

.serverslist.Streamwish{
background-image: url(images/streamwish.png);
}

.serverslist.Mixdrop{
background-image: url(images/mixdrop.png);
}

.serverslist.Filelions{
background-image: url(images/filelions.png);
}

.serverslist span{
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 10px;
    text-align: center;
    line-height: 34px;
    cursor: pointer;
}

.text_above_player h2 {
    font-weight: normal;
    margin-bottom:10px
}
.text_above_player p{
	font-size:14px;
	line-height: 1.4;
}

p.notice{
    color: #FDB813;
    border-bottom: 1px solid #cfcfcf;
    padding-bottom: 10px;
    margin-top: 20px;
    /* font-weight: bold; */
}

.social-buttons{
    z-index:11;
    position: relative;
}

.episode_nav i{
    margin: 2px;
}


.social-buttons li {
    display: inline-block;
    color: #ffffff;
    padding: 4px 5px;
    cursor: pointer;
}

.social-buttons .facebook {
    background: #3B5A98;
}
.social-buttons .twitter {
    background: #00ABEC;
}
.social-buttons .offlight {
    background: #FEA502;
}
.social-buttons .download{
        background: #35b3bf;
        
}
.social-buttons .comment_link{
	    background: #EC1C23;
}
.download a, .comment_link a {
    color:#fff;
}
.social-buttons span {
	display:none
}

.social-buttons .episode_nav{
	    float: right;
}
.episode_nav a{
	color: #ffffff;
	background: #D3D3D3;
	padding: 3px 7px;
	margin-right: -1px;
	display: inline-block;
	letter-spacing: -1px;
}
.episode_nav span{
	    background: #35b3bf;
	    padding: 2px 5px;
	    margin-right: -1px;
	    display: inline-block;
}

#off-light{
    position: fixed;
    z-index: 10;
    opacity: 0.98;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

/** blog article page **/



.blog .entry-header{
	margin:10px 0;
}
.blog .entry-header h1{
 font-size: 26px;
 }
.blog h2, .blog h3, .blog h4{
	margin:20px 0 
}
.featured_image{
	text-align:center
}

.blog p{line-height: 1.6;}

.blog p img{
	margin-bottom:10px
}
.blog{
	margin-bottom: 15px;
	border-bottom:1px solid #dedede;
}
.blog h2{
	font-size:20px
}
.article-footer .tags{
	margin-bottom: 15px;
}

.article-footer .tags li{
	display: inline-block;
    background: #eee;
    padding: 4px 5px;
    margin: 0 10px 10px 0px;
}
.tags li a{
	text-transform: uppercase;
	color: #000;
}
.social-share-title{
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	line-height: 1;
	margin-bottom: 16px;
}
.social-share ul li{
	background-color: #fff;
    border: 3px solid #12bdfd;
    border-image: linear-gradient(90deg,#12bdfd,#ffab50f0) 6;
    padding: 10px 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}
.article-footer{
    margin-bottom: 40px;
}

.entry-meta {
	color: #999;
    font-size: 0.825rem;
	overflow: hidden;
}
.entry-meta .categories, .entry-meta .posted_on, .entry-meta .author{
	display: inline;	    
}
.entry-meta .categories{
	margin-right:15px
}
.entry-meta .author{
	margin-right: 20px;
	float:right
}

.entry-meta .categories a{
	background: #db2ca4;
    padding: 4px 8px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.825rem;
}

.entry-footer {
	color: #aaa;
	font-size: 0.875em;
	margin: 10px 0 0;
}

.entry-content h3{
	margin-bottom:10px;
	line-height: 1.2;
	font-size: 18px;
}

.entry-content h2{
	margin-bottom:10px;
	line-height:1.2;
	font-size:20px
}
.entry-content p{
	margin: 0 0 20px 0;
    line-height: 1.5;
    font-size: 15px;
}

.box-content .block{
	padding:10px 5px
}


/*
 * 10: Archive Pages
 */
 
/** drama archive page **/

.page-header h1 {
    margin-bottom: 20px;
    font-size: 16px;
}
.page-header span {
    color: #207a9e;
}
.page-header h2 span{
	background-color: #fdb813;
	padding: 5px 6px 5px 5px;
	color: #fff;
	font-weight: normal;
}
.page-header{
	margin-bottom:5px
}


#filter{
	background: #d9d9d9;
	border-radius: 5px;
}


.searchandfilter li
{
	display:inline-block;
	padding-right:10px;
    margin: 5px 0;
}

.searchandfilter label
{
	display:block;
}

.searchandfilter ul > li > ul:not(.children)
{
	margin-left:0;
}

.pagination {
	margin: 15px 0;
	float: right;
}

.pagination .nav-links a,
.pagination .nav-links span { 
    display: block;
    float: left;
    margin: 0 5px 5px 0;
    text-align: center;
    color: #777;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #ddd;
    padding: 7px 10px;
}

.pagination .nav-links .current,
.pagination .nav-links .current:hover,
.pagination .nav-links a:hover { 
	border-color: transparent;
	color: #fff;
	background-color: #35b3bf;
}

/** episode archive page **/
ul.box li {
    margin: 5px 4px;
    width: calc(50% - 10px);
    padding-top: 48%;
}

ul.box li{
     position: relative;
     display: inline-block;
     vertical-align: top;
     background: #eee;
     font-family: Helvetica;
     font-size: 12px;
}
ul.box li:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background: rgba(0, 0, 0, 0.61);
    z-index: 4;
}
ul.box .mask{
}
ul.box img{
position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
ul.box h3, ul.box .time{
        position: absolute;
        left: 10px;
        z-index: 4;
        font-weight: normal;
        width: calc(100% - 55px);
}
ul.box h3{
   font-size: 12px;
   color: #FFF;
   bottom: 20px;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   max-height: 28px;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   font-family: Helvetica;
   line-height: 1.2;
}
ul.box .time{
    font-size: 11px;
    color: #D1D1D1;
    bottom: 2px;
}
ul.box .ep{
      font-size: 12px;
    color: #FFF;
    display: block;
    position: absolute;
    bottom: 12px;
    right: -5px;
    z-index: 5;
    padding: 2px 8px;
}
ul.box .ep.sub {
    background:#35b3bf;
}
ul.box .ep.raw {
    background: #FDB813;
}
ul.box .genre{
    padding-top: 8px;
    text-align: center;
    text-transform: none;
    text-shadow: 0 0 2px rgba(0,0,0,0.3);
    font-weight: 500;
    height: auto;
    line-height: normal;
    width: auto;
    position: absolute;
    left: 8px;
    top: 8px;
    background: #528d92;
    color: #fff;
    /* border-radius: 2px; */
    font-size: 12px;
    padding: 4px 5px;
    z-index: 9;
    right: inherit;
}
ul.box .mask{
     position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


/** blog archive page **/

.blog-category h2{
	font-size: 18px;
	line-height: 23px;
	margin-bottom: 10px;
}
.blog-category h2 a{
	color:#333
}

ul.list-thumb li{
    margin: 5px 0 8px;
    background: #fff;
    padding: 15px 0 15px;
    border-bottom: 1px solid #f3f3f3;
}

.post-thumbnail{
	float: left;
	width: 25%;
}
.post-thumbnail img{
     width: 100%;
    height: auto;
    object-fit: cover;
}
.post-details{
    float: right;
    width: 72%;
}

.post-cat{
    margin-bottom: 10px;
}
.post-cat span{
    background: #fdb813;
    padding: 2px;
}
.post-cat ul li {
    margin: 0;
    display: inline;
}

.post-cat a{
      text-transform: uppercase;
      font-weight: bold;
}
.post-info span{
    color: #aba9a9;
    font-size: 14px;
}
.post-info a{
	color:#aba9a9;
}

/** search results page **/

/** author page **/
.author-bio img{
	margin-right:10px;
	float:left;
}
 /*
 * 11: Responsive 
 */
@media only screen and (max-width: 290px){
ul.box h3{
	max-height: 38px;
    bottom: 5px;
    width: calc(100% - 38px);
    left: 5px;	
}
ul.box .time{
	display:none
}
ul.box .ep{
	padding: 1px 2px;
}
	
}	
@media only screen and (min-width: 750px){

ul.box li,.blog-content ul.box li {
     margin: 5px 4px;
    width: calc(24% - 3px);
    padding-top: 30%;
}
.popular-mob .widget-list li{
    width: calc(33% - 10px);
    display: inline-block;
    margin: 2px 5px;
}
.sidebar ul.box li,.blog-content ul.box li {
     margin: 5px 4px;
     width: 100%;
     padding-top: 60%;
}

}

@media screen and (min-width: 970px) {
body{
	background: #fff url(images/bg.jpg) repeat-x;
}
.container{
	max-width: 970px;
	margin: 0 auto;
}


#site-branding {
	display:block;
	height: 73px;
}
.logo_home img {
	width: 300px;
}
.main-navigation{
	display:block
}
#mobile-header {
	display: none;
}
.dropdown-toggle{
	display:none;
}
.main-navbar {
	background-color:#35b3bf;
	z-index: 999;
	height: 44px;
}

.main-menu > li,
.home-link {
	 float: left;
	 position: relative;
	 border-right: 1px solid #d7d3cf;
}

.main-menu > li > a{
	display: block;
	position: relative;
	padding: 11px 16px 13px;
	/* font-weight: 700; */
	color: #fff;
	-webkit-transition: color 0.3s ease-in-out 0s;
	transition: color 0.3s ease-in-out 0s;
}

.main-menu li.current-menu-item a, .main-menu li:hover {
	background: #fdb813;
}

.main-menu ul {
	display: none;
	width: 100%;
	min-width: 160px;
	float: none;
	position: absolute;
	text-align: left;
	opacity:  0;
	list-style-type: none;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 998;
	background: #FFFFFF;
	border: 1px solid rgba(0, 0, 0, 0.15);
	padding: 5px 0;
}
.main-menu ul li {
	position: relative;
}
.main-menu ul li:hover {
	background: #F5F5F5;
}
 .main-navigation ul ul a {
	display: block;
	color: #403c3c;
	font-size: 14px;
	padding: 3px 12px;
}
.main-menu ul a:hover,
.main-menu ul .current-menu-item a,
.main-menu ul .current_page_item a {
	background-color: rgba(255,255,255,0.05);
}
.main-menu ul li.menu-item-has-children > a:before {
	font-family: 'simple-line-icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block;
	content: "\70";
	font-size: 8px;
	position: absolute;
	right: 10px;
	top: 18px;
}
.main-menu > li:hover > ul,
.main-menu > li.focus > ul {
	display: block;
	opacity: 1;
	left: 0;
	top: 43px;
}
.main-menu ul li:hover > ul,
.main-menu ul li.focus > ul {
	display: block;
	opacity: 1;
	left: 100%;
	top: 0;
}

.site-content {
	background: transparent;
}
.wrapper{
	padding:10px 0
}

.search_home{
	width: 60%;
}


#primary {
	float: left;
	width: 77.4%;
}

#secondary {
	float: right;
	width: 21.6%;
}

.site-info {
	float: left;
}


.footer-nav{
	text-align: right;
	float: right;
}

.comment-list .children {
	margin-left: 30px;
}

ul.box li{
	padding-top: 24%;
	width: calc(25% - 11px);
}
ul.box h3{
	bottom: 22px
}
.popular-mob ul.widget-list li{
	width: calc(33% - 10px);
	display: inline-block;
	margin: 2px 5px;
}
.comments-area {
	background: #f5f5f5;
}
h4.comments-title {
	border-bottom: 2px solid #333;
	font-size: 18px;
}
.social-buttons i{
	display:none
}
.social-buttons span{
	display:inline
}
.episode_nav i{
	display:inline-block
}
.episode_nav span{
	margin-right:2px
}
.social-buttons li:hover span, .episode_nav a:hover{
    text-shadow: 1px 0 2px #000;
}
.episode_nav:hover span{
		text-shadow:none!important
	}
}

.below_video{
	margin-bottom:10px
}

.error-404 .search-form, .search-page .search-form{
	margin-bottom:25px
}
.error-404 .entry-content h2, .search-page .entry-content h2 {
	font-size: 1em;
    margin-bottom: 0px;
}

.error-404 ul.widget-list h3 {
	font-size:1em
}

/*.drop-shadow(0px, 0px, 2px,#3A3A3A);*/
/*.no-shadow();*/
/*.gradient-background(#3A3A3A, #4B4B4B)*/
.mb-button {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
  /*Reset*/
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  /* For IE 8 */
  text-shadow: none;
  text-transform: none;
  -webkit-font-smoothing: subpixel-antialiased !important;
  /*Default font size -- All Heights, Padding, etc. based off this height*/
  font-size: 17px;
  /*Default font family*/
  font-family: 'Open Sans';
  background: #2bc470;
  color: #FFF !important;
  text-decoration: none !important;
  /*MIGHT FIX SOMETHING IN BROWSER TEST*/
  /*Default .2s transition for all styles*/
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  /*Default Style is slight rounded corners*/
  -webkit-border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  border-radius: 0.25em;
  /*Default cursor = pointer over button*/
  cursor: pointer;
  /*disabled helper class*/
  /*Default Padding*/
  padding: 1em 2em;
  /*Default Line Height*/
  line-height: 1.5;
  /*Button Sizes*/
  /*Corner Rounding*/
  /*Font Weight and Spacing*/
}
.mb-button a {
  color: #FFF;
}
.mb-button.mb-disabled {
  cursor: pointer;
  opacity: .35;
}
.mb-button.mb-size-micro {
  font-size: 10px;
  padding: .5em 1.2em;
}
.mb-button.mb-size-tiny {
  font-size: 11px;
  padding: .75em 1.4em;
}
.mb-button.mb-size-small {
  font-size: 14px;
  padding: .75em 1.70em;
}
.mb-button.mb-size-large {
  font-size: 21px;
  padding: 1em 2.25em;
}
.mb-button.mb-size-jumbo {
  font-size: 28px;
  padding: 1em 2.75em;
}
.mb-button.full-width {
  width: 100%;
  padding: 0;
}
.mb-button.mb-style-flat {
  /*font-weight:300;
		letter-spacing:.10em;*/
}
.mb-button.mb-style-flat:hover {
  background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04));
  background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04));
  background-image: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04));
  background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04));
}
.mb-button.mb-style-traditional {
  background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
  background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
  background-image: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
  background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.25));
}
.mb-button.mb-style-traditional:hover {
  background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
  background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
  background-image: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
  background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
}
.mb-button.mb-style-traditional:active {
  background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
  background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
  background-image: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
  background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
}
.mb-button.mb-style-reversed {
  border: 0.1em solid rgba(0, 0, 0, 0.15);
  background-image: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 10%, rgba(0, 0, 0, 0.05));
  background-image: -moz-linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 10%, rgba(0, 0, 0, 0.05));
  background-image: -ms-linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 10%, rgba(0, 0, 0, 0.05));
  background-image: -o-linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 10%, rgba(0, 0, 0, 0.05));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 10%, rgba(0, 0, 0, 0.05));
}
.mb-button.mb-style-reversed:hover {
  background-image: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 10%, rgba(0, 0, 0, 0.08));
  background-image: -moz-linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 10%, rgba(0, 0, 0, 0.08));
  background-image: -ms-linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 10%, rgba(0, 0, 0, 0.08));
  background-image: -o-linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 10%, rgba(0, 0, 0, 0.08));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0) 10%, rgba(0, 0, 0, 0.08));
}
.mb-button.mb-style-reversed:active {
  background-image: -webkit-linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 10%, rgba(0, 0, 0, 0.05));
  background-image: -moz-linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 10%, rgba(0, 0, 0, 0.05));
  background-image: -ms-linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 10%, rgba(0, 0, 0, 0.05));
  background-image: -o-linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 10%, rgba(0, 0, 0, 0.05));
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 10%, rgba(0, 0, 0, 0.05));
}
.mb-button.mb-style-bordered {
  border: 0.2em solid rgba(0, 0, 0, 0.05);
  border-top: 0.1em solid rgba(255, 255, 255, 0.1);
}
.mb-button.mb-style-bordered:hover {
  background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  background-image: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
}
.mb-button.mb-style-bordered:active {
  background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  background-image: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}
.mb-button.mb-style-glass {
  /*font-weight:300;
		letter-spacing:.05em;*/
  background-image: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.06) 51%, rgba(0, 0, 0, 0.02));
  background-image: -moz-linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.06) 51%, rgba(0, 0, 0, 0.02));
  background-image: -ms-linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.06) 51%, rgba(0, 0, 0, 0.02));
  background-image: -o-linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.06) 51%, rgba(0, 0, 0, 0.02));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.06) 51%, rgba(0, 0, 0, 0.02));
}
.mb-button.mb-style-glass:hover {
  background-image: -webkit-linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.04) 51%, rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.04) 51%, rgba(0, 0, 0, 0));
  background-image: -ms-linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.04) 51%, rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.04) 51%, rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.04) 51%, rgba(0, 0, 0, 0));
}
.mb-button.mb-style-raised {
  /*font-weight:700;
		letter-spacing:.15em;*/
  border-bottom: 0.2em solid rgba(0, 0, 0, 0.25);
}
.mb-button.mb-style-raised:hover {
  background-image: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  background-image: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  background-image: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  background-image: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
}
.mb-button.mb-corners-default {
  -webkit-border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  border-radius: 0.25em;
}
.mb-button.mb-corners-straight {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.mb-button.mb-corners-pill {
  -webkit-border-radius: 3em;
  -moz-border-radius: 3em;
  border-radius: 3em;
}
.mb-button.mb-text-style-default {
  font-weight: 400;
  letter-spacing: 0;
}
.mb-button.mb-text-style-light {
  font-weight: 300;
  letter-spacing: .05em;
}
.mb-button.mb-text-style-heavy {
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.flex-home{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-bottom: 20px;
}

.logo_home, .search_home{
	/* margin-bottom: 5px; */
}

.site-main .search-form, .search_home{
	width: 90%;
}


.logo_home img{
	width:200px
}

.search_home, .btn_home, .logo_home, .hot-dramas{
	 /* margin: 20px 0; */
}




.logo_home img{
	width:200px
}

.search_home, .btn_home, .logo_home, .heading_home{
	 text-align: center;
}

.logo_home {margin: 40px auto 10px;}

.search_home{
	margin: 20px auto 15px;
}

.search_home .search{
	display: flex;
    justify-content: center;
}

.heading_home{
	margin-bottom: 50px;
}
.heading_home h1{
	font-size: 15px;
    font-weight: normal;
}
.btn_home{
	margin-bottom:20px
}
.btn_home a{
background: linear-gradient(-30deg, #0b3d3d 50%, #082b2b 50%);
	padding: 20px 30px;
	margin: 12px;
	display: inline-block;
	-webkit-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	overflow: hidden;
	color: #d4f7f7;
	font-size: 17px;
	letter-spacing: 2.5px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.btn_home a::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #85adad;
	opacity: 0;
	-webkit-transition: .2s opacity ease-in-out;
	transition: .2s opacity ease-in-out;
}

.btn_home a:hover::before {
	opacity: 0.2;
}

.btn_home a span {
	position: absolute;
}

.btn_home a span:nth-child(1) {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 3px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(8, 43, 43, 0)), to(#26d9d9));
	background: linear-gradient(to left, rgba(8, 43, 43, 0), #26d9d9);
	-webkit-animation: 2s animateTop linear infinite;
	animation: 2s animateTop linear infinite;
}


.btn_home a span {
	position: absolute;
	}

	.btn_home a span:nth-child(1) {
		top: 0px;
		left: 0px;
		width: 100%;
		height: 3px;
		background: -webkit-gradient(linear, right top, left top, from(rgba(8, 43, 43, 0)), to(#26d9d9));
		background: linear-gradient(to left, rgba(8, 43, 43, 0), #26d9d9);
		-webkit-animation: 2s animateTop linear infinite;
		animation: 2s animateTop linear infinite;
	}

@keyframes animateTop {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

.btn_home a span:nth-child(2) {
	top: 0px;
	right: 0px;
	height: 100%;
	width: 3px;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 43, 43, 0)), to(#26d9d9));
	background: linear-gradient(to top, rgba(8, 43, 43, 0), #26d9d9);
	-webkit-animation: 2s animateRight linear -1s infinite;
	animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

.btn_home a span:nth-child(3) {
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 3px;
	background: -webkit-gradient(linear, left top, right top, from(rgba(8, 43, 43, 0)), to(#26d9d9));
	background: linear-gradient(to right, rgba(8, 43, 43, 0), #26d9d9);
	-webkit-animation: 2s animateBottom linear infinite;
	animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

.btn_home a span:nth-child(4) {
	top: 0px;
	left: 0px;
	height: 100%;
	width: 3px;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 43, 43, 0)), to(#26d9d9));
	background: linear-gradient(to bottom, rgba(8, 43, 43, 0), #26d9d9);
	-webkit-animation: 2s animateLeft linear -1s infinite;
	animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	100% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}
.search_home select{
	display:none
}
.search_home input{
    width: 500px;
    height: 50px;
    border: 1px solid #eee;
    font-size: 15px;
    padding: 5px 10px;
}
.search_home button{
	padding: 10px 13px;
}
.search_home .search-form{
	display: flex;
    justify-content: center;
}
.search_home select{
	display:none
}
.search_home input{
    width: 500px;
    height: 50px;
    border: 1px solid #eee;
    font-size: 15px;
    padding: 5px 10px;
    float: left;
}
.search_home button{
	padding: 8px 18px;
	float:left;
	background: #FDB813;
}

.title_home{
	margin-bottom: 50px;
 text-align: center;
}
.title_home h1{
	font-size: 15px;
    font-weight: normal;
}
.homepage{
	    padding: 20px 15px;
    background: #fff;
}
.homepage ul{
	padding-left: 30px;
    line-height: 25px;
    margin-bottom: 20px;
}
.homepage h2{
	    font-size: 22px;
    margin-bottom: 20px;
}
.homepage h3{
	font-size:18px;
margin-bottom:20px}
.homepage ul li{
	list-style: inherit;
}
	