/* EASSISTANT 09.09.2025
Developer: lapse.kz
Screen resolution: 460, 860, 1200, 1600, 1920 
*/
.e-btn {
    display: inline-block;
    background: #bee6c3;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.e-btn:hover {
    background: #7e9882;
    text-decoration: none;
}

.e-h1, .e-h2, .e-h3, .e-h4 {
    margin-bottom: 30px;
}

.e-h1 {
    font-size: 42px;
    font-weight: bold;
}

.e-h2 {
    font-size: 28px;
    font-weight: bold;
}

.e-h3 {
    font-size: 20px;
    line-height: 1.4;
}

.e-h4 {
    font-size: 18px;
    line-height: 1.4;
}

.e-grid2, .e-grid3, .e-grid4, .e-grid5, .e-grid6, .e-grid7 {
    display: grid;
    grid-gap: 20px;
    grid-auto-rows: max-content;
}

.e-grid7 {
    grid-template-columns: repeat(7, 1fr);
}

.e-grid6 {
    grid-template-columns: repeat(6, 1fr);
}

.e-grid5 {
    grid-template-columns: repeat(5, 1fr);
}

.e-grid4 {
    grid-template-columns: repeat(4, 1fr);
}

.e-grid3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
    .e-grid7, .e-grid6, .e-grid5, .e-grid4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.e-grid2 {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 860px) {
    .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-flex_col, .e-flexcol {
    flex-direction: column;
}

.e-flex_row, .e-flexrow {
    flex-direction: row;
}

.e-flex_center, .e-flexcenter {
    justify-content: center;
    align-items: center;
}

.e-flex_jb, .e-flexjb {
    justify-content: space-between;
}

.e-flex_jc, .e-flexjc {
    justify-content: center;
}

.e-flex_ac, .e-flexac {
    align-items: center;
}

.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-cover img, .e-cover video, .e-cover iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

    .e-swipe > * {
        min-width: max-content;
    }
}

.e-clamp2, .e-clamp3, .e-clamp4, .e-clamp5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.e-clamp2 {
    -webkit-line-clamp: 2;
}

.e-clamp3 {
    -webkit-line-clamp: 3;
}

.e-clamp4 {
    -webkit-line-clamp: 4;
}

.e-clamp5 {
    -webkit-line-clamp: 5;
}

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

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

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

.e-none, .hidden, .e-mobile, .e-desktop {
    display: none;
}

@media (max-width: 860px) {
    .e-mobile {
        display: block;
    }
}

@media (min-width: 860px) {
    .e-desktop {
        display: block;
    }
}

.e-float {
    position: relative;
    margin-bottom: 20px;
}

.e-float label {
    position: absolute;
    color: var(--text2);
    font-size: 10px;
    top: 8px;
    left: 20px;
    transition: 0.3s;
}

.e-float input::-webkit-input-placeholder, .e-float textarea::-webkit-input-placeholder {
    opacity: 0;
}

.e-float input:placeholder-shown:not(:focus)::-webkit-input-placeholder, .e-float textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder {
    opacity: 1;
}

.e-float input:placeholder-shown:not(:focus) + label, .e-float textarea:placeholder-shown:not(:focus) + label {
    opacity: 0;
    top: 12px;
}

.e-float input:placeholder-shown {
    padding: 20px;
}

.e-float input, .e-float textarea, .e-float input:focus, .e-float textarea:focus {
    display: inline-block;
    background: #ffffff29;
    color: inherit;
    padding: 15px 20px;
    border-radius: 50px;
    width: 100%;
    border: 1px solid rgb(61 67 79 / 19%);
    padding: 25px 20px 15px 20px;
    height: 55px;
    transition: 0.3s;
}

.e-float input:focus, .e-float ~ textarea:focus {
    border: 1px solid var(--color1);
}

.e-field {
    position: relative;
    text-align: left;
    margin-bottom: 20px;
}

.e-field label {
    display: inline-block;
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 12px;
}

.e-field input, .e-field select {
    display: block;
    max-width: 300px;
    background: #ffffff29;
    color: inherit;
    padding: 15px 20px;
    border-radius: 50px;
    height: auto;
    line-height: normal;
    width: 100%;
    border: 1px solid transparent;
}

.e-field input:focus, .e-field ~ textarea:focus {
    border: 1px solid var(--color1);
}

