/*
Theme Name: AJMSekai
Version: 1.0.2
Theme URI: https://donghuanosekai.com/
Author: Stcodes
Author URI: https://ajaimotech.com.br/
Text Domain: donghuanosekai
Description: 
License: License Limited
License URI: https://ajaimotech.com.br/license-limited/
Tags: theme-options, one-column, two-columns,  right-sidebar, custom-header, custom-menu, full-width-template
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    list-style:none;
    outline:0;
}

a, abbr, acronym, address, applet, b, big, blockquote, body, caption, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, var {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: 0 0;
}

h1, h2 {
    font-weight: 700;
    font-size: 1em;
    margin: 0;
}
h1, h2, h3, h4, h5, h6, a {
    font-family: 'Roboto', sans-serif !important;
    font-weight: normal;
}
a:active, a:focus {
  outline: 0!important;
  -moz-outline-style: none!important;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
    outline:0;
}

blockquote, q {
    quotes: none;
    outline:0;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
    outline:0;
}

button {
    background: transparent;
    border-radius: 0;
    border: 0;
    padding: 0;

    -webkit-appearance: none;
    -webkit-border-radius: 0;

    user-select: none;
    outline:0;
}

button:focus {
    outline: 0 none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.clear{
    clear:both
}

.none {
    display: none!important;
}

input, textarea, select {
    outline: 0;
}

input::placeholder {
    color: var(--branco);
}

a:focus {
    outline: 0;
}

body:not(.wp-customizer):not(.vc_editor) #wpbody-content{
    outline: 0;
}

body:not{
    outline: 0;
}

a:-webkit-any-link:active {
    outline: 0;
}

a, button {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    outline:0;
}

*, ::after, ::before {
    box-sizing: border-box;
}

a {
    color: var(--secundaria);
    text-decoration: none;
}

.ajm-relative {
    position: relative;
}

/* --- Grid Display --- */
.ajm-grid {
    display: grid;
}
.ajm-inline-grid {
    display: inline-grid;
}

/* --- Columns (1 a 12) --- */
.ajm-grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.ajm-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.ajm-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.ajm-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.ajm-grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.ajm-grid-cols-6 { grid-template-columns: repeat(6, 1fr); }
.ajm-grid-cols-7 { grid-template-columns: repeat(7, 1fr); }
.ajm-grid-cols-8 { grid-template-columns: repeat(8, 1fr); }
.ajm-grid-cols-9 { grid-template-columns: repeat(9, 1fr); }
.ajm-grid-cols-10 { grid-template-columns: repeat(10, 1fr); }
.ajm-grid-cols-11 { grid-template-columns: repeat(11, 1fr); }
.ajm-grid-cols-12 { grid-template-columns: repeat(12, 1fr); }

/* --- Gap --- */
.ajm-gap-0 { gap: 0; }
.ajm-gap-5 { gap: 5px; }
.ajm-gap-10 { gap: 10px; }
.ajm-gap-15 { gap: 15px; }
.ajm-gap-20 { gap: 20px; }
.ajm-gap-30 { gap: 30px; }

/* --- Row Gap / Column Gap --- */
.ajm-row-gap-10 { row-gap: 10px; }
.ajm-col-gap-10 { column-gap: 10px; }

