@font-face {
    font-family: 'Gilroy';
    src: url('/fonts/Gilroy-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    width: 100%;
    height: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

span, a, p, li, h1, h2, h3, h4, tr  {
    font-family: 'Gilroy';
}

iframe {
    border: none;
}

.theme-l {
    /*background-image: url(/images/bg/bg-pc.webp);*/
    background-color: #e2e2e2;
}

.theme-d {
    /*background-image: url(/images/bg/bg-pc-d.webp);*/
    background-color: #222222;
}

.theme-d h1 {
    color: #f8f8f8;
}

.theme-d h2 {
    color: #f8f8f8;
}

.theme-d h3 {
    color: #f8f8f8;
}

.theme-d h4 {
    color: #f8f8f8;
}

.theme-d p {
    color: #f8f8f8;
}

.theme-d span {
    color: #f8f8f8;
}

.theme-d li {
    color: #f8f8f8;
}

.theme-d .ani-title {
    color: #f8f8f8;
}

.theme-d .ep-blc {
    color: #f8f8f8;
}

.theme-d .th-btn {
    color: #f8f8f8;
    border-color: #f8f8f8;
}

.theme-d .th-btn:hover {
    opacity: 50%;
}

.theme-d .d-content {
    background: #333333;
}

.theme-d .img-404 {
    display: block;
}

.theme-d .txt-404 {
    display: none;
}

.theme-d a {
    color: #f8f8f8;
}

.theme-d .header {
    background-color: #333333;
}

.theme-d .h-logo {
    background-image: url('/images/hlogo/new/h-logo-d.webp');
}

.theme-d .h-links-btn {
    color: #f8f8f8;
}

.theme-d .h-links-btn span {
    background: #f8f8f8;
}

.theme-d span {
    color: #f8f8f8;
}

.theme-d .footer {
    background: #333333;
}

.theme-d .user-menu-cont {
    background-color: #333333;
}

.theme-d .h-tog-theme {
    background-image: url('/images/h-sun-l.svg');
}

.theme-d .h-tog-theme-m {
    background-image: url('/images/h-sun-l.svg');
}

.theme-d .d-multi-add-btn {
    border-color: #f8f8f8;
}

.theme-d .d-multi-del-btn {
    border-color: #f8f8f8;
}

.theme-d .d-all-content {
    background: #333333;
}

.theme-d .ani-add020 {
    background-color: #333333;
    border-color: #f8f8f8;
}

.theme-d .d-content-main {
    background-color: #333333;
}

.theme-d .ani-bl {
    background-color: #393939;
}

.theme-d .ani-bl p {
    color: #9f9f9f;
}

.theme-d .a-main-search {
    background-color: #333333;
}

.theme-d .a-main-search-btn {
    border-color: #f8f8f8;
    color: #f8f8f8;
}

.theme-d .content-ani-full {
    background-color: #333333;
}

.theme-d .ani-full-edit {
    color: #f8f8f8;
    background: #3c3c3c;
}

.theme-d .close-btn {
    background-image: url('/images/anifull/closeanifullf-d.svg');
}

.theme-d.halloween .hw-spiderweb-ani span {
    background-image: url('/images/halloween/spiderweb-hw-l.png');
}

.theme-d.happy-ny .ny-garland-ani span {
    background-image: url('/images/happy-ny/ny-garland2-l.png');
}

.theme-d .d-add-label {
    color: #f8f8f8;
}

#notification {
    display: none;
    position: fixed;
    right: 15px;
    top: 15px;
    padding: 10px;
    font-family: 'Gilroy';
    border-radius: 5px;
    font-size: 16px;
    color: #f8f8f8;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    -webkit-animation: slideLeft 0.5s ease;
            animation: slideLeft 0.5s ease;
    z-index: 99999;
}

.img-404 {
    display: none;
    max-width: 100%; 
    max-height: 100%;
}

.txt-404 {
    display: block;
    text-align: center;
}

.notif-deact {
    -webkit-animation: slideRight 0.5s ease !important;
            animation: slideRight 0.5s ease !important;
}

@-webkit-keyframes slideRight {
    from {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 100%;
    }
    to {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        opacity: 0%;
    }
}

@keyframes slideRight {
    from {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 100%;
    }
    to {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        opacity: 0%;
    }
}

@-webkit-keyframes slideLeft {
    from {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        opacity: 0%;
    }
    to {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 100%;
    }
}

@keyframes slideLeft {
    from {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        opacity: 0%;
    }
    to {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 100%;
    }
}

#notification.sucs {
    background-color: rgba(76, 175, 80, 0.8);
}