.e-overlay {
    position: fixed;
    background: rgb(0 0 0 / 80%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 102;
}

input[type="checkbox"], .checkbox input {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    vertical-align: middle;
    display: inline-block;
    background: #ffffff29;
    border-radius: 12px;
    width: 50px;
    height: 25px;
    line-height: 25px;
    margin: 10px 0;
    margin-right: 15px;
    transition: 0.3s;
    cursor: pointer;
}

input[type="checkbox"]:before, .checkbox input:before {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    border-radius: 50%;
    transition: 0.3s;
}

input[type="checkbox"]:checked:before, .checkbox input:checked:before {
    left: 24px;
}

input[type="checkbox"]:checked, .checkbox input:checked {
    background: rgb(76, 175, 80);
    box-shadow: rgb(76, 175, 80) 0px 0px 0px 12px inset;
    border-color: rgb(76, 175, 80);
    transition: border 0.4s ease 0s, box-shadow 0.4s ease 0s, background-color 1.2s ease 0s;
}

input[type="radio"] {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    vertical-align: middle;
    display: inline-block;
    border: 2px solid var(--light2);
    border-radius: 8px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin: 10px 0;
    margin-right: 15px;
    cursor: pointer;
}

input[type="radio"]:checked:before {
    content: "";
    position: absolute;
    display: inline-block;
    left: 4px;
    top: 4px;
    width: 9px;
    height: 5px;
    border-radius: 1px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
}

input[type="radio"]:checked {
    background-color: var(--color1);
    border: 2px solid var(--color1);
}

/* HEADER USER - MORETHEME */
.header-user {
    position: relative;
    margin-left: 5%;
}

.header-user > a {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50px;
    background: #212722;
    box-shadow: 1px 1px 0 0 #1f1f1f, inset 1px 1px 1px #606661;
    color: #70936d;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
}

.header-user > a > span {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 860px) {
    .header-user > a > span {
        display: none;
    }
}

.header-user > div {
    position: absolute;
    width: 200px;
    top: 100%;
    right: 0;
    background: #363a37;
    box-shadow: 2px 2px 3px #535f53, inset 1px 1px 1px #535f53;
    color: #fff;
    box-shadow: 0 3px 32px 0 rgb(18 31 39 / 16%);
    border-radius: 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 6;
}

.header-user.active > div {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.header-user_info {
    border-bottom: 1px solid #ffffff24;
    padding: 10px 20px;
    text-align: center;
    color: #fff;
}

.header-user_info > img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.header-user_info > span {
    display: block;
    margin: 8px 0;
    font-size: 16px;
    font-weight: bold;
}

.header-user_info > a {
    display: inline-block;
    color: var(--color1);
    font-weight: bold;
    font-size: 13px;
    border-bottom: 1px dotted var(--color1);
    margin: 5px;
}

.header-user_info > a i {
    margin-right: 5px;
}

.header-user_group {
    display: inline-block;
    background: var(--bg3);
    border-radius: var(--radius);
    color: #b9b3d3;
    padding: 4px 10px;
    font-size: 10px;
}

.header-user_group * {
    color: #b9b3d3!important;
}

.header-user_link {
    padding: 3px;
}

.header-user_link a {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    padding: 8px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
}

.header-user_link a:last-child {
    color: #F44336;
}

.header-user_link a:hover {
    background: #fff1d74d;
    color: #fff;
    text-decoration: none;
}

/* MODAL LOGIN 0.2 */
.modal-login > a {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 10px;
    width: 42px;
    height: 42px;
    border-radius: 50px;
    background: #212722;
    box-shadow: 1px 1px 0 0 #1f1f1f, inset 1px 1px 1px #606661;
    color: #70936d;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
}

.modal-login form {
    display: none;
    position: fixed;
    min-width: 500px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: #363a37;
    box-shadow: 2px 2px 3px #535f53, inset 1px 1px 1px #535f53;
    border-radius: 20px;
    padding: 40px 80px;
    text-align: center;
    z-index: 104;
}

@media (max-width: 860px) {
    .modal-login form {
        min-width: 100%;
        padding: 30px;
        border-radius: 0;
    }
}

.modal-login form > i {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff21;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
}

.modal-login form > i:hover {
    background: var(--color1);
    color: #fff;
}

.modal-login .e-float > a {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 14px;
    border-bottom: 1px dotted #20a8d8;
}

.modal-login_btn a {
    background: #000;
    margin-left: 20px;
}

.modal-login_btn a:hover {
    background: #181717;
    opacity: 0.8;
}

.modal-login_soc span {
    display: block;
    color: #767389;
    margin: 20px 0;
}

.modal-login_soc .e-flex {
    align-items: center;
    justify-content: center;
}

.modal-login_soc .e-flex > a, .modal-login_soc .e-flex a > img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

/* DLE USERS 2025 */
.dle-us {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.dle-us_bg {
    width: 100%;
    height: 200px;
    background: #eee;
}

.dle-use_av {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 15px;
    background: #363a37;
    box-shadow: 2px 2px 3px #535f53, inset 1px 1px 1px #535f53;
    padding: 20px 30px;
    margin-top: -40px;
}

.dle-use_av > .e-cover {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 5px solid #fff;
}

.dle-use_av.online > .e-cover:before {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 5px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #8BC34A;
    border: 2px solid #fff;
    animation: pulse 1.25s infinite;
}

.dle-use_av.online > .e-cover > img {
    border-radius: 50px;
    overflow: hidden;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(139 195 74 / 50%)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgb(139 195 74 / 30%)
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(139 195 74 / 10%)
    }
}

.dle-us_name {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
}

.dle-us_subname {
    color: var(--text2);
    font-size: 12px;
}

.dle-us_meta {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    font-size: 14px;
    color: var(--text3);
    margin-top: 10px;
}

.dle-us_meta > span, .dle-us_meta > a {
    display: flex;
    align-items: center;
    grid-gap: 8px;
}

.dle-use_av > a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-gap: 8px;
    background: #accaa6;
    color: #000;
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    text-align: center;
}

.dle-use_av > a[name="modal"] {
    width: auto;
    margin-left: auto;
    padding: 0 20px;
}

@media (max-width: 860px) {
    .dle-use_av > a[name="modal"] {
        margin-left: 0;
    }
}

.dle-use_av > a:hover {
    background: #92ab8d;
    text-decoration: none;
}

.dle-us_modal {
    position: fixed;
    min-width: 500px;
    height: 600px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: #363a37;
    box-shadow: 2px 2px 3px #535f53, inset 1px 1px 1px #535f53;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    z-index: 103;
}

@media (max-width: 860px) {
    .dle-us_modal {
        min-width: 100%;
    }
}

.dle-us_modal > .fa-xmark {
    position: absolute;
    top: 30px;
    right: 30px;
    display: inline-block;
    background: #ffffff21;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
}

.dle-us_modal > .e-scroll {
    overflow-y: scroll;
    height: 432px;
}

.dle-us_upload {
    position: relative;
    background: var(--bg2);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.dle-us_upload input[type=file] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

.dle-us_upload > div.e-cover {
    position: relative;
    background: var(--color1);
    height: 100px;
    width: 100px;
    border-radius: 50px;
    overflow: hidden;
}

.dle-us_upload > div > b {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.dle-us_upload > div > b + span {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.dle-us_upload > div button {
    background: #bee6c3;
    padding: 8px 20px;
    font-size: 12px;
    border-radius: 50px;
}

.dle-us_soc {
    background: #ffffff29;
    padding: 20px;
    border-radius: 50px;
}

.dle-us_soc > span {
    display: inline-block;
    color: var(--text2);
    font-size: 14px;
    margin-bottom: 20px;
}

.dle-us_soc > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 10px;
}

.dle-us_soc > div a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 1px solid var(--light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.dle-us_soc > div a:hover {
    opacity: 0.9
}

.dle-us_soc > div > span[id] a {
    background: var(--light2);
}

.dle-us_soc > div a:before {
    content: "+";
    position: absolute;
    top: -2px;
    right: -5px;
    background: #0a0;
    color: #fff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 12px;
    text-align: center;
}

.dle-us_soc > div > span[id] a:before {
    content: "-";
    background: #F44336;
}

.dle-us_checkbox {
    text-align: left;
}

.dle-us_link {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: var(--bg);
    border-top: 1px solid var(--light2);
    padding: 30px;
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.dle-us_link .self_delete_link {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    background: var(--light);
    color: var(--text2);
    padding: 15px 30px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

.dle-us_link .self_delete_link:hover {
    background: var(--light2);
}

/* DLE AVATAR */
.dle-avatar {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    object-fit: cover;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    overflow: hidden;
}
