.preform.preform-dark .form-control {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    background-color: rgba(55, 54, 74, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(254, 200, 72, 0.1) !important;
    color: #fff;
}
.preform.preform-dark .form-control:focus {
    background-color: rgba(55, 54, 74, 0.95);
    border: 1px solid rgba(254, 200, 72, 0.3) !important;
    box-shadow: 0 0 8px rgba(254, 200, 72, 0.2);
}
.rep-in .btn i {
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
}
.block_area {
    position: relative;
    display: block;
    margin-bottom: 3rem;
}
.block_area .block_area-header {
    margin-bottom: 1.5rem;
    display: block;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.block_area .block_area-header .cat-heading {
    color: #fec848;
    text-transform: uppercase;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(254, 200, 72, 0.3);
}
.block_area .block_area-header-tabs {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.preform .form-control {
    font-size: 13px;
    border-radius: 6px;
    border: none !important;
    padding: 0.7rem 1.2rem;
    height: auto;
}
.preform .form-control:disabled {
    cursor: not-allowed;
    background: #37364a;
    color: #ccc;
}
.link-highlight {
    color: #fec848 !important;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    font-weight: 500;
}
.link-highlight:hover {
    text-decoration: none;
    text-shadow: 0 0 8px rgba(254, 200, 72, 0.5);
}
.link-highlight:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #fec848;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s;
}
.link-highlight:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.form-control-textarea {
    max-width: 100%;
    min-width: 100%;
}
.dropdown-menu-model {
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 5px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: rgba(30, 30, 40, 0.95);
    backdrop-filter: blur(10px);
    animation: 0.3s forwards fadeInUp;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.dropdown-menu-model.dropdown-menu-normal {
    min-width: 150px;
    max-height: 240px;
    overflow: auto;
}
.dropdown-menu-model .dropdown-item {
    padding: 10px 15px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
    color: #ddd;
}
.dropdown-menu-model .dropdown-item:active,
.dropdown-menu-model .dropdown-item:hover {
    background: rgba(254, 200, 72, 0.15);
    color: #fec848;
}
.dropdown-menu-model .dropdown-item.active {
    background: rgba(254, 200, 72, 0.2);
    color: #fec848;
    font-weight: 600;
}
.comment-input .ci-buttons .ci-b-right,
.dropdown-menu-model .dropdown-item.active i {
    float: right;
}
.comments-wrap {
    padding: 30px;
    border-radius: 12px;
    background-color: #1d1d1d;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}
.comment-input,
.cw_list .cw_l-line {
    position: relative;
    padding-left: 55px;
    margin: 1rem 0;
    font-size: 13px;
    display: inline-block;
    width: 100%;
    transition: 0.3s;
}
.comment-input .user-avatar,
.cw_list .cw_l-line .user-avatar {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    padding-bottom: 40px;
    transition: 0.3s;
}
.cw_list .cw_l-line:hover .user-avatar {
    transform: scale(1.05);
}
.cw_l-line .ihead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}
.cw_l-line .ihead > div {
    display: inline;
    white-space: nowrap;
    margin-right: 4px;
}
.cw_l-line .ihead > div.time {
    font-size: 0.9em;
    color: rgba(136, 136, 136, 0.8);
    margin-left: 15px;
    transition: 0.3s;
}
.cw_l-line:hover .ihead > div.time {
    color: #888;
}
.cw_l-line .ibody {
    color: #ccc;
    margin-bottom: 0.8rem;
    overflow: hidden;
    line-height: 1.6;
    transition: 0.3s;
}
.cw_l-line:hover .ibody {
    color: #eee;
}
.cw_l-line .ibody p {
    margin-bottom: 0;
    word-wrap: break-word;
}
.cw_l-line .ibody.is-spoil p {
    display: none;
}
.cw_l-line .ibody.is-spoil p:last-of-type {
    display: block;
    white-space: nowrap;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    filter: blur(3px);
}
.cw_l-line .ibottom .ib-li {
    display: inline;
    margin-right: 1rem;
    position: relative;
}
.cw_l-line .ibottom .ib-li .btn {
    padding: 0;
    font-size: 0.9em;
    transition: 0.3s;
    position: relative;
}
.cw_l-line .ibottom .ib-li .btn:hover {
    color: #fec848;
    transform: translateY(-1px);
}
.cw_l-line .ibottom .ib-li .btn.active {
    font-weight: 500;
    color: #fec848;
}
.cw_l-line .ibottom .ib-li .btn.active i {
    transform: scale(1.1);
}
.comment-input.is-reply {
    padding-left: 45px;
}
.comment-input.is-reply .user-avatar {
    width: 30px;
    padding-bottom: 30px;
}
.user-name {
    color: #fff !important;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: 0.3s;
}
.user-name.is-level-a {
    color: #ffb526 !important;
    text-shadow: 0 0 10px rgba(255, 181, 38, 0.3);
}
.user-name.is-level-x span {
    font-size: 9px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-left: 8px;
    color: #94969d;
    border: 1px solid #94969d;
    padding: 1px 5px;
    border-radius: 4px;
    flex-shrink: 0;
    transition: 0.3s;
    background-color: rgba(148, 150, 157, 0.1);
}
.user-name.is-level-a:hover {
    text-shadow: 0 0 15px rgba(255, 181, 38, 0.5);
}
.show-spoil .btn {
    font-size: 11px;
    padding: 5px 12px;
    background-color: rgba(150, 150, 150, 0.2);
    border: 1px solid rgba(150, 150, 150, 0.3);
    transition: 0.3s;
    border-radius: 4px;
}
.show-spoil .btn:hover {
    background-color: rgba(150, 150, 150, 0.3);
    border: 1px solid rgba(150, 150, 150, 0.4);
    transform: translateY(-1px);
}
.rep-more .btn {
    color: #fec848;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    box-shadow: none !important;
    transition: 0.3s;
    border-radius: 4px;
}
.rep-more .btn:hover {
    background-color: rgba(229, 9, 20, 0.1);
    transform: translateY(-1px);
}
.rep-in .btn span::before {
    content: "View ";
}
.sc-header {
    position: relative;
    margin-bottom: 1rem;
}
.sc-header .sc-h-title {
    line-height: 32px;
    font-weight: 600;
    font-size: 1em;
    float: left;
    margin-right: 1rem;
}
.sc-header .sc-h-from {
    float: left;
    position: relative;
    padding-right: 1.5rem;
    margin-right: 1.5rem;
}
.sc-header .sc-h-from:before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 0;
    width: 1px;
    background-color: #444;
}
.ci-emo,
.comment-input .preform.preform-dark,
.sc-h-sort,
.user-avatar,
emoji-picker.emoji-picker {
    position: relative;
}
.sc-header .sc-h-from .btn,
.sc-header .sc-h-sort .btn {
    padding: 0;
    line-height: 32px;
}
.comment-input {
    margin-bottom: 1.5rem;
}
.comment-input .user-name {
    margin-bottom: 0.75rem;
}
.comment-input.is-reply {
    margin-bottom: 0;
}
.preform.preform-dark .form-control::placeholder {
    color: #fff;
    opacity: 0.5;
}
.comment-input .preform.preform-dark textarea.form-control {
    resize: none;
    box-shadow: none !important;
    height: 72px;
}
.comment-input .preform.preform-dark textarea.form-control.emo-on {
    padding-right: 40px;
}
.comment-input .ci-buttons {
    margin-top: 0.5rem;
}
.comment-input .ci-buttons .cb-li,
.comment-input .ci-buttons .ci-b-left {
    float: left;
}
.comment-input .ci-buttons .cb-li .btn {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.3s;
}
.comment-input .ci-buttons .cb-li .btn.btn-spoil {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.comment-input .ci-buttons .cb-li .btn.btn-spoil:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}
.comment-input .ci-buttons .cb-li .btn.btn-spoil.active {
    background-color: rgba(254, 200, 72, 0.15);
    color: #fec848;
    border-color: rgba(254, 200, 72, 0.3);
}
.comment-input .ci-buttons .ci-b-right .btn-secondary {
    background-color: rgba(100, 100, 100, 0.2);
    border-color: rgba(100, 100, 100, 0.3);
}
.comment-input .ci-buttons .ci-b-right .btn-secondary:hover {
    background-color: rgba(100, 100, 100, 0.3);
    transform: translateY(-1px);
}
.comment-input .ci-buttons .ci-b-right .btn-primary {
    background-color: rgba(254, 200, 72, 0.2);
    border-color: rgba(254, 200, 72, 0.4);
    color: #fec848;
}
.comment-input .ci-buttons .ci-b-right .btn-primary:hover {
    background-color: rgba(254, 200, 72, 0.3);
    border-color: rgba(254, 200, 72, 0.5);
    transform: translateY(-1px);
}
.comment-input .ci-emo {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
.comment-input .ci-emo .cb-icon {
    font-size: 16px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #9d9fa6;
}
.comment-input.is-reply .preform.preform-dark textarea.form-control {
    height: 54px;
}
.cb-li .btn.btn-spoil i {
    float: left;
    width: 16px;
    height: 16px;
    line-height: 16px;
    margin-top: 1px;
    text-align: center;
    border-radius: 50%;
    display: block;
    background-color: #4c4f57;
    font-size: 0;
}
::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: rgba(255, 255, 255, 0.4);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
.user-avatar {
    overflow: hidden;
    padding-bottom: 100%;
    height: 0;
    background-color: #37364a;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.user-avatar:hover {
    border-color: rgba(254, 200, 72, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.user-avatar .user-avatar-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
}
.dr-bottom-right {
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: 0 !important;
    bottom: 100% !important;
}
.block_area-header .float-left {
    float: none !important;
}
.block_area-header .clearfix {
    display: none !important;
}
@media screen and (max-width: 759px) {
    .block_area {
        margin-bottom: 30px;
    }
    .block_area .block_area-header-tabs {
        position: relative;
        margin-bottom: 0 !important;
    }
    .block_area.block_area-comment .block_area-header-tabs {
        padding-bottom: 0 !important;
    }
}
@media screen and (max-width: 480px) {
    .block_area .block_area-header {
        margin-bottom: 5px;
    }
}
@media screen and (max-width: 479px) {
    .dropdown-menu-model.dropdown-menu-normal {
        min-width: auto;
    }
    .dropdown-menu-model.dropdown-menu-normal .dropdown-item i {
        float: none;
        margin-left: 10px;
    }
    .block_area .block_area-header {
        position: relative;
    }
    .block_area .block_area-header-tabs {
        border-bottom: none;
        margin-bottom: 10px;
    }
    .comments-wrap {
        padding: 15px;
    }
    .sc-header .sc-h-sort {
        float: right;
    }
    .sc-header .sc-h-sort .btn {
        padding: 0;
        font-size: 13px;
    }
    .sc-header .sc-h-title span {
        display: none;
    }
    .sc-header {
        margin-bottom: 0.5em;
    }
    .sc-header > div > .btn {
        height: 32px;
    }
    .show-comments {
        margin: 0 -15px;
    }
    .comment-input {
        margin-bottom: 1rem;
    }
    .cw_l-line .ibody p {
        line-height: 1.4;
    }
    .comment-input .ci-buttons .cb-li .btn {
        font-size: 12px;
        font-weight: 500;
    }
    .cb-li .btn.btn-spoil i {
        margin-top: 0;
    }
    .cw_l-line .ibottom .ib-li {
        margin-right: 10px;
    }
    .comment-sort-buttons {
        background-color: transparent;
        border: none;
        padding: 0;
    }
    .btn-sort-option {
        padding: 4px 8px;
        font-size: 11px;
        margin: 0 1px;
    }
}
@media screen and (max-width: 380px) {
    .comment-input .user-avatar,
    .cw_list .cw_l-line .user-avatar {
        width: 33px;
        padding-bottom: 30px;
    }
    .comment-input,
    .cw_list .cw_l-line {
        padding-left: 45px;
    }
    .sc-header .sc-h-from {
        padding-right: 1rem;
        margin-right: 1rem;
    }
    .comment-sort-buttons {
        margin-top: 5px;
    }
}
@-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);
    }
}
.sc-h-sort .dropdown-menu {
    right: 0;
    left: auto;
}
.ci-emo {
    display: inline-block;
}
.emoji-picker {
    position: absolute;
    z-index: 999;
    display: none;
    min-width: 200px;
    max-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px;
}
@media (max-width: 600px) {
    .emoji-picker {
        max-width: 90vw;
    }
}
.cb-li .btn.btn-spoil.active i {
    background-color: #fec848;
    color: #111;
    font-size: 10px;
}
span.tag-name {
    color: #fec848;
}
.cw_l-line .ipinned {
    margin-bottom: 8px;
}
.cw_l-line .ipinned span {
    display: inline-block;
    padding: 3px 8px;
    background-color: rgba(254, 200, 72, 0.1);
    color: #fec848;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid rgba(254, 200, 72, 0.2);
}
.cw_l-line:hover .ipinned span {
    background-color: rgba(254, 200, 72, 0.15);
    box-shadow: 0 2px 8px rgba(254, 200, 72, 0.2);
}
.comment-focus > .info > .ibody {
    background-color: #3d4862;
    padding: 0.5rem;
    border-radius: 0.4rem;
}
.comment-sort-buttons {
    display: flex;
    background-color: rgba(40, 40, 55, 0.3);
    border-radius: 6px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-sort-option {
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    color: #ccc;
    transition: 0.3s;
    text-align: center;
    position: relative;
    margin: 0 2px;
    text-decoration: none !important;
}
.btn-sort-option:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}
.btn-sort-option.active {
    background-color: rgba(254, 200, 72, 0.15);
    color: #fec848;
    font-weight: 500;
}
.btn-sort-option.active:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: #fec848;
    border-radius: 2px;
}
.btn-sort-option span {
    position: relative;
    z-index: 2;
}
.sc-header .sc-h-sort {
    float: right;
    display: flex;
    align-items: center;
}