#notification.err {
    background-color: rgba(255, 0, 0, 0.8);
}

.d-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /*min-height: 100%;*/
    min-height: 100vh;
}

.d-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    min-height: 300px;
    width: 50%;
    margin: auto;
    margin-top: 90px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.ani-title {
    margin-top: 10px;
    position: relative;
    font-size: 23px;
}

.ep-inf {
    position: relative;
    margin: 10px auto;
    text-align: center;
}

.n-d {
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
}

.d-btn {
    margin: auto;
    display: block;
    width: 100px;
    position: relative;
    text-decoration: none;
    background: red;
    color: #fff;
    top: 5px;
    padding: 5px;
    border-radius: 6px;
}

.d-btn:hover {
    background: pink;
    color: #f8f8f8;
}

.th-btn {
    position: relative;
    height: 30px;
    width: auto;
    background: none;
    color: #333333;
    border: 3px;
    border-color: #333333;
    border-style: solid;
    border-radius: 5px;
    margin: 10px auto;
}

.th-btn:hover {
    opacity: 75%;
}

.ep-blc {
    position: relative;
    max-width: 350px; 
    margin: 10px auto; 
    font-size: 20px; 
    text-align: center;
}

.h-usr-block {
    display: none;
}


h2 {
    font-family: 'Gilroy';
}

form {
    margin: auto;
    max-width: 400px;
    min-width: auto;
}
    
label {
    display: block;
    margin-top: 10px;
    font-family: 'Gilroy';
}
    
select, input[type="text"], input[type="password"], input[type="email"], input[type="url"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
    
input[type="submit"] {
    display: block;
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    background-color: red;
    color: #f8f8f8;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: pink;
}

.ep-blc-f {
    width: 307.9px;
    /*margin: 50px auto 20px auto;*/
    font-size: 20px;
    text-align: center;
}

a {
    font-family: 'Gilroy';
    color: #333333;
    text-decoration: none;
}

a:hover {
    opacity: 50% !important;
}



.header {
    position: absolute;
    background-color: #f8f8f8;
    top: 0;
    left: 0;
    right: 0;
    /*transition: all 0.8s;*/
    z-index: 79;
}



.header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1170px;
    margin: 0 auto;
    width: calc(100% - 40px);
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px 0;
    z-index: 80;
}

.h-logo {
    position: absolute;
    height: 80px;
    width: 80px;
    background-image: url('/images/hlogo/new/h-logo-l.webp');
    background-size: 73px;
    background-repeat: no-repeat;
}



.h-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-left: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.h-links a {
    font-size: 17px;
    font-weight: 1000;
    /*margin-left: 10px;*/
    padding: 14px 20px;
}

.h-links-btn {
    display: none;
    border: 3px;
    border-style: solid;
    color: #333333;
    width: 25px;
    height: 20px;
    padding: 13px 11px;
    border-radius: 8px;
    font-size: 14px;
    margin-left: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 8;
}

.h-links-btn span {
    display: block;
    width: 18px;
    height: 1px;
    background: #333333;
    border-radius: 1.5px;
    margin: auto;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}



.h-links-btn.active span:nth-child(1) {
    display: none;
}

.h-links-btn.active span:nth-child(2) {
    opacity: 1;
    -webkit-transform: rotate( 45deg);
        -ms-transform: rotate( 45deg);
            transform: rotate( 45deg);
    position: absolute;
    border-radius: 0;
}

.h-links-btn.active span:nth-child(3) {
    opacity: 1;
    -webkit-transform: rotate( -45deg);
        -ms-transform: rotate( -45deg);
            transform: rotate( -45deg);
    position: absolute;
    border-radius: 0;
    margin-bottom: -1.5px;
}

.h-links-m {
    display: none;
}

.footer {
    position: relative;
    background: #f8f8f8;
    width: 100%;
    padding: 15px 0;
    bottom: 0;
}

.f-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 0 5px;
}

.f-terms {
    position: relative;
    text-align: center;
    bottom: 0;
}