/* --- Auto Fit / Auto Fill --- */
.ajm-grid-auto-fit-150 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.ajm-grid-auto-fill-150 {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.ajm-grid-sidebar {
    grid-template-columns: 1fr 450px;
}

/* --- Align Items --- */
.ajm-items-start { align-items: start; }
.ajm-items-center { align-items: center; }
.ajm-items-end { align-items: end; }

/* --- Justify Items --- */
.ajm-justify-items-start { justify-items: start; }
.ajm-justify-items-center { justify-items: center; }
.ajm-justify-items-end { justify-items: end; }

/* --- Place Content --- */
.ajm-place-center { place-items: center; }

/* --- Display --- */
.ajm-flex {
    display: flex;
}
.ajm-inline-flex {
    display: inline-flex;
}

/* --- Direction --- */
.ajm-flex-row {
    flex-direction: row;
}
.ajm-flex-column {
    flex-direction: column;
}

/* --- Wrap --- */
.ajm-wrap {
    flex-wrap: wrap;
}
.ajm-nowrap {
    flex-wrap: nowrap;
}

/* --- Justify Content --- */
.ajm-justify-start {
    justify-content: flex-start;
}
.ajm-justify-center {
    justify-content: center;
}
.ajm-justify-end {
    justify-content: flex-end;
}
.ajm-space-between {
    justify-content: space-between;
}
.ajm-space-around {
    justify-content: space-around;
}
.ajm-space-evenly {
    justify-content: space-evenly;
}

/* --- Align Items --- */
.ajm-items-start {
    align-items: flex-start;
}
.ajm-items-center {
    align-items: center;
}
.ajm-items-end {
    align-items: flex-end;
}

/* --- Gap --- */
.ajm-gap-5 {
    gap: 5px;
}
.ajm-gap-10 {
    gap: 10px;
}
.ajm-gap-15 {
    gap: 15px;
}
.ajm-gap-20 {
    gap: 20px;
}

/* Margin */
/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .25rem !important; }
.mt-2 { margin-top: .5rem !important; }
.mt-3 { margin-top: .75rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-7 { margin-top: 1.75rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mt-9 { margin-top: 2.25rem !important; }
.mt-10 { margin-top: 2.5rem !important; }

/* Margin Right */
.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: .25rem !important; }
.mr-2 { margin-right: .5rem !important; }
.mr-3 { margin-right: .75rem !important; }
.mr-4 { margin-right: 1rem !important; }
.mr-5 { margin-right: 1.25rem !important; }
.mr-6 { margin-right: 1.5rem !important; }
.mr-7 { margin-right: 1.75rem !important; }
.mr-8 { margin-right: 2rem !important; }
.mr-9 { margin-right: 2.25rem !important; }
.mr-10 { margin-right: 2.5rem !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: .25rem !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: .75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-7 { margin-bottom: 1.75rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.mb-9 { margin-bottom: 2.25rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }

/* Margin Left */
.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: .25rem !important; }
.ml-2 { margin-left: .5rem !important; }
.ml-3 { margin-left: .75rem !important; }
.ml-4 { margin-left: 1rem !important; }
.ml-5 { margin-left: 1.25rem !important; }
.ml-6 { margin-left: 1.5rem !important; }
.ml-7 { margin-left: 1.75rem !important; }
.ml-8 { margin-left: 2rem !important; }
.ml-9 { margin-left: 2.25rem !important; }
.ml-10 { margin-left: 2.5rem !important; }

/* Padding Top */
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: .25rem !important; }
.pt-2 { padding-top: .5rem !important; }
.pt-3 { padding-top: .75rem !important; }
.pt-4 { padding-top: 1rem !important; }
.pt-5 { padding-top: 1.25rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.pt-7 { padding-top: 1.75rem !important; }
.pt-8 { padding-top: 2rem !important; }
.pt-9 { padding-top: 2.25rem !important; }
.pt-10 { padding-top: 2.5rem !important; }

/* Padding Right */
.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: .25rem !important; }
.pr-2 { padding-right: .5rem !important; }
.pr-3 { padding-right: .75rem !important; }
.pr-4 { padding-right: 1rem !important; }
.pr-5 { padding-right: 1.25rem !important; }
.pr-6 { padding-right: 1.5rem !important; }
.pr-7 { padding-right: 1.75rem !important; }
.pr-8 { padding-right: 2rem !important; }
.pr-9 { padding-right: 2.25rem !important; }
.pr-10 { padding-right: 2.5rem !important; }

/* Padding Bottom */
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: .25rem !important; }
.pb-2 { padding-bottom: .5rem !important; }
.pb-3 { padding-bottom: .75rem !important; }
.pb-4 { padding-bottom: 1rem !important; }
.pb-5 { padding-bottom: 1.25rem !important; }
.pb-6 { padding-bottom: 1.5rem !important; }
.pb-7 { padding-bottom: 1.75rem !important; }
.pb-8 { padding-bottom: 2rem !important; }
.pb-9 { padding-bottom: 2.25rem !important; }
.pb-10 { padding-bottom: 2.5rem !important; }

/* Padding Left */
.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: .25rem !important; }
.pl-2 { padding-left: .5rem !important; }
.pl-3 { padding-left: .75rem !important; }
.pl-4 { padding-left: 1rem !important; }
.pl-5 { padding-left: 1.25rem !important; }
.pl-6 { padding-left: 1.5rem !important; }
.pl-7 { padding-left: 1.75rem !important; }
.pl-8 { padding-left: 2rem !important; }
.pl-9 { padding-left: 2.25rem !important; }
.pl-10 { padding-left: 2.5rem !important; }

.m-auto { margin: auto !important; }

.mt-auto, .my-auto { margin-top: auto !important; }
.mr-auto, .mx-auto { margin-right: auto !important; }
.mb-auto, .my-auto { margin-bottom: auto !important; }
.ml-auto, .mx-auto { margin-left: auto !important; }

@media (min-width: 768px) {
  .m-md-3 { margin: 1rem !important; }
  .px-md-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .mt-md-auto { margin-top: auto !important; }
}

:root {
  --btn-font-family: 'Poppins', sans-serif;
  --btn-font-weight: 400;
  --body-color: #ffffff;
  --btn-padding-y: .375rem;
  --btn-padding-x: .75rem;
  --btn-font-size: 1rem;
  --btn-line-height: 1.5;
  --btn-border-radius: .375rem;
  --btn-border-width: 1px;
  --btn-transition: all .15s ease-in-out;
  /* Button – Large */
  --btn-padding-y-lg: 0.75rem;
  --btn-padding-x-lg: 1.5rem;
  --btn-font-size-lg: 1.125rem;
  --btn-line-height-lg: 1.5;
  --btn-border-radius-lg: 0.5rem;
  /* Button – Small */
  --btn-padding-y-sm: 0.25rem;
  --btn-padding-x-sm: 0.75rem;
  --btn-font-size-sm: 0.875rem;
  --btn-line-height-sm: 1.25;
  --btn-border-radius-sm: 0.25rem;
}

.highlight {
    color: #ff2424;
}

/* Base styles */

.btn, button {
    font-weight: 400;
    font-size: 16px;
    padding: .5rem 1rem;
}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control-textarea {
    max-width: 100%;
    min-width: 100%;
}

textarea.form-control {
    height: auto;
}

.btn {
  display: inline-block;
  font-family: var(--btn-font-family);
  font-weight: var(--btn-font-weight);
  color: var(--body-color);
  text-align: center;
  white-space: var(--btn-white-space);
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: var(--btn-border-width) solid transparent;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  font-size: var(--btn-font-size);
  line-height: var(--btn-line-height);
  border-radius: var(--btn-border-radius);
  transition: var(--btn-transition);
}

.btn:hover {
  color: var(--body-color);
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: var(--btn-focus-box-shadow);
}

.btn.disabled,
.btn:disabled {
  opacity: var(--btn-disabled-opacity);
  box-shadow: none;
}

/* Active state */
.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
  box-shadow: var(--btn-active-box-shadow);
}

