.wrapper {
    background-color: var(--primary-color);
    overflow: hidden;
    /* transition: .2s linear; */
}

/* Header */
.header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4px;
    width: 100%;
    color: #fff;
    height: var(--header-height);
    z-index: 2;
    background-color: var(--primary-color);
}

/* phần giữa trang padđing top, vì header dùng position fixed */
.main {
    padding-top: var(--header-height);
}

.header__title {
    flex: 1;
}

.header__bar {
    display: none;
}

.header__bar i svg {
    width: 30px;
    top: 0px;
}

.header__title a {
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.header__title a span {
    color: #35f36b;
    text-transform: uppercase;
}

.header__search {
    flex: 4;
}

.header__search-input {
    position: relative;
    width: 70%;
}

.header__search-input>i {
    position: absolute;
    top: 4px;
    right: 9px;
    width: 16px;
}

.header__search-text {
    width: 100%;
    height: 34px;
    font-weight: 500;
    font-size: 16px;
}
/* End header */

/* Xem truoc ket qua tim kiem */
.search__result {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px 20px 7px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    display: none;
}

.search__result.active {
    display: block;
}

.search__result-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    cursor: default;
    user-select: none;
}

.search__result-head i svg {
    width: 14px;
}

.search__result-head span {
    color: #ffffffbf;
}

.search__result-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.search__result-body::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #5679a757;
}

.search__result-body .h5 {
    text-shadow: 0 0 #71bd1a;
    cursor: default;
    user-select: none;
}

.search__result-body a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s linear;
}

.search__result-body a:hover {
    color: #952929;
}

.search__result-k {
    max-height: 320px;
    overflow: auto;
}

.search__result-item {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 10px;
    text-decoration: none;
    transition: 0.1s linear;
}

.search__result-item:hover {
    background-color: #302E40;
}

.search__result-item img {
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border: 1px solid #fff;
    object-fit: fill;
}

#search_wrapper > span {
    display: block;
    margin: 46.5px 0;
    width: 100%;
    text-align: center;
    color: #fafafa;
}

.search__result-item div {
    flex: 1;
}