.f-social {
    text-align: center;
    font-size: 25px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.f-social a {
    margin: 5px;
}

.h-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.user-menu-cont {
    display: none;
    position: absolute;
    background-color: #f8f8f8;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    right: -60px;
    top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 5px;
    padding: 10px;
    z-index: 1000;
}

.user-menu-cont.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.user-menu-cont a {
    padding: 10px;
    margin-left: 0;
}

.head-lr-form {
    display: none;
    text-align: center;
}

.head-lr-form.active {
    display: block;
}

.h-tog-theme {
    background-image: url(/images/h-moon-d.svg);
    background-color: transparent;
    background-repeat: no-repeat;
    cursor: pointer;
    border: none;
    height: 30px;
    width: 30px;
    background-size: 30px;
}

.h-tog-theme-m {
    display: none;
}

.h-tog-theme:hover {
    opacity: 50%
}

.h-tog-theme-m:hover {
    opacity: 50%
}

li {
    list-style-type: none;
}

h1 {
    font-family: 'Gilroy';
}

.d-multi-add-btn {
    margin-top: 10px;
    background: transparent;
    border-radius: 5px;
    border-style: solid;
    border-color: #333333;
    padding: 5px;
    cursor: pointer;
}



.d-multi-del-btn {
    display: none;
    margin-top: 10px;
    background: transparent;
    border-radius: 5px;
    border-style: solid;
    border-color: #333333;
    padding: 5px;
    cursor: pointer;
}

.d-multi-del-btn.active {
    display: inline-block;
}



.d-all-content-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}

.d-all-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    min-height: 60%;
    width: 80%;
    margin: auto;
    background: #f8f8f8;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.d-all-container {
    position: relative;
    border: 1px solid #ccc;
    padding: 10px;
    /*margin-top: 50px;*/
    /*margin-bottom: 55px;*/
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.d-all-list {
    padding: 0;
    margin: 0;
    margin-bottom: 0;
}

.dwn-all-tbl {
    max-width: 500px;
}

.d-pag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    bottom: 10;
    margin-top: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.d-pag a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.d-pag a.selected {
    opacity: 50%;
}

/*.d-pag-m {
    display: none;
    position: absolute;
    justify-content: center;
    bottom: 10;
    margin-top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.d-pag-m a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.d-pag-m a.selected {
    opacity: 50%;
}*/

.wvo3j9stum9rw {
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
}

.ani-add-dropdown {
    position: relative;
    display: inline-block;
}

.ani-add015 {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    text-align: center;
}

.ani-add020 {
    max-height: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    right: -45px;
    padding: 10px;
    margin-top: 5px;
    text-align: center;
    background-color: #f8f8f8;
    border-radius: 5px;
    border: 1px solid #f8f8f8;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: 
        max-height 0.3s ease-out, 
        opacity 0.3s ease-out;
    -o-transition: 
        max-height 0.3s ease-out, 
        opacity 0.3s ease-out;
    transition: 
        max-height 0.3s ease-out, 
        opacity 0.3s ease-out;
    opacity: 0;
    z-index: 999;
}

.ani-add020 a {
    display: block;
    margin-bottom: 5px;
    padding: 5px 10px;
    text-decoration: none;
}

.ani-add-dropdown:hover .ani-add020 {
    max-height: 200px;
    opacity: 1;
}

.h-logo-cont {
    position: absolute;
    height: 70px;
    width: 80px;
    margin-bottom: 10px;
    overflow: hidden;
}

.d-content-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    min-height: 300px;
    width: 95%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #f8f8f8;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.m-anidcont {
    margin: 20px auto;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.ani-bl {
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 180px;
    text-align: center;
}

.ani-bl img {
    width: 180px;
    height: 250px;
    border-radius: 5px;
}