.btn:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active:focus {
  box-shadow: var(--btn-focus-box-shadow), var(--btn-active-box-shadow);
}

/* Disable clicks on <a> */
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

/* Link button */

.btn-link {
  font-weight: normal;
  color: var(--link-color);
  text-decoration: var(--link-decoration);
}

.btn-link:hover {
  color: var(--link-hover-color);
  text-decoration: var(--link-hover-decoration);
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: var(--link-hover-decoration);
  box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: var(--btn-link-disabled-color);
  pointer-events: none;
}

/* Sizes */

.btn-lg {
  padding: var(--btn-padding-y-lg) var(--btn-padding-x-lg);
  font-size: var(--btn-font-size-lg);
  line-height: var(--btn-line-height-lg);
  border-radius: var(--btn-border-radius-lg);
}

.btn-sm {
  padding: var(--btn-padding-y-sm) var(--btn-padding-x-sm);
  font-size: var(--btn-font-size-sm);
  line-height: var(--btn-line-height-sm);
  border-radius: var(--btn-border-radius-sm);
}

/* Block button */

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: var(--btn-block-spacing-y);
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.btn-radius {
    border-radius: 30px
}

.btn-focus,.btn-primary,.btn-tab.active {
    background: #ffc017 !important;
    color: #111!important;
    border-color: #ffc017 !important;
    box-shadow: none!important
}

.btn-focus:hover,.btn-primary:hover,.btn-tab.active:hover {
    background: #ffcc44!important;
    border-color: #ffcc44!important;
}

.btn-secondary,.btn-tab {
    background: #56565b!important;
    border-color: #56565b!important;
    color: #fff
}

.btn-secondary:hover,.btn-tab:hover {
    background: #6a6a71!important;
    border-color: #6a6a71!important
}

.btn-blank {
    background: 0 0;
    color: #aaa
}

.btn-blank:hover {
    background: rgba(255,255,255,.1);
    color: #fff
}

.btn-tab {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px
}

.btn-light {
    background: #fff;
    border-color: #fff;
    color: #111!important
}

.btn-trans {
    background: 0 0!important;
    color: #fff!important
}

.btn-clear {
    padding: 0!important;
    background: 0 0!important;
    box-shadow: none!important;
    color: #fff!important;
    opacity: .5
}

.btn-clear:hover {
    opacity: .8
}

.sbtn-sm {
    padding: .4rem .8rem;
    font-size: 13px;
    border-radius: .3rem
}

.sbtn {
    padding: .6rem 1rem;
    font-size: 14px;
    border-radius: .4rem
}

.btn-xs {
    font-size: 12px;
    padding: 5px 8px;
    line-height: 1em
}

.btn-xs i {
    font-size: 12px
}

.btn-rating {
    position: relative
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.3);
    display: inline-block;
    margin: 3px 6px
}

@import url('https://fonts.googleapis.com/css2?family=Finlandica:ital,wght@0,400..700;1,400..700&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Roboto',"Poppins","Finlandica", sans-serif;
    background: #020405;
    color: #eee;
}

.is-fixed {
    padding-top: 70px;
}

.row{
	display: flex;
	flex-wrap: wrap;
}

.ajm-main-header {
    position: relative;
    display: flex;
    width: 100%;
    height: 70px;
    align-items: center;
    z-index: 50;
    background: rgb(13 14 15 / 81%);
}

.is-front-page .ajm-main-header,
.is-donghua-single .ajm-main-header {
    background: linear-gradient(0deg, #00000000 0, rgba(36, 36, 40, 0) 2%, #000000e0 100%);
}

.is-fixed .ajm-main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 102;
    background: rgb(13 14 15 / 81%);
    backdrop-filter: blur(10px);
}

.ajm-header-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ajm-header-right {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.ajm-header-nav > ul {
    display: flex;
    gap: 20px;
}

.screentext {
    border: 0;
    clip-path:inset(50%);
    height:1px;
    margin:-1px;
    overflow:hidden;
    padding:0;
    position:absolute;
    width:1px;
    word-wrap:normal!important
}

.ajm-header-nav > ul li {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
}

.ajm-header-nav > ul li a {
    font-weight: 300;
    color: #fff;
}

.ajm-header-nav > ul li a:hover {
    color: #ff0506;
}

.ajm-search {
    position: relative;
    overflow: hidden;
    width: 250px;
    height: 45px;
    padding: 10px;
    border: 1px solid #eeeeee14;
    border-radius: 50px;
}

.ajm-search input[type="text"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    background: transparent;
    border: 0;
    color: #979797;
}

.ajm-search button {
    position: absolute;
    right: 15px;
    top: 10px;
    background: #2e2e2e;
    color: #fff;
    border-radius: 30px;
    width: 25px;
    height: 25px;
}

.ajm-user-menu {
    position: absolute;
    top: 65px;
    right: 0;
    width: 250px;
    background: #141719;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding: 8px 0 15px;
    display: none;
}

.ajm-logo img {
    width: 100px;
    height: 55px;
    object-fit: contain;
}

.menu-user .menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    color: #fff;
    transition: background 0.15s ease;
}

.menu-user .menu-item:hover {
    background: #ffffff14;
}

.menu-user .menu-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.menu-user hr {
    border: 0;
    border-top: 1px solid #e1e1e10d;
    margin: 5px 0;
}

.menu-user .icon {
    font-size: 16px;
    color: #ef0000;
}

.menu-user .sair {
    color: #d93025;
}

.menu-user .sair .icon {
    color: #d93025;
}

.menu-user .menu-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.menu-user .menu-item:after {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    margin-left: auto;
}

.menu-user .menu-item.sair:after {
    content: '';
}