.search__result-item div span {
    color: #fff;
    line-height: 22px;
    height: auto;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.search__result-item div p {
    font-size: 14px;
    color: #cccc;
    line-height: 25px;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
/* End xem truoc ket qua tim kiem */


/* Phần người người đã đăng nhập, ở header */
.header__action-info {
    position: relative;
    display: flex;    
    align-items: center;
    justify-content: space-between;
}

.header__action-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.2s linear;
    object-fit: fill;
}

.header__action-first:hover .header__action-img {
    box-shadow: 0 0 12px rgb(255 255 255 / 80%);
}

.header__action-first {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    min-width: 150px;
}

.header__action-name {
    margin-right: auto;
}

.header__action-first > i svg {
    width: 14px;
    position: relative;
    top: 4px;
    left: 8px;
}
/* End phần người người đã đăng nhập, ở header */

/* Menu thong tin người dùng đăng nhập */
.header__action--menu {
    position: absolute;
    top: 50px;
    left: -12px;
    background-color: var(--primary-color);
    width: 140%;
    padding: 14px;
    box-shadow: 0 0 15px rgba(5, 5, 5, 0.4);
    border-radius: 10px;
    transition: opacity 0.3s linear;
    z-index: 1;
}

.header__action--menu.hide {
    opacity: 0;
    padding: 0;
}

.header__action--menu-hh {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    text-shadow: 0 0 #952929;
    padding-bottom: 5px;
    background-color: #e438387d;
}

.header__action--menu.hide .header__action--menu-hh {
    display: none;
}

.header__action--menu-hh > i {
    width: 16px;
}

.header__action--menu-hh > span {
    padding-left: 4px;
}

.header__action--menu-list {
    text-decoration: none;
    color: white;
    margin-bottom: 10px;
    display: block;
    transition: 0.2s linear;
}

.header__action--menu.hide .header__action--menu-list {
    display: none;
}

.header__action--menu-list:hover {
    color: #952929;
}

.header__action--menu-list.last {
    margin: 20px 0 0;
    padding-top: 6px;
    border-top: 1px solid #ffffff3d;
}
/* End menu thong tin người dùng đăng nhập */

/* Icon chuông thông báo */
.header__action-bell {
    position: relative;
    margin-left: 27px;
}

.header__action-bell i {
    position: relative;
    top: 1px;
    left: 1px;
}

.header__action-bell i svg {
    width: 16px;
}

.header__action-bell div {
    position: absolute;
    top: 3px;
    right: -1px;
    width: 8px;
    height: 8px;
    background-color: #952929;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}
/* End icon chuông thông báo */

/* Người dùng chưa đăng nhập */
.header__action-login {    
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.header__action-login i svg {
    width: 16px;
    position: relative;
    top: 3px;
}

.header__action-login span {
    padding-left: 6px;
}
/* End người dùng chưa đăng nhập */

/* Thông báo menu */
.header__action--tb {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: var(--primary-color);
    width: 190%;
    padding: 12px;
    box-shadow: 0 0 15px rgba(5, 5, 5, 0.4);
    border-radius: 10px;
    transform-origin: top right;
    z-index: 1;
}

.header__action--tb.hide {
    display: none;
}

.header__action--tb-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid #5679a757;
}

.h5 {
    font-weight: bold;
}

.header__action--tb-top .h5 {
    color: #fff;
    font-size: 16px;
    user-select: none;
    cursor: default;
}

.header__action--tb-top a {
    text-decoration: none;
    color: #fff;
}

.header__action--tb-top a:hover {
    text-decoration: underline;
}

.header__action--tb-body {
    max-height: 420px;
    overflow: auto;
}

.header__action--tb-list {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 16px 10px;
    transition: 0.1s linear;
    text-decoration: none;
    color: #fff;
}

.header__action--tb-list:hover {
    background-color: rgba(130, 132, 141, 0.05);
}

.header__action--tb-list.visited {
    color: #cccc;
}

.header__action--tb-list img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    margin-right: 10px; 
    object-fit: fill;
    border: 1px solid #fafafa;
}

.header__action--tb-content {
    flex: 1;
}

.header__action--tb-content span {
    font-weight: bold;
}
/* End thong bao menu */


/* Thanh bên trái */
.main__sidebar {
    position: fixed;
    top: var(--header-height);
    bottom: 0;
    min-width: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.wrap__rsidebar {
    padding-left: 0;
}

.main__sidebar,
.main__rsidebar {  /* rsidebar: là phần nội dung ở giữa, bên phải */
    display: flex;
    flex-direction: column;
}

.main__sidebar-menu {
    border-bottom: 1px solid #5679a757;
    margin-bottom: 36px;
}

.main__sidebar-menu--overlay {
    z-index: 0;
    opacity: 0;
}

.main__sidebar-menu .header__title {
    display: none;
}

.main__sidebar-menu.last {
    border-bottom: unset;
}

.main__sidebar-menu > .h5,
.main__rsidebar--list > .h5 {
    color: #f0e2e2;
    margin-bottom: 12px;
    font-size: 14px;
}

.main__sidebar-list {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 9px;
    margin-bottom: 10px;
    font-size: 16px;
    text-decoration: none;
    color: #babac1;
    transition: 0.2s linear;
}

.main__sidebar-list.click {
    color: #fff;
}

.main__sidebar-list.click .main__sidebar-list--more {
    transform: rotate(180deg);
}

.main__sidebar-list:hover {
    background-color: #c54242;
    color: #fff;
    border-radius: 10px;
}

.main__sidebar-list.active {
    background-color: #c54242;
    color: #fff;
}

.main__sidebar-list > i {
    position: relative;
    bottom: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 12px;
}

.main__sidebar-list > i svg {
    width: 27px;
}

.main__sidebar-list > i.k-ic-facebook svg {
    width: 21px;
}

.main__sidebar-list--more {
    margin-left: auto;
    transition: 0.2s linear;
}

.main__sidebar-details {
    padding-left: 24px;
    transition: 0.2s linear;
    opacity: 1;
    height: 300px;
    overflow: auto;
    transform-origin: top center;
}

.main__sidebar-details::-webkit-scrollbar {
    display: none;
}

.main__sidebar-details.hide {
    opacity: 0;
    height: 0;
}

.main__sidebar-details li {
    cursor: pointer;
    transition: 0.2s linear;
    padding-left: 12px;
}

.main__sidebar-details .end {
    list-style: none;
    color: #fff;
    cursor: default;
    user-select: none;
    padding: 10px 0 10px 22px;
}

.main__sidebar-details li:hover {
    background-color: #c54242;
}

.main__sidebar-details li::marker {
    color: #c54242;
}

.main__sidebar-details a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
    width: 70%;
}
/* End thanh bên trái */

/* Content main */
.main__content {
    min-height: 100vh;
    background-color: #1d3042;
    border-radius: 20px;
    padding: 20px;
}

.main__thongbao {
    position: relative;
    padding: 20px;
    background-color: #1f1d2b;
    border-radius: 10px;
    margin-bottom: 20px;
}

.main__thongbao a {
    text-decoration: none;
}

.main__thongbao i {
    position: absolute;
    top: 8px;
    left: 8px;
    color: #d8caca;
    background-color: #4a49496b;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    text-align: center;
}

.main__thongbao i svg {
    width: 12px;
    top: -2px;
}

.main__thongbao h5 {
    position: relative;
    color: #d8caca;
    padding-left: 32px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 27px;
    font-weight: bold;
}

.main__thongbao h5:last-child {
    margin-bottom: unset;
}

.main__thongbao h5::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
}

.main__thongbao h5 span {
    color: #fff305;
    text-transform: uppercase;
}

/* Right sidebar (thuộc content main) */
.main__rsidebar {
    min-height: 100vh;
}

.main__rsidebar--box {
    background-color: var(--primary-color);
    border-radius: 6px;
    margin-bottom: 27px;
}

.main__rsidebar--box.facebook {
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 0 20px rgba(51, 50, 50, 0.05);
}

.main__rsidebar--box.first {
    margin-bottom: 0;
}

.main__rsidebar--box img {
    width: 100px;
    height: 100px;
    box-shadow: 0 0 10px rgb(255 255 255 / 40%);

    border: 1px solid #123456;
}

.main__rsidebar--box-head {
    color: #fff;
}

.main__rsidebar--box-head .h5 {
    margin: 10px;
    font-size: 12.5px;
}

.main__rsidebar--box-head p {
    margin: 10px 0 16px;
    font-size: 12px;
}

.main__rsidebar--box-head button {
    padding: 2px 10px;
    background-color: #2f6bdb;
    color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 10px rgb(255 255 255 / 5%);
    transition: 0.1s linear;
}