.ani-bl h2 {
    font-size: 18px;
    margin-top: 10px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.ani-bl p {
    font-size: 14px;
    color: #777;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 200px;
    display: block;
    margin: auto;
}

.m-ani-ti {
    max-width: 190px;
    display: block;
    margin: auto;
}

.main-pag {
    margin-bottom: 20px;
}

.main-pag-btn {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.main-pag-btn.selected {
    opacity: 50%;
}

.a-main-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    min-height: 75px;
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
    width: 45%;
    margin: 0 auto;
    margin-top: 90px;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.a-main-search-f {
    max-width: 80%;
    width: 100%;
}

.a-main-search-f input {
    height: 35px;
}

.a-main-search-btn {
    background: transparent;
    border-color: #333333;
    border-radius: 5px;
    padding: 7px 10px;
    color: #333333;
    margin: 0 auto 0 0;
    cursor: pointer;
}

#a-main-filter-toggle {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

#a-filter-cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#a-main-reset-btn {
    position: relative;
    width: 100%;
    margin-top: 10px;
    /*left: 50%;*/
}

.a-filt-type-cont {
    width: 150px;
    margin: auto;
}

textarea {
    width: 100%;
    height: 200px;
}
.content-ani-full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    min-height: 300px;
    width: 95%;
    margin: auto;
    margin-top: 90px;
    margin-bottom: 20px;
    background-color: #f8f8f8;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.ani-full-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px;
}
.poster {
    margin: 10px;
    border-radius: 5px;
    max-width: 250px;
    max-height: 350px;
}
.poster img {
    max-width: 250px;
    max-height: 350px;
}
.ani-full-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 10px;
}
.ani-full-name-ru {
    margin-bottom: 5px;
}
.ani-full-info-con {
    margin-top: 10px;
}
.ani-full-desc {
    width: 500px;
    height: auto;
    margin: 10px;
    text-align: center;
}
.ani-full-desc-head h2 {
    margin-bottom: 5px;
}
.ani-full-desc-content {
    text-align: justify;
}
.ani-full-player {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-height: 30px;
    max-height: 800px;
    margin-bottom: 20px;
}
.ani-full-pl {
    width: 100%;
    height: 100%;
}
.pl-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: 100%;
    min-width: 250px;
    left: -40px;
    margin: 0px;
    text-align: center;
}
.ani-full-pl-sel {
    width: 100%;
    padding: 10px;
    background: rgb(0, 150, 0, 0.5);
    cursor: pointer;
}
.ani-full-pl-sel.active {
    background: rgb(0, 150, 0, 0.8);
}
.ani-full-pl-sel span {
    color: #f8f8f8;
}
.ani-full-pl-sel:nth-child(2), .ani-full-pl-sel:nth-child(3), .ani-full-pl-sel:nth-child(4) {
    border-left: 2px solid rgb(0, 150, 0.5);
}
.ani-full-pl-var {
    height: 100%;
    width: 100%;
}
.ani-full-pl-var iframe {
    min-height: 500px;
    min-width: 900px;
}
.ani-full-edit {
    display: none; 
    position: fixed;
    height: 500px;
    color: #333333;
    background: #f8f8f8;
    border-radius: 10px;
    -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    padding: 50px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    overflow-y: auto;
    z-index: 9999;
}
.edit-ani-full {
    font-size: 20px;
}
.ani-full-edf-btn {
    position: relative;
    background: rgb(255, 0, 0, 0.7);
    color: #f8f8f8;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 5px;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
}
.ani-full-edf-btn:hover {
    background: rgb(255, 0, 0, 0.5);
}
.close-btn {
    position: absolute;
    background-image: url('/images/anifull/closeanifullf-l.svg');
    background-size: cover;
    height: 30px;
    width: 30px;
    right: 30px;
    top: 20px;
    cursor: pointer;
}
.ani-full-edit-btn {
    display: block;
    margin-top: 10px;
    padding: 10px;
    width: 100%;
    background-color: red;
    color: #f8f8f8;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.ani-full-edit-btn:hover {
    background-color: pink;
}
#aniListUsrAdd {
    position: relative;
    margin: 10px 120px 0 0;
}

.pl-ep-sel-o {
    font-size: 16px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    width: 200px;
    margin-top: 10px;
    cursor: pointer;
}
.pl-ep-sel-o option {
  padding: 8px;
  background-color: #fff;
  color: #333;
}

.pl-ep-sel-o option:hover {
  background-color: #f0f0f0; 
}

.g-recaptcha {
    margin: 5px 0 -10px 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    position: relative;
    text-align: center;
    width: 164px;
    height: 144px;
}

.shadow {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

.prev-ep-bl {
    position: absolute;
    width: 60px;
    /*margin-left: 60.6%;*/
    left: 63.2%;
    margin-top: 50px;
    padding: 5px;
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 0, 0, 0.7);
    color: #f8f8f8;
    z-index: 11;
}

.prev-status-bl {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 15px;
    padding: 5px;
    border-radius: 5px 0 0 5px;
    color: #f8f8f8;
    z-index: 11;
}

.prev-status-bl.a {
    /*margin-left: 67.6%;*/
    left: 70.3%;
    background-color: rgba(153, 0, 102, 0.7);
}

.prev-status-bl.w {
    /*margin-left: 55.9%;*/
    left: 58.6%;
    background-color: rgba(0, 127, 255, 0.7);
}

.prev-status-bl.e {
    /*margin-left: 46%;*/
    left: 48.6%;
    background-color: rgba(0, 150, 0, 0.7);
}

.prev-status-bl.f {
    /*margin-left: 41.4%;*/
    left: 44.1%;
    background-color: rgba(255, 215, 0, 0.7);
}

#tsmp {
    height: 500px;
    width: 900px;
}