.ajm-container-user {
    position: relative;
    margin-left: 30px;
}

.ajm-container-user .avatar-user {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 60px;
    overflow: hidden;
}

.ajm-container-user .avatar-user img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ajm-align-container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
}

.ajm-message-pop {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0d1114;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 30;
}

.ajm-message-pop .ms-suspenso {
    position: absolute;
    bottom: 16px;
    left: 20px;
    padding: 2px 8px;
    font-size: 13px;
    background: #ff0406;
    border-radius: 5px;
    text-transform: uppercase;
}

.ajm-message-pop .container {
    padding: 5px 25px;
    padding-left: 92px;
    font-size: 14px;
    overflow: hidden;
}

.ajm-message-pop .container p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: -10px;
}

.ajm-featured {
    margin-top: -100px;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination {
    bottom: 20px;
    top: auto;
    right: 20px;
    left: auto;
    width: 50%;
    text-align: right;
}

.swiper-pagination-bullet {
    width: 15px;
    height: 4px;
    margin: 3px;
    display: inline-block;
    border-radius: 0;
    opacity: 1;
    background: #fff;
    vertical-align: middle;
    box-shadow: 0 0 3px rgba(0, 0, 0, .5);
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #ff0406;
}

.swiper-container-horizontal>.swiper-pagination .swiper-pagination-bullet {
    margin: 5px;
}

.ajm-slider {
    background: 0 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
    display: block;
    padding-right: 0;
    width: 100%;
    padding-bottom: 500px;
    padding-top: 100px;
    margin-bottom: 30px;
}

.ajm-slider .swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.featured-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ajm-featured-item {
    overflow: hidden;
    background: #020405;
}

.ajm-featured-item .featured-thumb {
    position: absolute;
    top: 0;
    left: 30%;
    right: 0;
    bottom: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(270deg, transparent 0, rgb(36, 36, 40) 30%, rgb(36, 36, 40) 70%, transparent);
    mask-image: linear-gradient(270deg, transparent 0, rgb(36, 36, 40) 30%, rgb(36, 36, 40) 70%, transparent);
}

.ajm-featured-item .featured-thumb img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: blur(0px);
}

.ajm-featured-item .featured-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 800px;
    padding: 30px 0;
}

