/* LAPSE COMMON 0.2
Developer: t.me/moretheme
Screen resolution: 460, 820, 1440, 1920
----------------------------------------------- */
* {
    background: 0 0;
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box
}

:root {
    --bg: #101012;
    --bg2: #1c1c20;
    --text: #fff;
    --text1: #000;
    --color1: #7651d3;
    --color2: #8359ed;
    --light: rgb(255 255 255 / 10%);
    --light2: rgb(255 255 255 / 30%);
}

html {
    font-size: 100%;
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    font-family: "Proxima Nova", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: normal;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

body.modal-opened {
    overflow: hidden
}

.wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
}

.content {
    min-height: 100vh;
    margin-top: 30px;
    margin-bottom: 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: calc(100% - 40px);
    position: relative
}

.section {
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

h1,h2,h3,h4 {
    position: relative;
    margin-bottom: 30px
}

h1 {
    font-size: 30px;
    font-weight: 700
}

@media (max-width: 768px) {
    h1 {
        font-size:25px
    }
}

h2 {
    font-size: 30px;
    font-weight: 700;
}

@media (max-width: 768px) {
    h2 {
        font-size:20px
    }
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4
}

@media (max-width: 768px) {
    h3 {
        font-size:18px
    }
}

h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4
}

@media (max-width: 768px) {
    h4 {
        font-size:16px
    }
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8
}

@media (max-width: 768px) {
    p {
        font-size:14px;
        line-height: 25px
    }
}

h1,h2,h3,h4 + p {
    margin-bottom: 20px;
}

b,strong {
    font-weight: 700
}

ol,ul {
    list-style: none
}

embed,frame,iframe,img,object,table,video {
    max-width: 100%
}

[data-src] {
    opacity: 0;
    transition: all .3s
}

[data-src].lazy-loaded {
    opacity: 1
}

a {
    color: var(--text);
    text-decoration: none
}

button,input,select,textarea {
    font-size: 16px;
    font-family: inherit
}

input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week] {
    display: inline-block;
    width: 100%;
    height: 45px;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--bg2);
    color: var(--text-color);
}

input[type=button], input[type=checkbox], input[type=file], input[type=image], input[type=radio], input[type=reset], input[type=submit] {
    width: auto;
}

input[type=checkbox], input[type=radio] {
    line-height: normal;
    margin: -2px 6px 0 0;
    vertical-align: middle;
}

textarea {
    width: 100%;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--bg2);
    color: var(--text);
}

select {
    display: inline-block;
    width: 100%;
    height: 45px;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--bg2);
    color: var(--text-color);
}

.e-btn, .bbcodes, button:not(.ui-button, .mute-toggle) {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    padding: 0 10px;
    width: auto;
    height: 45px;
    line-height: 40px;
    background-color: var(--color1);
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,.1)
}

.e-btn, .bbcodes:hover ,button:hover:not(.ui-button, .mute-toggle) {
    background-color: var(--color2);
    color: #fff;
    box-shadow: 0 1px 2px 0 transparent
}

.overlay {
    position: fixed;
    display: none;
    background-color: rgb(0 0 0 / 10%);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 995;
}

.e-grid7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
}

@media (max-width: 460px) {
    .e-grid7 {
        grid-template-columns:1fr 1fr
    }
}

.e-grid6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
}

@media (max-width: 460px) {
    .e-grid6 {
        grid-template-columns:1fr
    }
}

.e-grid5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
}

@media (max-width: 460px) {
    .e-grid5 {
        grid-template-columns:1fr 1fr
    }
}

.e-grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
}

@media (max-width: 460px) {
    .e-grid4 {
        grid-template-columns:1fr 1fr
    }
}

.e-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
}

.e-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 20px;
    grid-auto-rows: max-content;
}

@media (max-width: 460px) {
    .e-grid3, .e-grid2 {
        grid-template-columns:1fr
    }
}

.e-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}

.e-flex50 {
    flex: 1 1 0%;
    max-width: 100%;
    min-width: 50px
}

.e-column {
    flex-direction: column;
    flex-wrap: nowrap
}

.e-center {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%,-50%)
}

.e-nowrap {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.e-resp img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.e-w800 {
    max-width: 800px
}

@media (max-width: 768px) {
    .e-swipe {
        display:flex;
        flex-wrap: nowrap;
        overflow-x: auto
    }

    .e-swipe > a, .e-swipe > div {
        min-width: max-content;
    }
}

.e-clamp2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.e-clamp4 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.e-scroll::-webkit-scrollbar {
    position: relative;
    height: 8px;
    border-radius: 10px;
}

.e-scroll::-webkit-scrollbar-thumb {
    background-color: var(--color1)
}

.e-scroll::-webkit-scrollbar-track {
    background-color: var(--light)
}

.e-none, .hidden {
    display: none
}

/* DATALIFE ENGINE */
#dle-content>:not(.movie-item) {
    grid-column: 1/-1;
}