.ralbnr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    width: 50%;
    margin: 0 auto;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    margin-top: 90px;
    background-color: red;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    opacity: 70%;
    margin-bottom: -70px;
    min-height: 30px;
}

.ralbnr span {
    padding: 10px;
    opacity: 100%;
    color: #f8f8f8;
}

.halloween .hw-spiderweb-ani {
    position: absolute;
    height: 100px;
    width: 100px;
    margin-top: -15px;
    margin-left: -65px;
    z-index: 10;
    pointer-events: none;
}
.halloween .hw-spiderweb-ani span {
    position: absolute;
    background-image: url('/images/halloween/spiderweb-hw-d.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100px;
    width: 100px;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
}

.happy-ny .ny-garland-ani {
    display: none;
    position: absolute;
    height: 150px;
    width: 150px;
    margin-top: -36px;
    margin-left: -80px;
    z-index: 10;
    pointer-events: none;
}
.happy-ny .ny-garland-ani span {
    position: absolute;
    background-image: url('/images/happy-ny/ny-garland2-d.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 180px;
    width: 190px;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
}

/*.hw-spider-poster {
    position: absolute;
    background-image: url('/images/halloween/spider-hw-d.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100px;
    width: 100px;
}*/

.pumpkin-cont {
    position: fixed;
    width: 100vw;
    height: 100%;
    min-height: 100vh; 
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}
.halloween .hw-pumpkin-bg {
    position: absolute;
    width: 100px; 
    height: 100px;
    /*margin-top: 90px;*/
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.snowflake-cont {
    position: fixed;
    width: 100vw;
    height: 100%;
    min-height: 100vh; 
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}
.happy-ny .hw-snowflake-bg {
    position: absolute;
    width: 100px; 
    height: 100px;
    /*margin-top: 90px;*/
    background-size: cover;
    opacity: 0.3;
    z-index: -1;
}

.d-add-label {
    color: #333333;
    text-align: center;
}

/*.ani-rating {
    margin: 20px 0;
}*/

.stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.star-cont {
    position: relative;
    width: 50px;
    height: 60px;
    overflow: hidden;
    text-align: center;
}

.star {
    font-size: 50px;
    color: gray;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -o-linear-gradient(left, gold 0%, gold var(--fill), gray var(--fill), gray 100%);
    background: -webkit-gradient(linear, left top, right top, from(gold), color-stop(gold), color-stop(gray), to(gray));
    background: linear-gradient(to right, gold 0%, gold var(--fill), gray var(--fill), gray 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: default;
}

.ani-rating-all {
    font-size: 18px;
    color: #333;
}

.user-block {
    width: 100%;
}

.user-info {
    position: relative;
    height: 270px;
    text-align: center;
    top: 10px;
}

.user-avatar {
    position: relative;
    height: 200px;
    width: 200px;
    border-radius: 100px;
}

.user-name {
    position: relative;
    color: #333333;
    bottom: 22px;
}

.user-roles {
    position: relative;
    background: red;
    color: #f8f8f8;
    border-radius: 10px;
    width: 200px;
    padding: 5px;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.user-profile-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    margin: 20px;
    bottom: 5px;
}

.user-profile-btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    background: #e2e2e2;
    border-radius: 5px;
    padding: 10px;
    margin: 5px;
}

.user-block a.selected {
    opacity: 50%;
    pointer-events: none;
}

.user-edit-form {
    text-align: center;
    color: #333333;
    margin: 20px;
}

.user-edit-label {
    color: #333333;
}

.theme-d .user-profile-btn {
    background: #222222;
}

.theme-d .user-edit-form, .theme-d .user-name, .theme-d .user-edit-label {
    color: #f8f8f8;
}

#progline {
    display: none;
    width: 100%;
    background-color: #f3f3f3;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}
#progback {
    width: 0%;
    height: 20px;
    background-color: #007ae6;
    text-align: center;
    line-height: 20px;
    color: white;
}
.file-preview {
    margin: 10px 0;
    padding: 10px;
    border: 1px dashed #ccc;
    border-radius: 5px;
}
.cover-input {
    margin-top: 5px;
}
.cover-prog { 
    margin-top: 8px; 
    background: #f3f3f3; 
    border-radius: 6px; 
    overflow: hidden; 
    height: 12px; 
}
.cover-progbar { 
    width: 0%; 
    height: 12px; 
    background-color: #007ae6; 
    text-align: center; 
    line-height: 12px;
    color: white;
    font-size: 10px;
}
#avpub-container { 
    display: none;
    margin-top: 8px;
}
.flatpickr-calendar { 
    background: #f2f2f2;
    border: 1px solid #444;
}
.flatpickr-calendar::before, .flatpickr-calendar::after {
    opacity: 0;
}
.flatpickr-calendar, .flatpickr-calendar * {
    font-family: Gilroy;
}
.flatpickr-input[readonly]{
    cursor: pointer;
}
.flatpickr-day.today { 
    border: 1px solid #444 !important;
}
.flatpickr-day.today:hover, .flatpickr-day.today:focus { 
    background: #e6e6e6 !important;
    color: #393939 !important;
}
.flatpickr-day.selected { 
    background: #ff4141 !important;
    color: #f8f8f8 !important;
    border-color: #ff2a2a !important;
}
.shiki-pars-s {
    display: none;
    position: relative;
    background: #f8f8f8;
    border-radius: 10px;
    border-style: solid;
    max-height: 350px;
    width: 300px;
    overflow-y: scroll;
    z-index: 10;
}
.shiki-pars-s.active {
    display: block;
}
.d-multi-add-btn {
    margin-top: 10px;
    background: transparent;
    border-radius: 5px;
    border-style: solid;
    border-color: #333333;
    padding: 5px;
    cursor: pointer;
}

.uses-sct {
    margin: auto;
    padding: 20px;
    background: #f8f8f8;
    max-width: 800px;
    width: 100%;
    font-family: 'Gilroy';
}

.theme-d .uses-sct {
    background: #333333;
    color: #f8f8f8;
}

.ses-list {
    margin: 15px 0;
}

.ses-itm {
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f8f8;
    border-radius: 10px;
    border-left: 4px solid #ff4141;
    transition: all 0.3s ease;
}

.theme-d .ses-itm {
    background: #444444;
    border-left: 4px solid #ff4141;
}

.ses-itm.currses {
    border-left: 4px solid #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.theme-d .ses-itm.currses {
    background: rgba(76, 175, 80, 0.2);
}

.ses-inf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    align-items: center;
}