.ajm-featured-item .featured-overlay {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #242428;
    background: -moz-linear-gradient(0deg,#242428 0,rgba(36,36,40,0) 50%,#242428 100%);
    background: -webkit-linear-gradient(0deg, #242428 0, rgba(36, 36, 40, 0) 50%, #242428 100%);
    background: linear-gradient(0deg, #020405 0, rgba(36, 36, 40, 0) 50%, #0d1114 100%);
    z-index: 2;
}

.mr-1, .mx-1 {
    margin-right: .25rem !important;
}

.ajm-featured-item .featured-info .desi-sub-text {
    font-size: 18px;
    line-height: 1.3em;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ff2424;
}

.ajm-featured-item .featured-info .desi-head-title {
    font-size: 3em;
    line-height: 1.3em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ajm-featured-item .featured-info .sc-detail {
    font-size: 1em;
    font-weight: 300;
    margin-bottom: .75rem;
}

.ajm-featured-item .featured-info .scd-item {
    margin-bottom: 5px;
    margin-right: 15px;
    display: inline-block;
    overflow: hidden;
}

.ajm-featured-item .featured-info .scd-item i {
    font-size: .8em;
    position: relative;
    top: -1.8px;
}

.ajm-featured-item .featured-info .desi-description {
    font-size: .95em;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ajm-dstlanc {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
}

.more-btn > i {
    color: #ff0406;
}

.more-btn:hover {
    color: #ff0405;
}

.more-btn:hover > i {
    color: #fff;
}

.featured-card {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.featured-card .card-thumb {
    position: relative;
    width: 100%;
    padding-top: 67.66%;
    overflow: hidden;
    box-shadow: 0 0 10px 0px rgb(0 0 0 / 20%);
    transition: .5s ease-in;
}

.featured-card .card-thumb.poster-style {
    padding-top: 127.66%;
}

.featured-detail {
    color: #aaa;
    font-size: .9em;
    margin-top: .85rem;
}

.featured-name {
    font-size: 1em;
    line-height: 1.3em;
    margin: 0;
    font-weight: 500;
    margin-bottom: .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-name a {
    color: #fff;
    font-weight: 300;
}

.ajm-home-continue__episode {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255,255,255,.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ajm-home-progress {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 9px;
    background: rgba(255,255,255,.12);
    overflow: hidden;
}

.ajm-home-progress i {
    display: block;
    width: 0;
    height: 100%;
    background: #ff0506;
    transition: width .35s ease;
}

.ajm-home-continue__percent {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    color: #828282;
}

.featured-infor {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-item {
    white-space: nowrap;
    font-weight: 300;
}

.badge-left {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    background: #ff0405;
    padding: 3px 8px;
    border-radius: 30px;
    z-index: 2;
}

.ribbon-right {
    position: absolute;
    top: 6%;
    right: -40%;
    line-height: normal;
    color: #000;
    text-transform: uppercase;
    z-index: 15;
    padding: 5px 0;
    font-size: 9px;
    width: 100%;
    text-align: center;
    background: #ffc017;
    -ms-transform: rotate(29deg);
    -webkit-transform: rotate(29deg);
    transform: rotate(37deg);
}

.featured-card .card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease-in;
}

.featured-card .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 2;
}

.featured-card .card-info .card-title {
    font-size: 14px;
}

.featured-card .card-info .card-episode {
    font-size: 12px;
}

/* Estado inicial */

.ajm-featured-item .featured-info {
    opacity: 0;
    transform: translateX(70px);

    transition:
        opacity .55s ease,
        transform .75s cubic-bezier(.22, 1, .36, 1);
}


/* Slide ativo */

.ajm-featured-item.ajm-slide-active .featured-info {
    opacity: 1;
    transform: translateX(0);
}


/* Slide saindo */

.ajm-featured-item.ajm-slide-leaving .featured-info {
    opacity: 0;
    transform: translateX(-70px);
}

.ajm-featured-item .featured-thumb {
    transform: translateX(2%);
    transition:
        transform .9s cubic-bezier(.22, 1, .36, 1);
}

.ajm-featured-item.ajm-slide-active .featured-thumb {
    transform: translateX(0);
}

.ajm-featured-item.ajm-slide-leaving .featured-thumb {
    transform: translateX(-8%);
}

.ajm-featured-item .featured-info {
    opacity: 0;
    transform: translateX(90px);

    transition:
        opacity .5s ease,
        transform .75s cubic-bezier(.22, 1, .36, 1);
}

.ajm-featured-item.ajm-slide-active .featured-info {
    opacity: 1;
    transform: translateX(0);
}

.ajm-featured-item.ajm-slide-leaving .featured-info {
    opacity: 0;
    transform: translateX(-50px);
}

.card-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 93%) 100%);
    transition: .2s all ease-in-out;
}

.featured-card .play-btn {
    opacity: .2;
    visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    border: 2px solid #ffffff40;
    height: 50px;
    z-index: 6;
    width: 50px;
    line-height: 60px;
    background: #ffffff40;
    color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    position: absolute;
    top: 36%;
    left: 45%;
    text-transform: uppercase;
}

.featured-card .play-btn svg {
    display: block;
    margin-top: 0;
    width: 30px;
    height: 30px;
}

.featured-card .poster-style .play-btn {
    top: 45%;
}

.featured-card:hover .play-btn {
    opacity: .9;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 10px rgb(147 82 179 / 0%);
    -moz-box-shadow: 0 0 0 10px transparent;
    box-shadow: 0 0 0 10px rgb(147 82 179 / 0%);
}

.poster-style:after, .featured-card:hover .card-overlay {
    content: "";
    position: absolute;
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    opacity: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, .3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .2s ease 0s;
    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
}

.poster-style:hover:after, .featured-card:hover .card-overlay {
    opacity: 1;
}

.nextalert {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 10px;
    border-radius: 10px;
    background: #323b40;
    color: #fff;
    cursor: pointer;
}

.nextalert:hover {
    background: #fff;
    color: #323b40;
}

.style-full .ajm-post-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.ajm-dstlanc.style-2 {
    margin: 2.5rem 0;
    font-size: 25px;
    font-weight: 200;
}

.loading-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    margin-bottom: 5rem;
}

.loading-content path {
    fill: var(--body-color);
}

@-webkit-keyframes ripple {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes ripple {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(1);
    opacity: 0;
  }
}

#inifiniteLoader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.multi-ripple {
    width: 4.6rem;
    height: 4.6rem;
    margin: 2rem;
}

.multi-ripple div {
    position: absolute;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 0.3rem solid #fff;
    -webkit-animation: 1.5s ripple infinite;
    animation: 1.5s ripple infinite;
}

.multi-ripple div:nth-child(2) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.tooltip {
    position: relative
}

.tooltip .tooltiptext {
    display: none;
    position: absolute;
    padding: 10px;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s;
    font-size: 11px;
    width: 120px;
    text-align: center
}

.tooltip:hover .tooltiptext {
    display: block;
    opacity: 1
}

.tooltip-right {
    top: 13px;
    left: 110%
}

.tooltip-right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid
}

.tooltip .tooltip-text {
    position: absolute;
    background: #fff;
    border-radius: 5px;
    display: none;
    padding: 5px;
    width: 130px;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    z-index: 10;
    top: calc(100% + 25%);
    box-shadow: 0 0 2px 0 rgb(0 0 0/86%);
    color: #000
}

.tooltip .tooltip-text[data-size=medium] {
    width: 350px
}

.tooltip .tooltip-text[data-size=noticias] {
    width: 320px
}

.tooltip .tooltip-text[data-size=large] {
    width: 500px
}

.tooltip .tooltip-text:after,.tooltip .tooltip-text:before {
    bottom: 100%;
    right: 5px;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border: 6px solid transparent;
    border-bottom-color: #fff
}

.tooltip .tooltip-text:before {
    border-bottom-color: #000;
    border-width: 8px;
    right: 3px
}

.tooltip .tooltip-text[data-position=right] {
    left: calc(100% + 25%);
    top: 32%
}

.tooltip .tooltip-text[data-position=right]:after,.tooltip .tooltip-text[data-position=right]:before {
    content: " ";
    top: calc(50% - 5px);
    border: 5px solid transparent;
    border-right: 5px solid #fff;
    right: 100%
}

.tooltip .tooltip-text[data-position=right]:before {
    border-right-color: #000;
    border-width: 7px;
    top: calc(50% - 7px)
}

.tooltip .tooltip-text[data-position=left] {
    top: 32%;
    right: calc(100% + 25%)
}

.tooltip .tooltip-text[data-position=left]:after,.tooltip .tooltip-text[data-position=left]:before {
    content: " ";
    top: calc(50% - 5px);
    left: 100%;
    border: 5px solid transparent;
    border-left: 5px solid #fff
}

.tooltip .tooltip-text[data-position=left]:before {
    border-left-color: #000;
    border-width: 7px;
    top: calc(50% - 7px)
}

.tooltip .tooltip-text[data-position*=top] {
    bottom: calc(100% + 8px);
    top: auto
}

.tooltip .tooltip-text[data-position*=top]:after,.tooltip .tooltip-text[data-position*=top]:before {
    top: 100%;
    border: 6px solid transparent;
    border-top-color: #fff
}

.tooltip .tooltip-text[data-position*=top]:before {
    border-top-color: #ccc;
    border-width: 8px;
    right: 3px
}

.tooltip .tooltip-text[data-position=top-left],.tooltip .tooltip-text[data-position=bottom-left] {
    left: -8px;
    right: auto
}

.tooltip .tooltip-text[data-position=top-left]:after,.tooltip .tooltip-text[data-position=top-left]:before,.tooltip .tooltip-text[data-position=bottom-left]:after,.tooltip .tooltip-text[data-position=bottom-left]:before {
    left: 5px;
    right: auto
}

.tooltip .tooltip-text[data-position=top-left]:before,.tooltip .tooltip-text[data-position=bottom-left]:before {
    left: 3px;
    right: auto
}

.tooltip .tooltip-text[data-position=top-right],.tooltip .tooltip-text[data-position=bottom-right] {
    right: -8px;
    left: auto
}

.tooltip .tooltip-text[data-position=top-right]:after,.tooltip .tooltip-text[data-position=top-right]:before,.tooltip .tooltip-text[data-position=bottom-right]:after,.tooltip .tooltip-text[data-position=bottom-right]:before {
    right: 5px;
    left: auto
}

.tooltip .tooltip-text[data-position=top-right]:before,.tooltip .tooltip-text[data-position=bottom-right]:before {
    right: 3px;
    left: auto
}

.tooltip .tooltip-text[data-position=top],.tooltip .tooltip-text[data-position=bottom] {
    left: calc(50% - 110%)
}

.tooltip .tooltip-text[data-position=top][data-size=medium],.tooltip .tooltip-text[data-position=bottom][data-size=medium] {
    left: calc(50% - 183px)
}

.tooltip .tooltip-text[data-position=top][data-size=noticias],.tooltip .tooltip-text[data-position=bottom][data-size=noticias] {
    left: calc(50% - 163px)
}

.tooltip .tooltip-text[data-position=top][data-size=large],.tooltip .tooltip-text[data-position=bottom][data-size=large] {
    left: calc(50% - 258px)
}

.tooltip .tooltip-text[data-position=top]:after,.tooltip .tooltip-text[data-position=top]:before,.tooltip .tooltip-text[data-position=bottom]:after,.tooltip .tooltip-text[data-position=bottom]:before {
    left: calc(50% - 5px)
}

.tooltip .tooltip-text[data-position=top]:before,.tooltip .tooltip-text[data-position=bottom]:before {
    left: calc(50% - 5px)
}

.tooltip:hover .tooltip-text {
    display: block
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 0;
    margin-bottom: 1rem;
    list-style: none;
    border-radius: .25rem;
}

.breadcrumb-item {
    font-family: 'Poppins', sans-serif;
    line-height: 1.4em;
    margin-bottom: 3px
}

.breadcrumb-item a {
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #ffc92b;
}

.breadcrumb-item+.breadcrumb-item:before,.breadcrumb-item.active {
    color: #778a95;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: "•";
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 0;
    margin-bottom: 1rem;
    list-style: none;
    border-radius: .25rem;
}

.breadcrumb-item {
    font-family: 'Poppins', sans-serif;
    line-height: 1.4em;
    margin-bottom: 3px
}

.breadcrumb-item a {
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #ffc92b;
}

.breadcrumb-item+.breadcrumb-item:before,.breadcrumb-item.active {
    color: #778a95;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
    content: "•";
}

.anis-watch-tv {
    position: relative;
    padding-left: 300px
}

.anis-watch-tv .player-frame {
    padding-bottom: 570px;
}

.anis-cover-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    filter: grayscale(1);
}