.main__rsidebar--box-head button:hover {
    filter: brightness(1.05);
}

.main__rsidebar--box-head button:nth-of-type(1) {
    margin-right: 4px;
}

.main__rsidebar--box-head button:nth-of-type(2) {
    margin-left: 4px;
    background-color: #008000;
}

.main__rsidebar--box.cmt {
    padding: 16px 12px 12px;
    box-shadow: 0 0 20px rgba(51, 50, 50, 0.05);
    color: #eee;
}

.main__rsidebar--box.cmt img {
    box-shadow: unset;
    margin-right: 10px;
}

.main__rsidebar--box.cmt h5 {
    color: #dad24a;
    font-size: 14px;
    padding-right: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    max-height: 18px;
    line-height: 18px;
    overflow: hidden;
}

.main__rsidebar--box.cmt p {    
    font-size: 13px;
    color: #ddd;
    line-height: 21px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.main__rsidebar--cmtf-head h5 {
    line-height: 22px;
    max-height: 44px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.main__rsidebar--cmtf-head p {
    line-height: 22px;
    max-height: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.main__rsidebar--cmtf-head {
    display: block;
    text-decoration: none;
    color: #fff;
}

.main__rsidebar--cmtf-head,
.main__rsidebar--cmtf-body div {
    display: flex;   
}

.main__rsidebar--cmtf-head {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1d3042;
}

.main__rsidebar--cmtf-head img {
    width: 40px;
    height: 55px;
    border-radius: 4px;
}

.main__rsidebar--cmtf-body img {
    width: 27px;
    height: 27px;
    border-radius: 4px;
}

.main__rsidebar--cmtf-body span {
    font-size: 12px;
    font-style: italic;
    display: inline-block;
    min-width: 60px;
}

.main__rsidebar--cmtf-body > div > h5 + span {
    position: relative;
    top: 1.2px;
}

.main__rsidebar--cmtf-body > div + div {
    margin-top: 10px;
}

.main__rsidebar--list {
    margin-bottom: 27px;
}

.main__rsidebar--list.top-vew {
    background-color: var(--primary-color);
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 0 20px rgb(51 50 50 / 5%);
}

.main__rsidebar--action {
    margin-bottom: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 2px;
    border-bottom: 1px solid #fafafa2b;
    border-top: 1px solid #fafafa2b;
    background: #1f1d2b;
}

.main__rsidebar--action-item {
    background-color: transparent;
    color: #f0e2e2c4;
    font-size: 12px;
}

.main__rsidebar--action-item.active {
    color: #e46565;
}

.main__rsidebar--item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
}

.main__rsidebar--item img {
    width: 44px;
    height: 65px;
    border-radius: 2px;
    margin-right: 10px;
}

.main__rsidebar--item-text {
    display: flex;
    flex-direction: column;
}

.main__rsidebar--item-text h5 {
    font-size: 14px;
    transition: 0.2s linear;
    font-weight: bold;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.main__rsidebar--item-text span {
    margin-top: auto;
    font-size: 13px;
}

.main__rsidebar--item:hover .main__rsidebar--item-text h5 {
    color: #952929;
}

.main__rsidebar--item-int {
    font-size: 12px;
    color: #aaa;
}

.main__rsidebar--item-int span {
    padding: 0 6px;
}

.main__rsidebar--item-int span:nth-of-type(1) {
    color: #e7e755;
    padding-left: 0px;
    border-right: 1px solid #4640408f;
}

.main__rsidebar--item-int span:nth-of-type(1),
.main__rsidebar--item-int span:nth-of-type(2) {
    border-right: 1px solid #4640408f;
}

.main__rsidebar--item-int span:first-child i {
    position: relative;
    bottom: 1px;
}

.main__rsidebar--item-int span {
    color: #55d1e7;
}

/* .main__rsidebar--list-more {
    background-color: #00000033;
    color: #d8caca;
    width: 100%;
    font-size: 16px;
    transition: 0.2s linear;
    border-radius: 20px;
}

.main__rsidebar--list-more:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    color: #e6dada;
} */
/* End right sidebar (thuộc content main) */

/* Nội dung chính giữa */
.main__app {
    margin: 0 18px 18px 0;
}

.main__app--head-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.main__app--title {
    color: #f0e2e2;
    font-size: 20px;
    text-transform: uppercase;
}

.main__app--title i svg {
    width: 27px;
    color: #f0e2e2;
    top: 3px;
}

.main__app--head-link {
    color: #d8caca;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    background-color: #0000002a;
    padding: 0 10px;
    transition: 0.3s linear;
}

.main__app--head-link:hover {
    border-radius: 4px;
    box-shadow: 0 0 10px rgb(255 255 255 / 10%);
    color: #e6dada;
}

/* Icon lửa hơi to, nên giảm lại */
.main__app--title .k-ic-fire svg {
    width: 20px;
}

/* tạo khoảng cách giữ các nội dung, kiểu slide. Từ thư viện slpide */
.splide {
    margin-bottom: 32px;
}
/* End nội dung chính giữa */

/* Slide bự */
.slide--l__item {
    position: relative;
    width: auto;
}

.slide--l__item--overlay {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #00000077;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.slide--l__item--name {
    color: #fff;
    font-size: 27px;
    margin-bottom: 10px;
    overflow: hidden;
    line-height: 34px;
    max-height: 68px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.slide--l__item--quality {
    font-size: 12px;
    color: #fff;
    margin-bottom: 10px;
}

.slide--l__item--quality span {
    padding-right: 20px;
}

.slide--l__item--quality span:first-child {
    color: #e7e755;
}

.slide--l__item--content {
    overflow: hidden;
    line-height: 26px;
    max-height: 144px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #f3e5e5;
    text-shadow: 0 0 #0e0e0d;
}

.slide--l__item--button {
    margin-top: auto;
    font-size: 16px;
    background-color: #952929;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    width: 40%;
    padding: 6px 0;
    text-align: center;
    transition: 0.2s linear;
    font-weight: bold;
    filter: drop-shadow(2px 4px 6px black);
}

.slide--l__item--button:hover {
    box-shadow: 0 0 10px rgb(255 255 255 / 30%);
}

.slide--l__item--button i svg {
    top: 4px;
}
/* Slide bự */

/* Slide nhỏ */
.slide--s__item {
    position: relative;
    width: auto;
}

.slide--s__item--overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #0000005b;
    height: 100%;
    border-radius: 10px;
    opacity: 0;
    transition: 0.2s linear;
}

.slide--s__item--overlay i {
    border: 6px solid #ffffff8c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: auto;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    transition: 0.1s linear;
    transform-origin: center center;
    opacity: 0;
}

.slide--s__item--overlay i svg {
    top: 0;
    left: 3px;
    margin: auto;
    opacity: 0;
}

.slide--s__item--overlay.show {
    opacity: 1;
    background-color: #00000029;
}

.slide--s__item--overlay:hover {
    opacity: 1;
}

.slide--s__item--overlay:hover i {
    width: 60px;
    height: 60px;
    opacity: 1;
}

.slide--s__item--overlay:hover i svg {
    opacity: 1;
}

.slide--s__item--overlay i svg {
    width: 24px;
}

.slide--s__item--ep {
    position: absolute;
    top: 4px;
    left: 4px;
}

.slide--s__item--rate {
    position: absolute;
    top: 4px;
    right: 4px;
}

.slide--s__item--name {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    text-shadow: 0 0 10px black;
    width: 100%;
    text-align: center;
    line-height: 16px;
    max-height: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
/* End slide nhỏ */


/* Phần list anime */
.main__app--list {
    display: flex;
    align-items: center;
    margin: 0 -11px;
}

.main__app--item {
    margin: 0 11px;
    text-align: center;
    margin-bottom: 20px;
}

.main__app--item-contn {
    position: relative;
}

.main__app--item-img {
    width: 100%;
    height: 216px;
    vertical-align: middle;
    border-radius: 10px;
    object-fit: fill;
}

.main__app--item-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #0000005b;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    display: flex;
    opacity: 0;
    transition: 0.2s linear;
}

.main__app--item-play i {
    border: 6px solid #ffffff8c;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin: auto;
    color: #fff;
    transition: 0.1s linear;
    transform-origin: center center;
    opacity: 0;
}

.main__app--item-play:hover {
    opacity: 1;
}

.main__app--item-play:hover i {
    opacity: 1;
    width: 60px;
    height: 60px;
}

.main__app--item-play:hover i svg {
    opacity: 1;
    width: 25px;
}

.main__app--item-play i svg {
    width: 10px;
    top: 10px;
    left: 3px;
    opacity: 0;
    transform-origin: center center;
    transition: 0.1s linear!important;
    color: #fff;
}

.main__app--item-status {
    position: absolute;
    top: 4px;
    left: 4px;
}

.main__app--item-cmt {
    position: absolute;
    bottom: 4px;
    right: 4px;
}

.main__app--item-rate {
    position: absolute;
    bottom: 4px;
    left: 4px;
}

.main__app--item-link {
    color: #fff;
    text-decoration: none;
    padding-top: 6px;
    display: block;
    font-size: 16px;
    transition: 0.2s linear;
    line-height: 22px;
    max-height: 55px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.main__app--item-play:hover {
    opacity: 1;
}

.main__app--item-link:hover {
    color: #fff305;
}

.main__app--item-view {
    color: #ddd;
    font-size: 13px;
}

.main__app--list-more-item {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    text-decoration: none;
    color: #fff;
    background-color: #9f2a2a;
    padding: 6px 0;
    font-size: 16px;
}

.main__app--list-more-item:hover {
    text-decoration: underline;   
}


/* Footer */
.footer {
    margin: 20px 0;
}

.mobile__menu {
    display: none;
}

.footer__wrapper--first {
    border-bottom: 1px solid #fff;
    text-align: right;
    padding-bottom: 10px;
    cursor: pointer;
    color: #fff;
    padding-right: 20px;
    margin-bottom: 10px;
}

.footer__wrapper--first i svg {
    top: 14.5px;
}

.footer__wrapper--last {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__wrapper--last-nav {
    display: flex;
}

.footer__wrapper--last-author {
    color: #fff;
    flex: 1;
}

.footer__wrapper--last-author .h5 {
    color: #bcbdc5;
    user-select: none;
    cursor: pointer;
    position: relative;
    margin-bottom: 6px;
}

.footer__wrapper--last-author .h5::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 49px;
    height: 2px;
    background-color: #fff;
}

.footer__wrapper--last-author .h5 span {
    font-size: 24px;
    color: #fff;
}

.footer__wrapper--last-author p {
    font-size: 14px;
}

.footer__wrapper--last-author p a {
    color: currentColor;
    text-decoration: none;
    transition: 0.3s linear;
}

.footer__wrapper--last-author p a:hover {
    color: #fff350;
}

/* .footer__author--c {
    font-size: 13px;
}

.footer__author--c span {
    font-weight: bold;
} */

.footer__wrapper--last-gr {
    margin-left: 20px;
    padding: 0 10px;
}

.footer__wrapper--last-gr .h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.footer__wrapper--last-gr a {
    text-decoration: none;
    display: block;
    color: #bcbdc5;
    font-size: 14px;
    position: relative;
    display: flex;
    transition: 0.2s linear;
}

.footer__wrapper--last-gr a:hover {
    color: #fff;
}

.footer__wrapper--last-gr a i svg {
    width: 10px;
}

/* Comment */
.details__comment {    
    width: 100%;
    margin-top: 36px;
}

.details__comment .details__comment-title {
    display: inline-block;
    cursor: pointer;
    user-select: none;
    color: #fff;
    position: relative;
    font-weight: bold;
    font-size: 18px;
}

.details__comment .details__comment-title::before {
    content: '';
    position: absolute;
    bottom: -6px;
    width: 60%;
    height: 3px;
    border-radius: 10px;
    background-color: #fff;
}

.details__comment .details__comment-title svg {
    width: 27px;
}

.details__comment-pu {
    user-select: none;
    text-align: center;
    margin-top: 20px;
    background-color: #eee;
    font-size: 16px;
    padding: 6px;
}

.details__comment-pu span {
    font-weight: bold;
    text-transform: uppercase;
    background-color: #96b4f5;
    padding: 2px 6px;
    color: #19372f;
}

.details__comment-box--in4 {
    width: 100%;
    background-color: #1f1d2b;
    margin: 20px 0;
    font-size: 16px;
    border-radius: unset;
}

.details__comment-box--text {
    width: 100%;
    padding: 16px 14px;
    resize: none;
    background-color: #1f1d2b;
    color: #eeee;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    min-height: 140px;
}

.details__comment--times {
    color: #eee;
    font-size: 12px;
    margin-left: auto;
    font-style: italic;
}

.details__comment-box--cont-head span > span{
    display: inline-block;
    border: 1px solid #535160;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 4px;
    line-height: 22px;
    color: #bfafaf;
    text-transform: uppercase;
}

.child .details__comment-box--cont-head span > span {
    padding: 0 8px;
    font-size: 11px;
    line-height: 18px;
}

.details__comment-cust {
    position: relative;
    margin-left: 8px;
    cursor: pointer;
}

.details__comment-cust--icon {
    font-size: 16px;
    color: #ccc;
    position: relative;
    bottom: 3px;
    letter-spacing: 0.5px;
    font-weight: bold;
    line-height: 20px;
    user-select: none;
}

.details__comment-cust--list {
    position: absolute;
    background-color: #fafafa;
    list-style: none;
    min-width: 120px;
    border-radius: 4px;
    top: 27px;
    right: 0;
    display: none;
}

.details__comment-cust--list.show {
    display: unset;
    z-index: 1;
}

.details__comment-cust--item {
    font-size: 14px;
    color: #1d3042;
    cursor: pointer;
    transition: 0.1s linear;
    padding: 4px 9px;
}

.details__comment-cust--item:hover {
    color: #1f1d2b;
    background-color: #eee;
}

.details__comment-cust--item svg {
    top: 3px!important;
    right: 3px;
}

.details__comment-box--item-rep.hide {
    display: none;
}

.details__comment--times > span {
    font-style: italic;
}

.details__comment-box--act {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    position: relative;
}

.details__comment-list--gif {
    position: absolute;
    top: 50px;
    left: 0;
    background-color: var(--primary-color);
    border-radius: 4px;
    padding: 8px 4px;
    border: 1px solid;
    opacity: 0;
    transition: 0.16s linear;
    transform-origin: top left;
    z-index: -1;
    max-height: 220px;
    overflow: auto;
}

.details__comment-list--gif.show {
    opacity: 1;
    z-index: 2;
}

.details__comment-list--gif a {
    display: inline-block;
    transition: 0.1s linear;
    text-decoration: none;
}

.details__comment-list--gif table a:hover {
    background-color: #fff;
}

.details__comment-box--gif {
    display: flex;
    align-items: center;
}

.details__comment-box--gif img {
    cursor: pointer;
    width: 43px;
    height: 43px;
    margin: 0 4px;
    transition: 0.1s linear;
    padding: 4px;
}

.details__comment-box--gif img:hover {
    background-color: #ffff;
}

.textarea__gif-item,
.details__comment-box--cont-text img {
    width: 49px;
    height: 49px;
    margin: 6px 6px 0;
    border: 1px solid;
}

.gif__box-parent.show {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.details__comment-box--send {
    background-color: #c54242;
    color: #fff;
    border-radius: 6px;
    transition: .2s ease;
    font-size: 14px;
}

.details__comment-box--send:hover {
    transform: scale(1.008);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);

}

.details__comment-box--body {
    margin-top: 27px;
}

.details__comment-around {
    width: 100%;
}

.details__comment-box--item {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    transition: 0.2s linear;
}

.main__rsidebar--cmtf-body {
    position: relative;
}

.details__comment-box--item > .lock,
.main__rsidebar--cmtf-body > .lock,
.comment__model-item > .lock {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 10px);
    background-color: #08080617;
    text-align: center;
    color: #ccc;
    text-shadow: 0 0 10px black;
    font-style: italic;
    z-index: 1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: blur(0px)!important;
}

.main__rsidebar--cmtf-body > .lock {
    font-size: 14px;
}

.comment__model-item > .lock {
    font-size: 13px;
    width: 100%;
    left: 0;
    top: 0;
}

.details__comment-box--item.lock *,
.main__rsidebar--cmtf-body.lock *,
.comment__model-item.lock *:not(div.actrl){
    filter: blur(4px);
    user-select: none;
    cursor: default;
}

.details__comment-box--item.parent-cmt::after {
    content: '';
    position: absolute;
    background-color: #413f4f;
    top: 50%;
    left: 8px;
    width: 1px;
    height: 50%;
}

.details__comment-box--item.child::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -19px;
    width: 16px;
    height: 40px;
    border-left: 1px solid #413f4f;
    border-bottom-left-radius: 6px;
    background-color: transparent;
    border-bottom: 1px solid #413f4f;
}

.details__comment-box--item.child::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -19px;
    width: 1px;
    height: calc(100% + 20px);
    background-color: #413f4f;
}

.details__comment-box--item.child.last::before {
    display: none;
}

.details__comment-box--item.scroll {
    box-shadow: 0px 0px 15px 0px #c542ba7c;
    padding: 10px;
    border-radius: 10px;
}

.details__comment-box--item.child {
    margin-left: 27px;
    border: unset;
}

/* .details__comment-box--item.child.last {
    margin-bottom: 32px;
} */

/* .details__comment-box--item ~ .details__comment-box--item.child:last-child {
    border-bottom: 1px solid #44405c;
} */

.comment__action {
    position: relative;
    display: flex!important;
    align-items: center;
}

.comment__action-list.show {
    transition-delay: 0.4s;
    transform: scale(1);
    opacity: 1;
}

.comment-reply:hover {
    filter: brightness(1.05);
}

.comment__action-list {   
    position: absolute;
    bottom: 30px;
    left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1f1d2b;
    border-radius: 30px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.144);
    border: 1px solid #23384b;
    color: #fff;
    padding: 5px 8px;
    transform: scale(0);
    transition: 0.06s linear;
    transform-origin: bottom left;
    transition-delay: 0.4s;
    opacity: 0;
}