.ses-dtl {
    font-size: 14px;
}

.ses-dtl strong {
    color: #333333;
    font-weight: bold;
}

.theme-d .ses-dtl strong {
    color: #f8f8f8;
}

.ses-dtl span {
    color: #666;
}

.theme-d .ses-dtl span {
    color: #ccc;
}

.sescurrlbl {
    display: inline-block;
    position: relative;
    padding: 6px 12px;
    background: #4CAF50;
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
    left: 50%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seskillbtn {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
    background: #ff4141;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    margin-top: 5px;
    left: 50%;
    border: none;
    cursor: pointer;
}

.seskillbtn:hover {
    opacity: 80% !important;
}

.seskillallbtn {
    display: inline-block;
    padding: 12px 24px;
    background: red;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
}

.seskillallbtn:hover {
    opacity: 80% !important;
}

.ses-spoilbtn {
    display: inline-block;
    padding: 4px 12px;
    background: #ff4141;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 5px;
    transition: background 0.3s;
}

.ses-spoilbtn:hover {
    background: #ff6666;
    opacity: 0.9;
}

.theme-d .ses-spoilbtn {
    background: #e63e3e;
}

.theme-d .ses-spoilbtn:hover {
    background: #ff5555;
}

.ses-spoilcont {
    margin-left: 8px;
    font-family: monospace;
    word-break: break-all;
}

@media (max-width: 768px) {
    .ses-inf {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .uses-sct {
        padding: 15px;
        margin: 0;
        width: auto;
    }
    
    .ses-itm {
        padding: 12px;
    }
    
    .sescurrlbl {
        left: 0;
    }

    .seskillbtn {
        left: 0;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .seskillallbtn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .ip-spoiler-btn {
        padding: 3px 10px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .ses-inf {
        grid-template-columns: 1fr;
    }
    
    .ses-dtl {
        font-size: 13px;
    }
    
    .uses-sct {
        padding: 12px;
    }
    
    .seskillbtn {
        text-align: center;
    }
}

.user-name-w {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.user-roles-cont {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    margin: -20px auto 25px auto;
    border-radius: 999px;
    max-width: 30%;
    overflow-x: auto;
    padding: 10px;
    bottom: 20px;
    position: relative;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
}

.user-roles-cont::-webkit-scrollbar {
    display: none;
}

.user-roles-cont:active {
    cursor: grabbing;
}

.user-roles-cont::before,
.user-roles-cont::after {
    content: '';
    margin: auto;
}

.user-role-badge {
    background-color: #ff4141;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-role-badge.banned {
    background-color: #222;
}

.user-role-badge.empty {
    background-color: #555;
}

@media (max-width: 768px) {
    .user-roles-cont {
        max-width: 85% !important;
    }
}

.team-verif {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: default;
}

.team-verif::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 101;
}

.team-verif::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
}

.theme-d .team-verif::after {
    background: #f8f8f8;
    color: #333;
}

.theme-d .team-verif::before {
    border-color: #f8f8f8 transparent transparent transparent;
}

.team-verif:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-12px);
}

.team-verif:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

.theme-d .shiki-pars-s {
    background: #444444;
}
.theme-d .d-multi-add-btn {
    border-color: #f8f8f8;
}
.theme-d .flatpickr-calendar { 
    background: #2c2c2c !important;
    color: #f8f8f8 !important;
    border: 1px solid #444 !important;
}
.theme-d .flatpickr-day.today { 
    border: 1px solid #f8f8f8 !important;
}
.theme-d .numInput {
    background: #2c2c2c;
}
.theme-d .numInput:focus {
    background: #222222 !important;
}
.theme-d .flatpickr-time input {
    color: #f8f8f8 !important;
}
.theme-d .flatpickr-time input:hover {
    background: #222222 !important;
}
.theme-d .flatpickr-day:hover, .theme-d .flatpickr-day:focus { 
    background: #222222 !important;
}
.theme-d .flatpickr-monthDropdown-month {
    color: #222222;
}
.theme-d .flatpickr-day.prevMonthDay, .theme-d .flatpickr-day.nextMonthDay {
    color: #f8f8f8 !important;
    opacity: 30%;
}
.theme-d .flatpickr-weekday, .theme-d .flatpickr-month, .theme-d .flatpickr-current-month, .theme-d .flatpickr-prev-month, .theme-d .flatpickr-next-month, .theme-d .numInputWrapper, .theme-d .flatpickr-time-separator {
    color: #f8f8f8 !important;
    fill: #f8f8f8 !important;
}

@media (max-width: 728px) {
    #notification {
        margin-left: 15px;
    }
    .dwn-all-fnt {
        font-size: 16px;
    }
    .a-main-search {
        width: 90%;
    }
    .a-main-search-f {
        max-width: 70%;
    }
    .ani-bl {
        width: 220px;
    }
    .ani-bl img {
        width: 200px;
        height: 300px;
        border-radius: 5px;
    }
    #aniListUsrAdd {
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    .prev-ep-bl {
        /*margin-left: 63.01%;*/
        left: 69.6%;
    }
    .prev-status-bl.a {
        /*margin-left: 68.9%;*/
        left: 75.43%;
        background-color: rgba(153, 0, 102, 0.7);
    }
    .prev-status-bl.w {
        /*margin-left: 59.2%;*/
        left: 65.75%;
        background-color: rgba(0, 127, 255, 0.7);
    }
    .prev-status-bl.e {
        /*margin-left: 51%;*/
        left: 57.523%;
        background-color: rgba(0, 150, 0, 0.7);
    }
    .prev-status-bl.f {
        /*margin-left: 47.2%;*/
        left: 53.76%;
        background-color: rgba(255, 215, 0, 0.7);
    }
    .ani-full-name-ru {
        text-align: center;
    }
    .ralbnr {
        width: 90%;
    }
    #a-filter-cont {
        display: -ms-grid;
        display: grid;
    }
    .theme-d .img-404 {
        display: none;
    }
    .theme-d .txt-404 {
        display: block;
    }
}