.anis-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center center;
    filter: blur(20px);
    opacity: .25;
    transform: scale(1.2)
}

.player-frame {
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    position: relative;
    margin-bottom: 0;
}

.player-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%)
}

.loading>div {
    width: 18px;
    height: 18px;
    background-color: #aaa;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both
}

.loading .span1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s
}

.loading .span2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s
}

@-webkit-keyframes sk-bouncedelay {
    0%,100%,80% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1)
    }
}

@keyframes sk-bouncedelay {
    0%,100%,80% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.loading-relative {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 50px
}

.loading-relative.loading-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .3);
}

.player-controls {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

.player-controls .pc-item {
    margin: 5px;
    position: relative
}

.player-controls .pc-item a {
    box-shadow: none!important
}

.player-controls .pc-item a:hover {
    color: #ffc827;
}

.player-controls .pc-item-toggle {
    margin-right: 10px
}

.player-controls .pc-item .btn {
    background: 0 0;
    color: #fff;
    padding: .25rem;
    font-size: 13px
}

.player-controls .pc-item .btn i {
    transform: scale(.9)
}

.player-controls .pc-item.pc-live .btn {
    overflow: hidden
}

.player-controls .pc-item.pc-live .btn i {
    float: left
}

.player-controls .pc-item.pc-comment {
    display: none
}

.player-controls .pc-item.pc-comment .btn i {
    color: #ffdd95
}

.player-controls .pc-item.pc-comment .btn span {
    font-weight: 600;
    color: #ffdd95
}

.tb-result {
    font-size: 10px;
    color: #ffcb31;
}

.pc-toggle {
    cursor: pointer;
}

.pc-right {
    margin-left: auto;
}

#episodes-content {
    background: #121315;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    bottom: 0
}