.comment__action::after {
    content: '';
    position: absolute;
    left: 0;
    top: -8px;
    width: 100%;
    height: 16px;
}

.comment__action-list img {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    transition: 0.08s linear;
    transform-origin: bottom center;
    cursor: pointer;
}

.comment__action-list img:hover {
    transform: scale(1.4);
}

.comment__action-list img:hover + span {
    opacity: 1;
}

.comment__action-list--item:last-child img {
    margin-right: unset;
}

.comment__action-list--item {
    position: relative;
    display: flex;
}

.comment__action-list span {
    position: absolute;
    top: -35px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    color: rgb(255, 255, 255);
    font-size: 12px;
    padding: 0 8px;
    left: 39%;
    transition: 0.08s linear;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    white-space: nowrap;
}

.comment__action-count {    
    position: absolute;
    display: flex;
    align-items: center;
    bottom: 20px;
    right: 0;
    background-color: #1f1d2ba1;
    border-radius: 16px;
    padding: 0 6px;
    font-size: 12px;
    box-shadow: 0 0 12px rgb(0 0 0 / 16%);
    cursor: pointer;
    border: 1px solid #23384b;
    color: #fff;
    min-width: 45px;
}

.comment__action-count img {
    width: 18px;
    height: 18px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.103);
    margin-right: 2px;
}