@media (max-width: 768px) {
    .d-content {
        min-height: 200px;
        width: 90%;
        padding: 10px;
    }
    .ani-title {
        font-size: 18px;
    }
    .ep-blc-f {
        /*margin: 50px 25px 50px 28px !important;*/
        font-size: 15px !important;
    }
    /*.d-all-list {
        margin-bottom: 0;
    }*/
    .d-all-content-block {
        margin-top: 100px;
        margin-bottom: 50px;
    }
    .d-all-container {
        max-width: 85%;
        /*max-height: 340px;*/
        /*margin-top: 70px;*/
    }
    .d-ani-nl {
        max-width: 100px;
    }
    .d-ani-nl-anit {
        display: block;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    /*.d-pag {
        display: none;
    }
    .d-pag-m {
        display: flex;
    }*/
    .d-add-label {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .ani-title.wvo3j9stum9rg {
        margin: 5px 0 0 0;
    }
    .d-content.wvo3j9stum9rq {
        margin-top: 120px;
        margin-bottom: 50px;
    }
    .ep-blc-f /*.wvo3j9stum9ro*/ {
        width: 231px;
        /*margin: 50px auto 10px auto !important;*/
    }
    .dwn-all-tbl {
        width: 90%;
    }
    .r4esu32knr12uher {
        display: none;
    }
    .ani-add020 {
        display: none;
    }
    .happy-ny .ny-garland-ani {
        margin-top: -43px;
    }
    .happy-ny .ny-garland-ani span {
        height: 210px;
        width: 230px;
    }
}

@media (max-width: 864px) {
    .ani-title {
        font-size: 20px;
    }
}

@media (max-width: 960px) {
    #tsmp {
        height: 250px;
        width: 100%;
    }
}

@media (max-width: 980px) {
    .ani-full-head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 90%;
    }
    .poster {
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        margin: 0px;
        text-align: center;
    }
    .ani-full-edf-btn {
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    .ani-full-desc {
        width: 100%;
        margin: 0px;
    }
    .ani-full-pl-var {
        height: auto;
        width: auto;
    }
    .ani-full-pl-var iframe {
        height: 250px;
        width: 100%;
        min-height: 0;
        min-width: 0;
    }
}

@media (min-width: 1024px) {
    .halloween .hw-spiderweb-right {
        position: absolute;
        height: 100px;
        width: 100px;
        top: 62px;
        right: -10px;
        z-index: 200;
    }
    .halloween .hw-spiderweb-right span {
        position: absolute;
        background-image: url('/images/halloween/spiderweb-hw-d.png');
        background-size: cover;
        background-repeat: no-repeat;
        height: 100px;
        width: 100px;
    }
    .halloween .hw-bat-left {
        position: absolute;
        height: 100px;
        width: 100px;
        top: 62px;
        left: -10px;
        z-index: 200;
    }
    .halloween .hw-bat-left span {
        position: absolute;
        background-image: url('/images/halloween/bat-hw-d.png');
        background-size: cover;
        background-repeat: no-repeat;
        height: 100px;
        width: 100px;
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
    }
    .theme-d.halloween .hw-spiderweb-right span {
        background-image: url('/images/halloween/spiderweb-hw-l.png');
    }
    .theme-d.halloween .hw-bat-left span {
        background-image: url('/images/halloween/bat-hw-l.png');
    }
    .happy-ny .ny-garland-right {
        position: absolute;
        height: 100px;
        width: 100px;
        top: 76px;
        right: 0;
        z-index: 200;
    }
    .happy-ny .ny-garland-right span {
        position: absolute;
        background-image: url('/images/happy-ny/ny-garland-d.png');
        background-size: cover;
        background-repeat: no-repeat;
        height: 100px;
        width: 100px;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
    }
    .happy-ny .ny-garland-left {
        position: absolute;
        height: 100px;
        width: 100px;
        top: 76px;
        left: 0;
        z-index: 200;
    }
    .happy-ny .ny-garland-left span {
        position: absolute;
        background-image: url('/images/happy-ny/ny-garland-d.png');
        background-size: cover;
        background-repeat: no-repeat;
        height: 100px;
        width: 100px;
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
    }
    .theme-d.happy-ny .ny-garland-right span {
        background-image: url('/images/happy-ny/ny-garland-l.png');
    }
    .theme-d.happy-ny .ny-garland-left span {
        background-image: url('/images/happy-ny/ny-garland-l.png');
    }
}

@media (max-width: 1300px) {
    .d-content {
        width: 90%;
        padding: 10px;
    }
    .h-links {
        display: none;
    }
    .h-links-m.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        visibility: visible;
        opacity: 1;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
        position: absolute;
        /*width: 60%;*/
        right: 0;
        top: 0;
        min-height: 100vh;
        background: #f8f8f8;
        padding: 64px 20px 64px 20px;
        z-index: 5;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .h-links-m.active a {
        display: block;
        margin-right: 30px;
        padding: 14px 20px;
        font-size: 18px;
    }
    .h-links-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .h-tog-theme-m {
        display: block;
        background-image: url(/images/h-moon-d.svg);
        background-color: transparent;
        background-repeat: no-repeat;
        cursor: pointer;
        border: none;
        height: 30px;
        width: 30px;
        margin-right: 20px;
        background-size: 30px;
    }
    .h-usr-block {
        display: block;
        position: relative;
        margin: 0 50px 0 -6px;
        top: 3px;
    }
    .user-menu img {
        right: -43px !important;
    }
    .user-menu-cont {
        right: -70px;
        top: 30px;
    }
    .theme-d .h-links-m.active {
        background: #333333;
    }
}