.anis-watch {
    width: 75%;
}

.anis-watch-detail {
    position: absolute;
    width: calc(25% - 30px);
    right: 0;
    top: 30px;
}

.anis-content {
    position: relative;
}

.anis-watch-detail .anis-content {
    padding: 35px 0 !important;
}

.anis-watch-detail .anis-content .anisc-poster {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 120px;
    margin-bottom: 30px;
}

.film-poster {
    width: 100%;
    padding-bottom: 148%;
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, .1);
    display: block;
}

.film-poster .film-poster-img, .item-cover-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.anis-content .anisc-poster .film-poster {
    box-shadow: 0 40px 40px rgba(0, 0, 0, .2);
}

.anis-content .anisc-detail {
    min-height: 360px;
}

.anis-content .anisc-detail .film-name {
    line-height: 1.1em;
    margin-bottom: 20px;
}

.anis-content .anisc-detail .film-name {
    font-size: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.anis-content .anisc-detail .film-stats {
    margin-bottom: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tick .tick-item:first-of-type {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.tick .tick-item:last-of-type {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.tick .tick-item+.tick-item {
    margin-left: 2px
}

.tick-item {
    font-size: 12px!important;
    font-family: arial;
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 0 6px;
    height: 20px;
    border-radius: 0;
    background: #fff;
    color: #111
}

.tick-item.tick-quality {
    background: #ffdd95;
    color: #111
}

.tick-item.tick-eps {
    background: rgba(238,238,238,.2);
    color: #fff
}

.tick-item.tick-dub {
    background: #e3b5cd;
    color: #111
}

.tick-item.tick-sub {
    background: #b0e3af;
    color: #111
}

.tick-item i {
    font-size: 1em!important;
    top: auto!important
}

.tick.tick-rate {
    position: absolute;
    left: 10px;
    top: 10px;
    line-height: 1.1;
    bottom: auto;
    background: #ff5700;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    padding: 4px 6px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.3);
    min-width: 36px;
    text-align: center;
    font-size: 12px
}

.anis-content .anisc-detail .film-description {
    max-height: 100px;
    overflow: auto;
    min-height: 80px;
}

.anis-content .anisc-detail .film-description .text {
    font-weight: 300;
    line-height: 1.5em;
    font-size: 13px;
}

.anis-content .anisc-detail .film-text, .anisc-info .film-text {
    font-weight: 300;
    line-height: 1.5em;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 13px;
}


.ajm-donghua-hero {
    position: relative;
    margin-top: -70px;
}

.ajm-donghua-hero-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ajm-hero-backdrop-picture {
    animation-duration: .4s;
    animation-name: image-fade-in;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    height: 100%;
    margin: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
}

.ajm-hero-backdrop {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    margin: auto;
    overflow: hidden;
    position: relative;
    padding-top: 70px;
}

.ajm-hero-overlay {
    background: linear-gradient(to top, hsl(197,17%,8%) 0%,hsla(197,17%,8%,0.938) 9.7%,hsla(197,17%,8%,0.904) 17.7%,hsla(197,17%,8%,0.851) 24.3%,hsla(197,17%,8%,0.783) 29.9%,hsla(197,17%,8%,0.704) 34.6%,hsla(197,17%,8%,0.616) 38.8%,hsla(197,17%,8%,0.522) 42.8%,hsla(197,17%,8%,0.428) 46.8%,hsla(197,17%,8%,0.334) 51.1%,hsla(197,17%,8%,0.246) 56.1%,hsla(197,17%,8%,0.167) 61.9%,hsla(197,17%,8%,0.099) 69%,hsla(197,17%,8%,0.046) 77.5%,hsla(197,17%,8%,0.012) 87.7%,hsla(197,17%,8%,0) 100%) bottom / 100% 60% no-repeat;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgb(2 4 5) 35%, rgb(5 2 2 / 81%) 55%, rgba(0, 0, 0, 0) 70%), linear-gradient(to left, rgb(0 0 0 / 2%) 0%, rgba(0, 0, 0, 0.85) 100%);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.ajm-hero-overlay:after {
    content: '';
    background: linear-gradient(to top, hsl(197 43% 1% / 1) 0%, hsl(197deg 43% 1% / 94%) 9.7%, hsl(197deg 43% 1% / 90%) 17.7%, hsl(197deg 43% 1% / 85%) 24.3%, hsl(197deg 43% 1% / 78%) 29.9%, hsl(197deg 43% 1% / 70%) 34.6%, hsl(197deg 43% 1% / 62%) 38.8%, hsl(197deg 43% 1% / 52%) 42.8%, hsl(197deg 43% 1% / 43%) 46.8%, hsl(197deg 43% 1% / 33%) 51.1%, hsl(197deg 43% 1% / 25%) 56.1%, hsla(197, 17%, 8%, 0.167) 61.9%, hsl(197deg 43% 1% / 10%) 69%, hsl(197deg 43% 1% / 5%) 77.5%, hsl(197deg 43% 1% / 1%) 87.7%, hsl(197deg 43% 1% / 0%) 100%) bottom / 100% 60% no-repeat;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.ajm-hero-content {
    position: relative;
    transition: min-height .3s ease-out;
    width: 100%;
    background: unset;
    padding-top: 70px;
}

.ajm-hero-abt {
    animation: fade_in .3s forwards;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 4rem 0;
}

.ajm-hero-ds {
    align-items: flex-start;
    max-width: 32rem;
    font-size: 16px;
    font-weight: 300;
}

.is-singular .ajm-hero-ds {
    max-width: 58rem;
}

.is-singular .ajm-hero-ds .show-description {
    font-weight: 300;
    line-height: 1.5em;
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 14px;
}

.ajm-hero-title {
    /* font-family: 'Poppins', sans-serif!important; */
    font-size: 60px;
    margin-bottom: 5px;
}

.ajm-hero-data {
    margin: 10px 0 0;
}

.ajm-hero-if {
    font-size: 14px;
    font-weight: 300;
}

.ajm-hero-g {
    text-transform: uppercase;
}

.ajm-btn {
    background: #ffffff17;
    padding: 5px 13px;
    font-size: 13px;
}

.episode--content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    padding-bottom: 56px;
}

.episode--content .episode-video {
    width: 25.5%;
    margin-right: 32px;
    max-width: 370px;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
}

.episode--content .episode-video:after {
    inset: 0;
    z-index: 1;
    content: "";
    position: absolute;
    border-radius: 12px;
    border: 4px solid transparent;
    transition: border .3s ease-in-out;
}

.episode--content .episode-video:hover:after {
    border-color: #fff;
}

.episode--content .episode-video .image {
    position: relative;
    padding-bottom: 58.25%;
    overflow: hidden;
}

.episode--content .episode-video .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode--content .episode-video .episode--duration {
    position: absolute;
    right: 13px;
    bottom: 10px;
    font-size: 11px;
    z-index: 1;
    padding: 5px 10px;
    background: #121212;
    border-radius: 30px;
}

.episode--content .episode-video .play-icon {
    transform: translateX(-50%) translateY(-50%);
    transition: opacity .3s linear;
    position: absolute;
    width: 12.44%;
    height: 42%;
    fill: #fff;
    opacity: 0;
    left: 50%;
    top: 50%;
    z-index: 2;
}

.episode--content .episode-video .sOverlay {
    background: transparent;
    transition: background .3s ease-in-out;
}

.episode--content .episode-video:hover .sOverlay {
    background: linear-gradient(to bottom,rgb(0 0 0 / 27%) 10%,rgb(0 0 0 / 82%) 90%);
}

.episode--content .episode-video:hover .play-icon {
    opacity: 1;
}

.episode--content .title-episode {
    width: calc(100% - 42.5%);
    padding-right: 50px;
}

.episode--content .title-episode h3 a {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 128%;
    font-size: calc(.89vw + 21px);
    color: #fff;
}

.episode--content .title-episode h3 a {
    font-size: calc(.34vw + 13.33px);
    line-height: calc(.87vw + 9.33px);
    margin-bottom: calc(0.43vw + 6.67px);
}

.episode--content .title-episode h3 .name--serie,
.page--info .titleArea h1 .name--serie {
    display: inline-block;
    text-indent: -999px;
    visibility: hidden;
}

.episode--content .title-episode .title-episode_description {
    font-size: 14px;
    font-weight: 400;
    margin-top: 8px;
    letter-spacing: .1px;
    color: #ccc;
}

.ajm-episodes-empty {
    padding: 35px;
    text-align: center;
    background: #1b1d1d;
    border: 1px solid hsl(0deg 0% 93.33% / 5%);
    border-radius: 5px;
    margin-bottom: 4rem;
    font-size: 13px;
    font-weight: 300;
    color: rgb(255 255 255 / 20%);
}

.ajm-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
    z-index: 9;
    display: none;
    opacity: .8;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
}

.ajm-back-to-top.active {
    display: block;
}

#ajm-reading-progress {
    background: #fd0406;
}

.share-buttons {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px
}

.share-buttons .share-buttons-block {
    padding: 20px 0;
    position: relative;
    display: flex;
    align-items: center
}

.share-buttons .share-buttons-block .sbb-title {
    display: block;
    padding: 0;
    position: relative
}

.share-buttons .share-buttons-block .sbb-title span {
    font-weight: 600;
    font-size: 14px;
    color: #fd0406;
}

.share-buttons .share-buttons-block .addthis_inline_share_toolbox {
    float: left;
    clear: none!important
}

.share-buttons.share-buttons-home {
    width: 100%;
    margin-bottom: 0
}

.share-buttons.share-buttons-home .share-buttons-block {
    padding: 1.5rem 0
}

.share-buttons .share-buttons-block .share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem
}

.share-buttons .share-buttons-block .share-icon i {
    font-size: 22px;
    color: #fd0406;
}

.share-icon {
    width: 60px;
    height: 60px;
    border: 2px solid rgb(253 4 6 / 30%);
    border-radius: 50%;
}

.share-buttons .sbb-title {
    font-size: .95em
}

.share-buttons .sbb-title span {
    font-size: 1.1em
}

.share-buttons.share-buttons-detail {
    background-color: #0f111299;
}

.share-buttons.share-buttons-watch .share-buttons-block {
    padding: .6rem
}

.share-buttons.share-buttons-min {
    margin-bottom: 0
}

.share-buttons.share-buttons-min .at-resp-share-element .at-share-btn .at-label {
    display: none!important
}

.share-buttons.share-buttons-pop .share-buttons-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0!important
}

.share-buttons.share-buttons-pop .share-buttons-block .addthis_inline_share_toolbox {
    float: none
}

.share-buttons .share-buttons-block .at-icon-wrapper {
    margin-bottom: 0!important
}

.footer{
	background-color: #0a0b0c;
	padding: 70px 0 40px;
	margin-top: 5rem;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #ff0405;
	height: 2px;
	box-sizing: border-box;
	width: 15px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

.ajm-ad-device-all{display:block}
.ajm-ad-device-desktop{display:block}
.ajm-ad-device-mobile{display:none}

@media(max-width:768px){
    .ajm-ad-device-desktop{display:none}
    .ajm-ad-device-mobile{display:block}
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}