.details__comment-box--item > img {
    width: 49px;
    height: 49px;
    border-radius: 50px;
    margin-right: 6px;
    border: 1px solid #123456;
    object-fit: fill;
    position: relative;
    bottom: 0.1px;
}

.child.details__comment-box--item > img {
    width: 40px;
    height: 40px;
}

.details__comment-box--cont {
    background-color: #1f1d2b;
    padding: 12px;
    width: 100%;
    position: relative;
    border-radius: 15px;
}

.child .details__comment-box--cont {
    padding: 10px;
}

/* .details__comment-box--cont::before {
    content: '';
    position: absolute;
    top: 0.1825px;
    left: -20px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #1f1d2b transparent transparent;
}

.details__comment-box--item.child .details__comment-box--cont::before {
    top: -20px;
    left: 0px;
    border-color: transparent transparent #1f1d2b transparent;
} */

.details__comment-box--cont-head {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.cmt-edited {
    font-size: 12px; 
    font-style: italic;
    color:#ccc!important;
    cursor: pointer;
}

.details__comment-box--cont-head h5 {
    color: #fff;
    font-size: 16px;
    text-shadow: 0px 0px 2px #c54242;
    margin-right: 12px;
}

.child .details__comment-box--cont-head h5 {
    font-size: 15px;
}

.details__comment-box--cont-head span {
    color: #d0ef19;
    font-size: 14px;
    font-weight: bold;
}

.details__comment-box--cont-head svg {
    top: 4px;
}

.details__comment-box--cont-text {
    color: #ddd;
    font-weight: 200;
    font-size: 16px;
    line-height: 24px;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.child .details__comment-box--cont-text {
    font-size: 15px;
}

.details__comment-box--cont-text img {
    margin-top: 0;
    border-radius: unset;
}

.details__comment-box-repl {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #eee;
    padding: 0 15px;
}

.comment-reply {
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    display: inline-block;
    margin-right: 12px;
    transition: 0.2s linear;
}

.comment-time {
    font-size: 12px;
    color: #bbb;
    font-style: italic;
}

.box--page {
    padding: 2px 14px;
    margin-right: 3px;
    margin-bottom: 3px;
    display: inline-block;
}

.box--page.disabled {
    cursor: no-drop;
    user-select: none;
    filter: brightness(0.9);
}

.box--page.active {
    background-color: #c54242;
    color: #eee;
    padding: 2.5px 14px;
}

/* reply comment */
.details__comment-box--item-rep {
    margin-left: 60px;
    margin-bottom: 40px;
    margin-top: -10px;
}

/* Breadcrumb */
.breadcrumb {
    list-style: none;
    padding: 4px 0 24px;
}

.breadcrumb > li {
    display: inline-block;
    text-decoration: none;
}

.breadcrumb > li > a {
    text-decoration: none;
    color: #eee;
    transition: 0.2s ease;
    font-size: 16px;
    font-style: italic;
}

.breadcrumb > li > a:hover {
    color: #bbb;
}

.breadcrumb > li.active {
    color: #bbb;
}

.breadcrumb > li + li:before {
    padding: 0 0 0 10px;
    color: #bbb;
    content: "/\00a0";
}

#light-off {
    cursor: pointer;
}

/** Light mode */
div.light-mode {
    --primary-color: #f7f7f7;
}
div.light-mode .header {
    background-color: var(--primary-color);
    color: #123456;
}
div.light-mode .header__title a {
    color: #123456;
}
div.light-mode .header__action--menu-hh {
    color: #fff;
}
div.light-mode .header__action--menu-list {
    color: #123456;
}
div.light-mode .header__action--menu-list:hover {
    color: #ad4545;
}
div.light-mode .header__action--menu-list.last {
    border-top: 1px solid #12345645;
}
div.light-mode .header__action--tb-top .h5, 
div.light-mode .header__action--tb-top a {
    color: #123456;
}
div.light-mode .header__action--tb-list {
    color: #123456;
}
div.light-mode .header__action--tb-list img {
    box-shadow: unset;
    border: 1px solid #123456;
}
div.light-mode .header__search-text {
    background-color: #fff;
    color: #123456;
    box-shadow: 0 0 10px rgb(247 247 247 / 20%);
}
div.light-mode .search__result {
    box-shadow: 0 0 15px rgb(155 152 152 / 60%);
}
div.light-mode .input-fc:focus, 
div.light-mode .input-fc:not(:placeholder-shown) {
    border-color: #123456d4;
}
div.light-mode .search__result-head span {
    color: #123456;
}
div.light-mode .search__result-body .h5 {
    text-shadow: 0 0 #ed4949;
    color: #e94d78;
}
div.light-mode .search__result-body a {
    color: #123456;
}
div.light-mode .search__result-item span {
    color: #141b22;
}
div.light-mode .search__result-body a:hover {
    color: #000;
}
div.light-mode .header__action-login {
    background-color: #e94d78;
    color: #faf8f8;
}
div.light-mode .main__content {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
div.light-mode .main__thongbao {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px rgb(84 80 80 / 20%);
}
div.light-mode .main__thongbao i {
    color: #f3f3f3;
    background-color: #d34c4ccc;
}
div.light-mode .main__thongbao h5 {
    color: #123456;
}
div.light-mode .main__thongbao h5::after {
    background-color: #123456;
}
div.light-mode .main__thongbao h5 span {
    color: #9f9b58;
}
div.light-mode .main__sidebar-list.active,
div.light-mode .main__sidebar-list:hover,
div.light-mode .main__sidebar-details li:hover {
    background-color: #e94d78;
    color: #efeeee;
}
div.light-mode .main__sidebar-menu > .h5, 
div.light-mode .main__rsidebar--list > .h5 {
    color: #123456;
}
div.light-mode .main__sidebar-list,
div.light-mode .main__sidebar-details li::marker{
    color: #303136;
}
div.light-mode .main__sidebar-details a {
    color: #303136;
}
div.light-mode .main__sidebar-details .end {
    color: #e94d78;
}
div.light-mode .main__sidebar-list.click {
    color: #123456;
}
div.light-mode .main__app--title,
div.light-mode .main__app--title svg {
    color: #383840;
}
div.light-mode .main__app--head-link {
    color: #fcf8f8;
    background-color: #f14072;
}
div.light-mode .main__rsidebar--item {
    color: #49464a;
}
div.light-mode .main__rsidebar--item:hover h5 {
    color: #1d3f61;
}
div.light-mode .main__rsidebar--item-int span:nth-of-type(1) {
    color: #ff0000;
}
div.light-mode .main__rsidebar--item-int span {
    color: #1f3c97c9;
}
/* div.light-mode .main__rsidebar--list-more {
    background-color: #404247;
    color: #f7ecec;
}
div.light-mode .main__rsidebar--list-more:hover {
    box-shadow: 0 0 10px rgb(14 13 13 / 40%);
} */
div.light-mode .main__app--item-link {
    color: #302e2e;
}
div.light-mode .main__app--item-link:hover {
    color: #e50e3f;
}
div.light-mode .main__app--item-view {
    color: #525050;
}
div.light-mode .footer__wrapper--first {
    border-bottom: 1px solid #123456;
    color: #123456;
}
div.light-mode .footer__wrapper--last-author {
    color: #123456;
}
div.light-mode .footer__wrapper--last-author .h5 { 
    color: #e94d78; ; 
}
div.light-mode .footer__wrapper--last-author .h5::before {
    background-color: #9b7777b8;
}
div.light-mode .footer__wrapper--last-author .h5 span { 
    color: #9b7777; 
}
div.light-mode .footer__wrapper--last-author p a:hover {
    color: #e50e3f;
}
div.light-mode .footer__wrapper--last-gr .h5 {
    color: #2e2323;
}
div.light-mode .footer__wrapper--last-gr a {
    color: #47484c;
}
div.light-mode .breadcrumb > li > a {
    color: #265687;
}
div.light-mode .breadcrumb > li.active {
    color: #76818d;
}
div.light-mode .details__comment .details__comment-title {
    color: #123456;
}
div.light-mode .details__comment-pu {
    background-color: #1e5770;
    color: #fff;
}
div.light-mode .details__comment-box--text,
div.light-mode .details__comment-box--in4 {
    background-color: #f6f6f6;
    color: #0a1c2e;
    box-shadow: 0 0 10px #c6d1d3;
}
div.light-mode .details__comment-box--cont {
    background-color: #f7f7f7;
    box-shadow: 0 0 10px #e5d6d6;
}
/* div.light-mode .details__comment-box--cont::before {
    border-color: transparent #f7f7f7 transparent transparent;
}
div.light-mode .details__comment-box--item.child .details__comment-box--cont::before {
    border-color: transparent transparent #f7f7f7 transparent;
} */
div.light-mode .details__comment-box--cont-head h5 {
    color: #000;
    text-shadow: unset;
}
div.light-mode .details__comment-box--cont-head span {
    color: #7e90b5;
}
div.light-mode .details__comment-box--cont-text {
    color: #123456;
}
div.light-mode .details__comment-box-repl,
div.light-mode .comment-time {
    color: #10184d;
}
div.light-mode .main__thongbao--last.red {
    color: #c54242;
}
div.light-mode .main__thongbao--last.yellow {
    color: #49e114;
}
div.light-mode .header__action--tb,
div.light-mode .header__action--menu {
    box-shadow: 0 0 15px rgba(206, 204, 204, 0.4);
}
div.light-mode .main__rsidebar--box.facebook {
    background-color: #81bdf5;
    box-shadow: 0 0 10px rgb(84 80 80 / 20%);
}
div.light-mode .main__rsidebar--box.cmt,
div.light-mode .main__rsidebar--list.top-vew {
    background-color: unset;
    box-shadow: 0 0 10px rgb(84 80 80 / 20%);
}
div.light-mode .main__rsidebar--box.cmt h5,
div.light-mode .main__rsidebar--box.cmt p,
div.light-mode .main__rsidebar--cmtf-head, 
div.light-mode .main__rsidebar--cmtf-body {
    color: #123456;
}
div.light-mode .main__rsidebar--cmtf-head {
    border-bottom: 1px solid #afbcc96b;
}
div.light-mode .details__comment-list--gif table a:hover ,
div.light-mode .details__comment-box--gif img:hover {
    background-color: #123456;
}
div.light-mode .gif__box-parent.show {
    background-color: #123456;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
div.light-mode .details__comment-box--in4,
div.light-mode .details__comment-box--text {
    background-color: #f7f7f7;
    color: #123456;
}
div.light-mode .details__comment--times {
    color: #123456;
    border-color: #1234562e;
}
div.light-mode .details__comment-box--cont-head span > span {
    color: #162f48!important;
}
div.light-mode .comment__action-count {
    background-color: #ffffff7d;
    box-shadow: 0 0 12px rgb(159 148 148 / 16%);
    border: unset;
    color: #123456;
}
div.light-mode .comment__action-list {
    background-color: #ffffff;
    box-shadow: 0 0 12px rgb(0 0 0 / 20%);
    border: unset;
}
/* div.light-mode .details__comment-box--item {
    border-bottom: 1px solid #ebe6e6;
} */
div.light-mode .details__comment-box--item.child.last {
    border-color: #ebe6e6;
}
div.light-mode .details__comment-box--item > img {
    box-shadow: 0 0 10px #e5d6d6;
    border-color: #fff0;
}
div.light-mode .header__action--tb-list.visited {
    color: #66798c;
}
div.light-mode .header__action--tb-list.visited img {
    border: 1px solid #12345660;
}
div.light-mode .search__result-item div p {
    color: #585d63;
}
div.light-mode .search__result-item:hover {
    background-color: #e4f2f1;
}
div.light-mode #search_wrapper > span {
    color: #123456be;
}
div.light-mode .details__comment-box--item.child::before,
div.light-mode .details__comment-box--item.parent-cmt::after {
    background-color: #dedcf2;
}
div.light-mode .details__comment-box--item.child::after {
    border-color: #dedcf2;
}
div.light-mode .details__comment-box--item > .lock,
div.light-mode .main__rsidebar--cmtf-body > .lock {
    background-color: #fafafa80;
    color: #1e1d1ded;
    text-shadow: 0 0 10px #d6cccc;
}
div.light-mode .details__comment-cust--icon,
div.light-mode .cmt-edited {
    color: #123456!important;
}
div.light-mode .main__rsidebar--action {
    background-color: var(--primary-color);
    border-color: #1234560d;
}
div.light-mode .main__rsidebar--action-item {
    color: #123456be;
}
div.light-mode .main__rsidebar--action-item.active {
    color: #123456;
}