*{
    box-sizing: border-box;
}

/* scroll bar */
/* scroll bar */
::-webkit-scrollbar { width: 7px;height: 7px; background-color: #F5F5F5;}
::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5;}
::-webkit-scrollbar-thumb { background-color: #ea2f5c; background-image: -webkit-linear-gradient(45deg,rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)}
.scroll::-webkit-scrollbar {
    width: 7px;
}

.scroll::-webkit-scrollbar-thumb {
    background-color: #ea2f5c;
    outline: 1px solid #ea2f5c;
}

.scroll::-webkit-scrollbar-button {
    height: 0px;
}

.scroll::-webkit-scrollbar-track {
    background: none;
    border: none;
    box-shadow: 0px 0px 0px #dfdfdf inset;
    border-radius: 0px;
}

.scroll {
    scrollbar-color: #ea2f5c #dedede;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}
.scroll::-webkit-scrollbar:horizontal{
    height: 7px;
    background-color: #dedede;
}
.scroll::-webkit-scrollbar-thumb:horizontal{
    background: #ea2f5c;
    border-radius: 7px;
        
}
/* scroll bar */
.scroll_2::-webkit-scrollbar { width: 10px; height: 10px; background-color: #F5F5F5;}
.scroll_2::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5;}
.scroll_2::-webkit-scrollbar-thumb { background-color: #ea2f5c; background-image: -webkit-linear-gradient(45deg,rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)}

.loading-container {
  position: relative;
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  transition: opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, transform 0.38s ease-in-out;
  -webkit-transition: opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, transform 0.38s ease-in-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.loading-container.abslt {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -15px;
  margin-left: -15px;
}
.loading-container .shape {
  position: absolute;
  width: 15px;
  height: 15px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.loading-container .shape.shape-1 {
  left: 0;
  background-color: #4285F4;
  opacity: 0.83;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.loading-container .shape.shape-2 {
  right: 0;
  background-color: #33A752;
  opacity: 0.83;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.loading-container .shape.shape-3 {
  bottom: 0;
  background-color: #f48a21;
  opacity: 0.83;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.loading-container .shape.shape-4 {
  bottom: 0;
  right: 0;
  background-color: #FBBC04;
  opacity: 0.83;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.loading-container .shape-1 {
  animation: shape1 2.5s infinite reverse;
}
.loading-container .shape-2 {
  animation: shape2 2.5s infinite reverse;
}
.loading-container .shape-3 {
  animation: shape3 2.5s infinite reverse;
}
.loading-container .shape-4 {
  animation: shape4 2.5s infinite reverse;
}

@keyframes shape1 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, 15px);
  }
  50% {
    transform: translate(15px, 15px);
  }
  75% {
    transform: translate(15px, 0);
  }
}
@keyframes shape2 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-15px, 0);
  }
  50% {
    transform: translate(-15px, 15px);
  }
  75% {
    transform: translate(0, 15px);
  }
}
@keyframes shape3 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(15px, 0);
  }
  50% {
    transform: translate(15px, -15px);
  }
  75% {
    transform: translate(0, -15px);
  }
}
@keyframes shape4 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(0, -15px);
  }
  50% {
    transform: translate(-15px, -15px);
  }
  75% {
    transform: translate(-15px, 0);
  }
}

.load_overlay {
    position: fixed;
    background: #000;
    opacity: 0.8;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99990;
    display: none;
}

.load_process {
    position: fixed;
    margin: auto;
    z-index: 99999;
    background: #fff;
    width: 400px;
    max-width: calc(90% - 10px);
    height: 120px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    overflow: hidden;
    display: none;
}
.load_process .load_note {
    color: #f60;
}
.load_process_2 {
    position: fixed;
    margin: auto;
    z-index: 99999;
    background: #fff;
    width: 400px;
    max-width: calc(90% - 10px);
    height: 120px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    overflow: hidden;
    display: none;
}
.load_process_2 .loading{
    position: relative;
    width: 100%;
    height: 60px;
}
.load_process_2 .load_note {
    display: flex;
    color: #f60;
    justify-content: center;
    align-items: center;
    height: 20px;
}
.load_process_2 .load_note .list_dot{
    display: flex;
    color: #f60;
    justify-content: flex-start;
    align-items: flex-end;
    height: 10px;
}
.load_process_2 .load_note .loading-dot {
    width: 3px;
    height: 3px;
    background-color: #f60;
    border-radius: 50%;
    margin: 0 2px;
    animation: blinkAnimation 1.5s infinite ease-in-out;
}

.load_process_2 .load_note .loading-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.load_process_2 .load_note .loading-dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes loadingAnimation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}
.dot1 {
    animation-delay: 0s;
}

.dot2 {
    animation-delay: 2s;
}

.dot3 {
    animation-delay: 4s;
}

@keyframes blinkAnimation {
    0%, 100% {
        opacity: 1;
    }
    20%, 40% {
        opacity: 0;
    }
    60%, 80% {
        opacity: 1;
    }
}
.bg_violet {
    background: #bd10e0!important;;
}
.bg_green {
    background-color: #8bc34a!important;
}
.bg_orange {
    background-color: #f60 !important;
}
.bg_blue {
    background-color: #1877f2 !important;
}
.bg_red {
    background-color: #f00 !important;
}
.bg_brown{
    background-color: #c3a34a !important;
}
.bg_green_bold{
    background: #057c40 !important;
}
.color_violet {
    color: #bd10e0!important;;
}
.color_white {
    color: #fff!important;
}
.color_green {
    color: #8bc34a!important;
}
.color_orange {
    color: #f60 !important;
}
.color_blue {
    color: #04a1d4 !important;
}
.color_red {
    color: #f00 !important;
}
.color_brown{
    color: #c3a34a !important;
}
.list-chapters {
    width: 100%;
    padding: 10px;
}

.list-chapters .box_title {
    position: relative;
    margin: auto;
    width: 100%;
    height: 25px;
    margin-bottom: 20px;
    clear: both;
}

.list-chapters .box_title .icon_title {
    float: left;
    height: 25px;
    width: 25px;
}

.list-chapters .box_title .icon_title img {
    height: 25px;
    width: 25px;
}

.list-chapters .box_title span {
    float: left;
    height: 25px;
    line-height: 28px;
    margin-left: 10px;
    font-size: 16px;
    color: #f60;
    font-weight: 700;
    text-transform: uppercase;
}

.list-chapters .box_list {
    background-color: #fff;
    border-radius: 6px;
    /*box-shadow: 0 2px 3px rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .1);*/
    color: #4a4a4a;
    display: flex;
    justify-content: flex-start;
    gap:10px;
    max-height: 500px;
    overflow-y: auto;
}

.list-chapters .box_list .chapter-item {
    position: relative;
    width: calc(100%/3 - 20px/3);
    display: flex;
    border:1px solid #dedede;
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.list-chapters .box_list .chapter-item a{
    width: 100%;
}
.list-chapters .box_list .chapter-item a:hover {
    color: #f60;
}
.list-chapters .box_list .chapter-item .icon_vip{
    position: absolute;
    margin: auto;
    right: 0;
    top: 0;
}
.list-chapters .box_list .chapter-item .vip{
    position: absolute;
    margin: auto;
    right: 0;
    top: 0;
    width: 1.5rem;
    height: 1rem;
    line-height: 1rem;
    display: inline-block;
    font-size: 0.5rem;
    border-radius: 0px;
    color: white;
    text-align: center;
    background-color: #f00;
}
.list-chapters .box_list .chapter-item .free{
    position: absolute;
    margin: auto;
    right: 0;
    top: 0;
    width: 1.5rem;
    height: 1rem;
    line-height: 1rem;
    display: inline-block;
    font-size: 0.5rem;
    border-radius: 0px;
    color: white;
    text-align: center;
    background-color: #2a9900;
}
.list-chapters .box_list .chapter-item .price{
    display: inline-block;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
    width: 80px;
    height: 100%;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    text-align: center;
}
.list-chapters .box_list .chapter-item .chap_update {
    position: relative;
    float: right;
    width: 200px;
    text-align: right;
}
.box_comment {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
}

.box_comment .box_title {
    position: relative;
    margin: auto;
    width: 100%;
    height: 25px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #f60;
    text-transform: uppercase;
    clear: both;
}
.box_comment .text_area {
    position: relative;
    margin: auto;
    width: 100%;
}
.box_comment .text_area textarea{
    position: relative;
    margin: auto;
    width: 100%;
    height: 100px;
    padding: 10px;
    line-height: 20px;
    font-size: 14px;
    border-radius: 3px;
    border: 1px solid #ddd;
    padding-right: 35px;
    box-sizing: border-box;
}
.box_comment .text_area svg{
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 20px;
    color: #3f94d5;
    cursor: pointer;
}
.list_comment {
    position: relative;
    margin: auto;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.list_comment .li_comment{
    position: relative;
    margin: auto;
    display: inline-block;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.list_comment .li_comment:last-of-type{
    border-bottom: none;
}
.list_comment .li_comment .avatar_comment{
    width: 50px;
    margin-right: 10px;
    float: left;
}
.list_comment .li_comment .avatar_comment img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    object-fit: cover;
}
.list_comment .li_comment .info_comment{
    width: calc(100% - 60px);
    float: left;
}
.list_comment .li_comment .info_comment .top_comment{
    width: 100%;
    line-height: 28px;
}
.list_comment .li_comment .info_comment .top_comment span{
    margin-left: 10px;
}
.list_comment .li_comment .info_comment .top_comment span.name{
    margin-left: 0px;
}
.list_comment .li_comment .info_comment .top_comment span a{
    color: #3f94d5;
}
.list_comment .li_comment .info_comment .text_comment{
    width: 100%;
    line-height: 28px;
}
.list_comment .li_comment .info_comment .bottom_comment{
    width: 100%;
    line-height: 28px;
}
.list_comment .li_comment .info_comment .bottom_comment span{
    margin-left: 5px;
    font-size: 12px;
}
.list_comment .li_comment .info_comment .bottom_comment span.reply{
    margin-left: 0px;
    color: #3f94d5;
    cursor: pointer;
}
.list_comment .li_comment .info_comment .bottom_comment span.show_reply{
    color: #3f94d5;
    cursor: pointer;
}
.list_comment .li_comment .info_comment .bottom_comment span.show_reply span{
    color: #212529;
}
.list_comment .li_comment .info_comment .bottom_comment span.del_comment{
    color: #3f94d5;
    cursor: pointer;
}
.list_comment .li_comment .info_comment .bottom_comment span.del_comment span{
    color: #212529;
}
.list_comment .li_comment .info_comment .text_area_sub{
    position: relative;
    margin: auto;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
.list_comment .li_comment .info_comment .text_area_sub textarea{
    position: relative;
    margin: auto;
    width: 100%;
    height: 100px;
    padding: 10px;
    line-height: 20px;
    font-size: 14px;
    border-radius: 3px;
    border: 1px solid #ddd;
    padding-right: 35px;
    box-sizing: border-box;
}
.list_comment .li_comment .info_comment .text_area_sub svg{
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 20px;
    color: #3f94d5;
    cursor: pointer;
}
.box_comment{
    position: relative;
    width: 100%;
}
.box_comment .noidung_comment{
    width: 100%;
    padding: 10px;
    border:1px solid #dadce0;
}
.box_comment .noidung_comment:focus{
    outline: none;
}
.box_comment .noidung_comment img{
    max-width: 16px;
    max-height: 16px;
}
.box_comment .list_button_comment{
    width: 100%;
    display: flex;
    margin-top: 5px;
    align-items: center;
    gap:5px;
}
.box_comment .list_button_comment .send_comment{
    width: calc(100% - 41px);
    height: 36px;
    border:none;
    border-radius: 5px;
    background: #fb5083;
    color: #fff;
    cursor: pointer;
}
.box_comment .list_button_comment .smile{
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 35px;
    background: transparent;
    color:#fb5083;
    border: none;
}
.box_comment .box_sticker{
    position: absolute;
    margin: auto;
    background: #fff;
    width: 320px;
    height: 250px;
    bottom: 50px;
    right: 50px;
    border-radius: 5px;
    border:1px solid #dedede;
    z-index: 999;
    display: none;
}
@media (max-width: 768px) {
    .box_comment .box_sticker{
        width: 100%;
        right: 0;
    }
}
.box_comment .box_sticker .list_tab{
    display: flex;
    justify-content: flex-start;
    height: 70px;
    gap:10px;
    border-bottom: 1px solid #dedede;
    padding: 10px;
    margin: auto;
}
.box_comment .box_sticker .list_tab .li_tab{
    width: 50px;
    height: 100%;
    border:1px solid #dedede;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}
.box_comment .box_sticker .list_tab .li_tab:hover{
    background: #f3f3f3;
}
.box_comment .box_sticker .list_tab .li_tab img{
    width: auto;
    height: 100%;
}
.box_comment .box_sticker .list_sticker{
    width: 100%;
    height: calc(100% - 50px);
}
.box_comment .box_sticker .list_sticker .list_sticker_content{
    display: none;
}
.box_comment .box_sticker .list_sticker .list_sticker_content.active{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:10px;
    padding: 10px;
    overflow: auto;
    height: 100%;
}
.box_comment .box_sticker .list_sticker .list_sticker_content .li_sticker{
    width: 30px;
    height: 30px;
    padding: 5px;
}
.box_comment .box_sticker .list_sticker .list_sticker_content .li_sticker:hover{
    cursor: pointer;
    background: #f3f3f3;
    border-radius: 5px;
    border:1px solid #dedede;
}
.box_comment .box_sticker .list_sticker .list_sticker_content .li_sticker img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.list_comment .li_comment .list_sub_comment{
    width: 100%;
    padding-left: 50px;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment{
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    display: inline-block;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment:last-of-type{
    border-bottom: none;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .avatar_sub_comment{
    width: 50px;
    margin-right: 10px;
    float: left;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .avatar_sub_comment img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -o-border-radius: 50%;
    object-fit: cover;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .info_sub_comment{
    width: calc(100% - 120px);
    float: left;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .info_sub_comment .top_sub_comment{
    width: 100%;
    line-height: 28px;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .info_sub_comment .top_sub_comment span{
    margin-left: 10px;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .info_sub_comment .top_sub_comment span.sub_name{
    margin-left: 0px;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .info_sub_comment .top_sub_comment span a{
    color: #3f94d5;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .info_sub_comment .text_sub_comment{
    width: 100%;
    line-height: 28px;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .info_sub_comment .bottom_sub_comment{
    width: 100%;
    line-height: 28px;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .info_sub_comment .bottom_sub_comment span{
    font-size: 12px;
    margin-left: 5px;
}
.list_comment .li_comment .list_sub_comment .li_sub_comment .info_sub_comment .bottom_sub_comment span.del_sub_comment{
    font-size: 12px;
    margin-left: 0px;
    color: #3f94d5;
    cursor: pointer;
}

.box_chat_pop{
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}
.box_chat_pop_content{
    position: absolute;
    margin: auto;
    width:510px;
    max-width: calc(100% - 10px);
    left: 0;
    right: 0;
    bottom: 50px;
    background: #fff;
    border-radius: 10px;
}
.box_chat_pop .box_chat_pop_content .box_chat{
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat{
    position: relative;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 40px;
    line-height: 40px;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .title_box_chat{
    position: relative;
    float: left;
    height: 100%;
    font-size: 20px;
    color: #3f94d5;
    font-weight: 700;
    text-transform: uppercase;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .title_box_chat i{
    font-size: 28px;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .tool_chat{
    position: relative;
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .tool_chat button{
    border-radius: 50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    -o-border-radius:50%;
    border:2px solid #3f94d5;
    height: 35px;
    width: 35px;
    margin-left: 10px;
    font-size: 20px;
    color: #3f94d5;
    cursor: pointer;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .tool_chat button.toggle_chat i{
    font-size: 20px;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .tool_chat button.sound_chat i{
    font-size: 22px;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat{
    position: relative;
    display: inline-block;
    padding: 10px;
    width: 100%;
    height: 267px;
    background: #fff;
    margin-top: 5px;
    border-radius: 5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    -o-border-radius:5px;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat{
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(100% - 42px);
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_load_chat{
    position: relative;
    width: 100%;
    height: 30px;
    text-align: center;
    display: inline-block;
    margin-bottom: 10px;
    clear: both;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat{
    position: relative;
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
    clear: both;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .avatar_chat{
    width: 35px;
    height: 35px;
    float: left;
    cursor: pointer;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .avatar_chat img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    -o-border-radius:50%;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .info_chat{
    position: relative;
    float: left;
    padding-left: 10px;
    padding-top: 7px;
    width: calc(100% - 35px);
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .info_chat .content_text{
    width: calc(100% - 80px);
    display: inline-block;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .info_chat .content_text .name{
    cursor: pointer;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .info_chat .time{
    position: absolute;
    right: 5px;
    font-size: 12px;
    float: left;
}

.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 37px;
    background: #fff;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat input{
    position: relative;
    display: inline-block;
    padding-left: 10px;
    padding-right:10px;
    width: 100%;
    height: 37px;
    background: #fff;
    border-radius: 5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    -o-border-radius:5px;
    border:1px solid #dedede;
}

.box_pop_add {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}

.box_pop_add .box_pop_add_content {
    left: 50% !important;
    top: 50% !important;
    position: fixed !important;
    transform: translate(-50%, -50%) !important;
    width: 510px;
    max-width: calc(100% - 20px);
    background: #fff;
    max-height: calc(100vh - 10px);
    border-radius: 5px;
}

.box_pop_add .box_pop_add_content .box_edit_thongtin{
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    max-height: calc(100% - 64px);
    max-width: 520px;
    width: 100%;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin h2{
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.0075em;
    padding: 16px 24px;
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin h2 button{
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin {
    width: 100%;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .list_ngoai_hinh{
    width: 100%;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .list_ngoai_hinh .li_ngoai_hinh{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    padding-left: 0px;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .list_ngoai_hinh .li_ngoai_hinh:before{
    width: 16px;
    height: 16px;
    line-height: 16px;
    border: 1px solid #9200e7;
    -webkit-transition: background .25s ease-in-out;
    transition: background .25s ease-in-out;
    content: "";
    display: inline-block;
    margin: 5px;
    border-radius: 100%;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .list_ngoai_hinh .li_ngoai_hinh.selected:before {
    font-family: 'FontAwesome';
    background: #9200e7;
    text-align: center;
    content: "\f00c";
    color: #fff;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input .border_input{
    display: inline-flex;
    flex-direction: column;
    position: relative;
    min-width: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    vertical-align: top;
    width: 100%;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input .border_input label{
    color: rgba(0, 0, 0, 0.6);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    display: block;
    transform-origin: left top;
    text-overflow: ellipsis;
    max-width: calc(133% - 32px);
    position: absolute;
    left: 0px;
    top: 0px;
    transform: translate(14px, -9px) scale(0.75);
    z-index: 1;
    pointer-events: auto;
    user-select: none;
    padding: 0px;
    white-space: nowrap;
    overflow: hidden;
    transition: color 200ms cubic-bezier(0, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1), max-width 200ms cubic-bezier(0, 0, 0.2, 1);
    background: #fff;
    padding-left: 10px;
    padding-right: 10px;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.87);
    box-sizing: border-box;
    cursor: text;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    position: relative;
    border-radius: 4px;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input .text{
    width: 100%;
    padding: 10px;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input input{
    letter-spacing: inherit;
    color: currentcolor;
    box-sizing: content-box;
    height: 1.4375em;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0px;
    width: 100%;
    animation-name: mui-auto-fill-cancel;
    animation-duration: 10ms;
    font: inherit;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    background: none;
    margin: 0px;
    padding: 16.5px 14px;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input input:focus{
    outline: none;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input fieldset{
    text-align: left;
    position: absolute;
    inset: -5px 0px 0px;
    margin: 0px;
    padding: 0px 8px;
    pointer-events: none;
    border-radius: inherit;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    min-width: 0%;
    border-color: rgba(0, 0, 0, 0.23);
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input fieldset legend{
    float: unset;
    width: auto;
    overflow: hidden;
    display: block;
    padding: 0px;
    height: 11px;
    font-size: 0.75em;
    visibility: hidden;
    max-width: 100%;
    transition: max-width 100ms cubic-bezier(0, 0, 0.2, 1) 50ms;
    white-space: nowrap;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input fieldset legend > span {
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
    opacity: 0;
    visibility: visible;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .content_thongtin .li_input .css-18u61dl-mark{
    color: rgb(133, 97, 197);
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .list_button{
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 8px;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex: 0 0 auto;
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .list_button button {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    color: rgb(103, 58, 183);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.box_pop_add .box_pop_add_content .box_edit_thongtin .list_button button:hover {
    text-decoration: none;
    background-color: rgba(103, 58, 183, 0.04);
}

.box_pop_comment {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
}
.box_pop_comment .box_pop_comment_content {
    left: 50% !important;
    top: 50% !important;
    position: fixed !important;
    transform: translate(-50%, -50%) !important;
    width: 510px;
    max-width: calc(100% - 20px);
    background: #fff;
    max-height: calc(100vh - 10px);
    border-radius: 5px;
}

.box_pop_comment .box_pop_comment_content .box_edit_thongtin{
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 11px 15px -7px, rgba(0, 0, 0, 0.14) 0px 24px 38px 3px, rgba(0, 0, 0, 0.12) 0px 9px 46px 8px;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    max-height: calc(100% - 64px);
    max-width: 520px;
    width: 100%;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin h2{
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.0075em;
    padding: 16px 24px;
    flex: 0 0 auto;
    background: linear-gradient(to right, rgb(251, 80, 131), rgb(251, 116, 79));
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin h2 button{
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin {
    width: 100%;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .list_ngoai_hinh{
    width: 100%;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .list_ngoai_hinh .li_ngoai_hinh{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    padding-left: 0px;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .list_ngoai_hinh .li_ngoai_hinh:before{
    width: 16px;
    height: 16px;
    line-height: 16px;
    border: 1px solid #9200e7;
    -webkit-transition: background .25s ease-in-out;
    transition: background .25s ease-in-out;
    content: "";
    display: inline-block;
    margin: 5px;
    border-radius: 100%;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .list_ngoai_hinh .li_ngoai_hinh.selected:before {
    font-family: 'FontAwesome';
    background: #9200e7;
    text-align: center;
    content: "\f00c";
    color: #fff;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input{
    display: inline-flex;
    flex-direction: column;
    position: relative;
    min-width: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    vertical-align: top;
    width: 100%;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input label{
    color: rgba(0, 0, 0, 0.6);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    display: block;
    transform-origin: left top;
    text-overflow: ellipsis;
    max-width: calc(133% - 32px);
    position: absolute;
    left: 0px;
    top: 0px;
    transform: translate(14px, -9px) scale(0.75);
    z-index: 1;
    pointer-events: auto;
    user-select: none;
    padding: 0px;
    white-space: nowrap;
    overflow: hidden;
    transition: color 200ms cubic-bezier(0, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1), max-width 200ms cubic-bezier(0, 0, 0.2, 1);
    background: linear-gradient(to right, rgb(251, 80, 131), rgb(251, 116, 79));
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.87);
    box-sizing: border-box;
    cursor: text;
    display: inline-flex;
    -webkit-box-align: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    position: relative;
    border-radius: 4px;
    background-color: rgb(224, 224, 224);
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input .text{
    width: 100%;
    padding: 10px;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input input{
    letter-spacing: inherit;
    color: currentcolor;
    box-sizing: content-box;
    height: 1.4375em;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0px;
    width: 100%;
    animation-name: mui-auto-fill-cancel;
    animation-duration: 10ms;
    font: inherit;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    background: none;
    margin: 0px;
    padding: 16.5px 14px;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input textarea{
    letter-spacing: inherit;
    color: currentcolor;
    box-sizing: content-box;
    height: 1.4375em;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0px;
    width: 100%;
    height: 100px;
    animation-name: mui-auto-fill-cancel;
    animation-duration: 10ms;
    font: inherit;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    background: none;
    margin: 0px;
    padding: 16.5px 14px;
    resize: none;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input textarea:focus{
    outline: none;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input .count_text{
    width: 100%;
    border-top: 1px solid #c0c0c0;
    color: rgba(0, 0, 0, 0.54);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.66;
    letter-spacing: 0.03333em;
    text-align: left;
    padding-left: 10px;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input input:focus{
    outline: none;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input fieldset{
    text-align: left;
    position: absolute;
    inset: -5px 0px 0px;
    margin: 0px;
    padding: 0px 8px;
    pointer-events: none;
    border-radius: inherit;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    min-width: 0%;
    border-color: rgba(0, 0, 0, 0.23);
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input fieldset legend{
    float: unset;
    width: auto;
    overflow: hidden;
    display: block;
    padding: 0px;
    height: 11px;
    font-size: 0.75em;
    visibility: hidden;
    max-width: 100%;
    transition: max-width 100ms cubic-bezier(0, 0, 0.2, 1) 50ms;
    white-space: nowrap;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .border_input .content_input fieldset legend > span {
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
    opacity: 0;
    visibility: visible;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .content_thongtin .li_input .css-18u61dl-mark{
    color: rgb(133, 97, 197);
    font-size: 0.9rem;
    margin-top: 1rem;
    display: none;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .list_button{
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 8px;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex: 0 0 auto;
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .list_button button {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    color: rgb(103, 58, 183);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.box_pop_comment .box_pop_comment_content .box_edit_thongtin .list_button button:hover {
    text-decoration: none;
    background-color: rgba(103, 58, 183, 0.04);
}
.box_pop {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
}

.box_pop .box_pop_content {
    left: 50% !important;
    top: 50% !important;
    position: fixed !important;
    transform: translate(-50%, -50%) !important;
    padding-bottom: 25px;
    width: 430px;
    max-width: calc(100% - 20px);
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    background: #fff;
}

.box_pop .box_pop_content .pop_title {
    font-size: 18px;
    background: #1374ad;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    height: 40px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    border-radius: 5px 5px 0px 0px;
}
.box_pop .box_pop_content .pop_title span{
    cursor: pointer;
}
.box_pop .box_pop_content .pop_content {
    width: 100%;
    display: inline-block;
    padding: 10px;
}

.box_pop .box_pop_content .pop_content .li_input {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}
.text_confirm{
    font-style: italic;
    font-family: Arial
    margin-bottom:5px;
}
.box_pop .box_pop_content #content_customer {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.box_pop .box_pop_content #content_customer .count-down {
    position: relative;
    width: 100px;
}

.box_pop .box_pop_content #content_customer .count-down .content-count-down {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #f60;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-size: 20px;
}

.box_pop .box_pop_content #content_customer .info_customer {
    width: calc(100% - 100px);
    text-align: left;
}

.box_pop .box_pop_content .pop_content .li_input label {
    width: 100%;
    display: inline-block;
    height: 20px;
    margin-bottom: 10px;
}

.box_pop .box_pop_content .pop_content .li_input input {
    margin: 0;
    width: 100%;
    height: 49px;
    font-size: 15px;
    color: #354052;
    margin-bottom: 10px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
}

.box_pop .box_pop_content .pop_content .li_input select {
    margin: 0;
    width: 100%;
    height: 49px;
    font-size: 15px;
    color: #354052;
    margin-bottom: 10px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
}

.box_pop .box_pop_content .pop_content .li_input button {
    border: none;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 13px;
    width: 100%;
    cursor: pointer;
    background-color: #f0564a;
    font-weight: 600;
}

.box_pop .box_pop_content .pop_button {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

.box_pop .box_pop_content .pop_button .text_left {
    float: left;
    line-height: 35px;
}

.box_pop .box_pop_content .pop_button .text_left a:hover {
    color: #f0564a;
}

.box_pop .box_pop_content .pop_button .text_right {
    float: right;
}

.box_pop .box_pop_content .pop_button .text_center {
    text-align: center;
}

.box_pop .box_pop_content .pop_button .text_center button {
    padding: 0 10px;
    border: none;
    border-radius: 5px;
    line-height: 35px;
    color: #fff;
    font-size: 13px;
    width: 100px;
    cursor: pointer;
    margin-left: 5px;
    background-color: #f0564a;
    font-weight: 600;
}

.box_pop .box_pop_content .pop_button .text_right button {
    padding: 0 10px;
    border: none;
    border-radius: 5px;
    line-height: 35px;
    color: #fff;
    font-size: 13px;
    width: 100px;
    cursor: pointer;
    margin-left: 5px;
    background-color: #f0564a;
    font-weight: 600;
}
.bottom_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(0, 0, 0, 0.6);
    padding: 10px;
}
.list_phantrang {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.list_phantrang .li_phantrang {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dedede;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.list_phantrang .li_phantrang i {
    font-size: 25px;
}
.list_phantrang .li_phantrang.active {
    background: #992bf5;
    color: #fff;
}
.mip-form-div input[type=email]{
    padding: 5px;
    height: 35px;
    width: 100%;
    box-sizing: border-box;
}
.mip-form-div input[type=password]{
    padding: 5px;
    height: 35px;
    width: 100%;
    box-sizing: border-box;
}
.mip-form-div input[type=text]{
    padding: 5px;
    height: 35px;
    width: 100%;
    box-sizing: border-box;
}
.mip-form-div button{
    padding: 5px;
    height: 35px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
}
.social_login_self{
    width: 100%;
    margin-top: 10px;
}
.social_login_self .col-center{
    width: 100%;
    display: flex;
    justify-content: center;
}
.social_login_self .li_login_mxh{
    width: 100%;
    display: flex;
    height: 30px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: background-color .218s, border-color .218s;
    transition: background-color .218s, border-color .218s;
    -webkit-user-select: none;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border: 1px solid #dadce0;
    color: #3c4043;
    cursor: pointer;
    font-family: "Google Sans", arial, sans-serif;
    font-size: 14px;
    height: 40px;
    letter-spacing: 0.25px;
    outline: none;
    overflow: hidden;
    padding: 0 12px;
    position: relative;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    width: auto;
    margin-top: 5px;
    align-items: center;
    width: 250px;
    gap:5px;
}
.social_login_self .li_login_mxh .logo{
    width: 22px;
}
.social_login_self .li_login_mxh .logo img{
    width: 22px;
}
.register-forget{
	display: flex;
	justify-content: center;
	gap:20px;
	margin-top: 10px;
}
.privacy{
	display: flex;
	justify-content: center;
	margin-top: 10px;
}
.home_button{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 50px;
    display: flex;
    align-items: center;
}
.home_button img{
    width: 30px;
}
.header-logo .back{
    cursor: pointer;
}
.col-center .btn {
    width: 100%;
    color: white;
    background-color: #c364f1;
    font-size: 1rem;
    border: 0;
    padding: 10px;
    border-radius: 9px;
    cursor: pointer;
}
.manga-cover {
    -webkit-flex: 0 0 33%;
    flex: 0 0 33%;
    margin-bottom: 10px;
}
.manga-cover .manga-title {
    padding: 0;
    margin: 0;
    font-size: .8rem;
    margin-top: 5px;
}
.manga-cover .manga-chapter {
    padding: 0;
    margin: 0;
    color: #999;
    font-size: .6rem;
    margin-top: 3px;
}
.aboutus-content {
    text-indent: 0px;
}
.aboutus-content ul{
    padding: 0px;
    /*list-style-type: square;*/
}
.aboutus-content ul li{
    padding: 0px;
    margin-left: 20px;
}
.aboutus-content ol{
    padding: 0px;
    /*list-style-type: square;*/
}
.aboutus-content ol li{
    padding: 0px;
    margin-left: 20px;
}
#gtx-trans{
    display: none !important;
}
.css-1txvj5l-root {
    width: 100%;
    margin-left: auto;
    box-sizing: border-box;
    margin-right: auto;
    display: block;
    padding: 0px;
    background-color: rgb(255, 255, 255);
}
@media (min-width: 520px) {
    .css-1txvj5l-root {
        padding: 0px;
    }
}
@media (min-width: 520px) {
    .css-1txvj5l-root {
        max-width: 520px;
    }
}
.css-zlo8v1-appBar {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    position: sticky;
    z-index: 1100;
    top: 0px;
    left: auto;
    right: 0px;
    color: rgb(255, 255, 255);
    background-image: none;
    background-color: rgb(103, 58, 183);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0px;
}
@media (min-width: 520px) {
    .css-zlo8v1-appBar {
        padding: 0px;
    }
}
.css-1wksuuy-appBar {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    min-height: 48px;
    padding: 0px;
    background-color: rgb(103, 58, 183);
}
@media (min-width: 520px) {
    .css-1wksuuy-appBar {
        padding: 0px;
    }
}
.css-1v586k9-menuButton {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-align: center;
    font-size: 1.5rem;
    color: rgb(255, 255, 255);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    flex: 0 0 auto;
    padding: 8px;
    border-radius: 50%;
    overflow: visible;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-vubbuv {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-w0pj6f {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
    inset: 0px;
    border-radius: inherit;
}
.css-1jlj43y-title {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: 0.00938em;
    -webkit-box-flex: 1;
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
}
.css-1jaw3da {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    margin-left: -11px;
    margin-right: 16px;
}
.css-18839h9 {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    color: rgb(255, 255, 255);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    padding: 9px;
    border-radius: 50%;
    transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-ecvcn9 {
    display: inline-flex;
    width: 58px;
    height: 38px;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
    z-index: 0;
    vertical-align: middle;
    overflow: hidden;
    padding: 12px;
}
.css-1m9pwf3 {
    cursor: inherit;
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    z-index: 1;
}
.css-18839h9 .MuiSwitch-input {
    left: -100%;
    width: 300%;
}
.css-19gndve {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px, rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
    background-color: currentcolor;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.css-w0pj6f {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
    inset: 0px;
    border-radius: inherit;
}
.css-1ju1kxc {
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: rgb(0, 0, 0);
    opacity: 0.38;
    border-radius: 7px;
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-9l3uo3 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
.css-8pczdc {
    margin: 0px;
    font: inherit;
    color: rgb(103, 58, 183);
    text-decoration: underline rgba(103, 58, 183, 0.4);
}
.css-hxihg0-appBar-menuButton {
    display: inline-flex
;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-align: center;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.54);
    background-color: rgb(103, 58, 183);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: visible;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0px;
}
.css-hxihg0-appBar-menuButton.css-hxihg0-appBar-menuButton {
    color: rgb(255, 255, 255);
}
@media (min-width: 520px) {
    .css-hxihg0-appBar-menuButton {
        padding: 0px;
    }
}
.css-x15wq9 {
    position: fixed;
    inset: 0px 0px 0px auto;
    z-index: 1199;
}
.css-8o1tmw-root {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}
.css-1krjvn-imgContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    margin: 0px;
    padding: 0px;
    background-color: rgb(34, 34, 34);
}
.css-7u3yps-imageUpper {
    height: 0px;
    opacity: 0;
    width: 100%;
}
.css-1krjvn-imgContainer img {
    /*position: absolute;
    inset: 0px;
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    height: 100%;
    display: block;
    margin: auto;*/
}
.css-1fz86f5-imgNext {
    height: 0px;
    display: none;
}
.css-5dzvrb-imgLoad {
    display: inline-block;
    color: rgb(213, 0, 249);
    animation: 1.4s linear 0s infinite normal none running animation-61bdi0;
    width: 100%;
    height: auto;
    position: absolute;
}
.css-13o7eu2 {
    display: block;
}
.css-1aw1elk {
    stroke: currentcolor;
    stroke-dasharray: 80px, 200px;
    stroke-dashoffset: 0;
}
.css-1dzg0br-bottomScan {
    color: rgb(186, 104, 200);
    text-align: center;
    min-height: 1rem;
    width: 100%;
    margin: 1.5rem 0px;
}
.css-2yq11s-lastScan {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.0075em;
    color: rgb(186, 104, 200);
    text-align: center;
    padding: 1rem 0px;
    width: 100%;
}
.css-1l6ob0e-someTips {
    margin: auto;
    width: calc(100% - 30px);
    padding: 1rem;
    background-color: rgb(234, 47, 92);
    color: rgb(255, 255, 255);
    border-radius: 5px;
}
.css-9l3uo3 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
.css-1l6ob0e-someTips p {
    font-weight: bolder;
}
.css-rxhsma-someOtherMaybe {
    width: 100%;
}
.css-1mimw40-section {
    padding: 1rem 0px;
    margin: 1.5rem 0px;
    background-color: rgb(255, 255, 255);
}
.css-13r30pi-commentHeaderBar {
    padding-left: 1rem;
}
.css-1bgwws0-toggleComment {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    margin-left: -11px;
    margin-right: 16px;
    color: rgba(0, 0, 0, 0.87);
}
.css-9l3uo3 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}
.css-1ekkzxn-root {
    color: rgba(0, 0, 0, 0.87);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px -2px, rgba(0, 0, 0, 0.14) 0px 3px 4px 0px, rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    background-image: none;
    position: relative;
    min-height: 323px;
    filter: none;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    overflow: hidden;
}
.css-1mimw40-section {
    padding: 1rem 0px;
    margin: 1.5rem 0px;
    background-color: rgb(255, 255, 255);
}
.css-13r30pi-commentHeaderBar {
    padding-left: 1rem;
}
.css-1bgwws0-toggleComment {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    margin-left: -11px;
    margin-right: 16px;
    color: rgba(0, 0, 0, 0.87);
}
.css-ecvcn9 {
    display: inline-flex;
    width: 58px;
    height: 38px;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
    z-index: 0;
    vertical-align: middle;
    overflow: hidden;
    padding: 12px;
}
.css-18839h9.Mui-checked {
    transform: translateX(20px);
}
.css-18839h9.Mui-checked {
    color: rgb(213, 0, 249);
}
.css-18839h9.Mui-checked + .MuiSwitch-track {
    opacity: 0.5;
}
.css-18839h9.Mui-checked + .MuiSwitch-track {
    background-color: rgb(213, 0, 249);
}
.css-1bgwws0-toggleComment .css-2r6dco.Mui-checked {
    transform: translateX(20px);
}
.css-1bgwws0-toggleComment .css-2r6dco.Mui-checked {
    color: rgb(103, 58, 183);
}
.css-1m9pwf3 {
    cursor: inherit;
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    margin: 0px;
    padding: 0px;
    z-index: 1;
}
.css-2r6dco {
    display: inline-flex
;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    color: rgb(255, 255, 255);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    padding: 9px;
    border-radius: 50%;
    transition: left 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-2r6dco .MuiSwitch-input {
    left: -100%;
    width: 300%;
}
.css-2r6dco.Mui-checked + .MuiSwitch-track {
    opacity: 0.5;
}
.css-2r6dco.Mui-checked + .MuiSwitch-track {
    background-color: rgb(103, 58, 183);
}
.css-1bgwws0-toggleComment .css-19gndve {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px, rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
    background-color: currentcolor;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.css-1bgwws0-toggleComment .css-w0pj6f {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
    inset: 0px;
    border-radius: inherit;
}
.css-ugtskx-section {
    padding: 1rem 0px;
    /*margin: 1.5rem 0px;*/
}
.css-1ekkzxn-root {
    color: rgba(0, 0, 0, 0.87);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px -2px, rgba(0, 0, 0, 0.14) 0px 3px 4px 0px, rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    background-image: none;
    position: relative;
    min-height: 323px;
    filter: none;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    overflow: hidden;
}
.css-lpvq93-nocomment {
    padding: 3rem 16px;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    min-height: 260px;
    width: 100%;
    background-color: rgb(255, 255, 255);
}
.css-1prob85 {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.54);
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-17dikxo-commentAction {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    width: 100%;
}
.css-1anx036 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0.0075em;
}
.css-1v2gfp5 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.66;
    letter-spacing: 0.03333em;
}
.css-993u0m-buttonInput {
    display: inline-flex
;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    width: 100%;
    -webkit-box-flex: 1;
    flex-grow: 1;
    min-width: 70%;
    color: rgb(213, 0, 249);
    outline: 0px;
    margin: 0px;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}
.css-1nwnaia-buttonSpan {
    width: 100%;
    height: 2rem;
    line-height: 2rem;
    border-radius: 0.3rem;
    color: rgba(0, 0, 0, 0.87);
    overflow: hidden;
}
.css-1fq6xr2-button3 {
    width: 100%;
    display: flex;
    flex-flow: row;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding-bottom: 1rem;
}
.css-15kpnur-alink2 {
    display: inline-flex;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    -webkit-box-flex: 1;
    flex-grow: 1;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    max-width: 30%;
    color: rgba(0, 0, 0, 0.87);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    padding: 8px 11px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media all AND (max-width: 480px){
    .css-15kpnur-alink2{
        font-size: 10px;
    }
}
.css-1vdl5yt {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: orange;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-vubbuv {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-aisdgs-root {
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    position: sticky;
    bottom: 15%;
}
.css-np2dig-speedDial {
    z-index: 1050;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    pointer-events: none;
    flex-direction: column-reverse;
    position: absolute;
    bottom: 16px;
    right: 16px;
}
.css-np2dig-speedDial .MuiSpeedDial-actions {
    flex-direction: column-reverse;
    margin-bottom: -32px;
    padding-bottom: 48px;
}
.css-ttmvkd {
    display: inline-flex
;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-height: 36px;
    min-width: 0px;
    width: 56px;
    height: 56px;
    z-index: 1050;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
    color: rgb(255, 255, 255);
    background-color: rgb(103, 58, 183);
    pointer-events: auto;
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    padding: 0px;
}
.css-1og6e21 {
    height: 24px;
}
.css-1og6e21 .MuiSpeedDialIcon-icon {
    transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-16nb7rk {
    position: absolute;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px, rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
    color: rgba(0, 0, 0, 0.6);
    word-break: keep-all;
    border-radius: 4px;
    padding: 4px 16px;
}
.css-16o6437 {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}
.css-16o6437 .MuiSpeedDialAction-staticTooltipLabel {
    opacity: 0;
    transform: scale(0.5);
    transform-origin: 100% 50%;
    right: 100%;
    margin-right: 8px;
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-9yweo3-fabComment {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-height: 36px;
    min-width: 0px;
    width: 40px;
    height: 40px;
    z-index: 1050;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
    opacity: 0;
    transform: scale(0);
    color: rgb(255, 255, 255);
    background-color: rgb(33, 150, 243);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    text-decoration: none;
    border-radius: 50%;
    padding: 0px;
    margin: 8px 0.5rem 8px 8px;
    transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s;
}
.css-a63x6y-comment {
    padding: 0px 16px 16px;
    width: 100%;
}
.css-1ontqvh {
    list-style: none;
    margin: 0px;
    padding: 8px 0px;
    position: relative;
    width: 100%;
}
.css-8egh8g-root {
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    padding: 8px 16px 8px 0px;
}
.css-9hddzn-orderName {
    display: inline-block;
    color: rgba(0, 0, 0, 0.87);
    padding: 0px 3px;
    cursor: pointer;
}
.css-13jgviw-orderSelected {
    color: rgb(133, 97, 197);
    text-decoration: underline;
    font-weight: bolder;
}
.css-1hxkj4u-subheader {
    box-sizing: border-box;
    line-height: 48px;
    list-style: none;
    color: rgba(0, 0, 0, 0.54);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    padding-right: 16px;
    position: sticky;
    top: 0px;
    z-index: 1;
    font-size: 1rem;
    padding-left: 0px;
    background-color: rgb(255, 255, 255);
}
.css-s1bfy {
    min-width: 56px;
    flex-shrink: 0;
    margin-top: 8px;
}
.css-3i9vrz {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1;
    border-radius: 50%;
    overflow: hidden;
    user-select: none;
}
.css-1hy9t21 {
    width: 100%;
    height: 100%;
    text-align: center;
    object-fit: cover;
    color: transparent;
    text-indent: 10000px;
}
/* .css-1xar93x {
    flex: 1 1 auto;
    min-width: 0px;
    margin-top: 6px;
    margin-bottom: 6px;
} */
.css-1xar93x {
    width: calc(100% - 70px);
    margin-top: 6px;
    margin-bottom: 6px;
}
.css-12s9iqp-text {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    display: block;
    font-weight: bolder;
}
.css-1m7p99p {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgba(0, 0, 0, 0.54);
    display: block;
}
.css-9pe1wp {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.66;
    letter-spacing: 0.03333em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(0, 0, 0, 0.54);
}
.css-1wstsor {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    line-height: 1.66;
    letter-spacing: 0.03333em;
    color: rgba(0, 0, 0, 0.54);
    margin: 0px;
}
.css-tzt8ri-content {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.87);
    word-break: break-all;
}
.css-tzt8ri-content img{
    max-width: 14px;
    max-height: 14px;
}
.css-4y5vds-commentTool {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
}
.css-widola-commentButton {
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-align: center;
    font-size: 1rem;
    display: inline-block;
    color: rgba(0, 0, 0, 0.54);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px 12px 0px 0px;
    text-decoration: none;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: visible;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 0px;
}
.css-elms88-commentButtonSpan {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 1rem;
}
.css-elms88-commentButtonSpan .icon_like{
    height: 20px;
    display: inline-block;
    width: 20px;
    background: url('/skin/css/images/like.svg') no-repeat;
    background-size: cover;
}
.css-elms88-commentButtonSpan .icon_like.liked{
    height: 20px;
    display: inline-block;
    width: 20px;
    background: url('/skin/css/images/liked.svg') no-repeat;
    background-size: cover;
}
.css-elms88-commentButtonSpan .icon_dislike{
    height: 20px;
    display: inline-block;
    width: 20px;
    background: url('/skin/css/images/dislike.svg') no-repeat;
    background-size: cover;
}
.css-elms88-commentButtonSpan .icon_dislike.disliked{
    height: 20px;
    display: inline-block;
    width: 20px;
    background: url('/skin/css/images/disliked.svg') no-repeat;
    background-size: cover;
}
.css-10xymib-commentButtonIcon {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.css-w0pj6f {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
    inset: 0px;
    border-radius: inherit;
}
.css-9au98p-commentButton-commentButtonMore {
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-align: center;
    font-size: 1rem;
    display: inline-block;
    color: rgba(0, 0, 0, 0.54);
    align-self: flex-end;
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px 12px 0px auto;
    text-decoration: none;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: visible;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 0px;
}
.css-1xhhzkn-reply {
    background-color: rgb(245, 245, 245);
    margin-top: 0.5rem;
    padding-left: 0.2rem;
    padding-top: 0.1rem;
    border-radius: 5px;
}
.css-1rqlw17-replyItem {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgba(0, 0, 0, 0.54);
    display: block;
    text-decoration: none;
    word-break: break-all;
    padding: 5px;
}
.css-1izjp52-replyUserNames {
    color: rgb(103, 58, 183);
}
.css-1p0mzqu-pageArea {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgb(158, 158, 158);
}
.css-c7dfze {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.57;
    letter-spacing: 0.00714em;
}
.css-1t9bjcm-fixed {
    z-index: 1299;
    width: 100%;
    bottom: 4rem;
    /*overflow: hidden;*/
    right: 0px;
    left: 0px;
    transition: transform 0.5s, -webkit-transform 0.5s;
    max-width: 520px;
    transform: translateZ(0px);
    position: fixed !important;
}
.css-1maq9lu-maxWidth {
    left: calc(55% - 260px);
}
.add-comment-fixed-btn {
    border-color: #9200fe;
}
.add-comment-fixed-btn {
    margin: 0 auto;
    width: 40%;
    margin-left: 30%;
    height: 2rem;
    border: 2px solid #c364f1;
    border-radius: 1rem;
    background-color: white;
    box-sizing: border-box;
    padding: .3rem;
    cursor: pointer;
    font-size: 14px;
}
.emot {
    display: inline-block;
    height: 1.2rem;
    width: 1.2rem;
    background-image: url(/skin/css/images/smile.png);
    background-size: cover;
    margin-bottom: -0.3rem;
}
@media all AND (max-width: 480px){
    .css-1maq9lu-maxWidth {
        left: calc(70% - 260px);
    }
    .add-comment-fixed-btn{
        width: 200px;
    }
}
.css-15c0xsw-root {
    width: 100%;
    margin-left: auto;
    box-sizing: border-box;
    margin-right: auto;
    display: block;
    padding: 0px;
    background-color: rgb(255, 255, 255);
}
@media (min-width: 520px) {
    .css-15c0xsw-root {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (min-width: 960px) {
    .css-15c0xsw-root {
        max-width: 960px;
    }
}

@media (min-width: 520px) {
    .css-15c0xsw-root {
        padding: 0px;
    }
}
.css-q6c30-button-button2 {
    width: calc(100% - 20px);
    display: flex;
    flex-wrap: wrap;
    padding-top: 0px;
    padding-bottom: 2rem;
    margin: auto;
    justify-content: center;
    gap:10px;
}
.css-1eqkmlz-alink-grey-preChapter {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    min-width: 64px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    -webkit-box-flex: 1;
    flex-grow: 1;
    background-color: rgb(245, 245, 245);
    color: rgb(33, 33, 33);
    width: calc(50% - 5px);
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    text-decoration: none;
    padding: 8px 22px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}
.css-1himr83-alink {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    width: calc(50% - 5px);
    color: rgb(255, 255, 255);
    background-color: rgb(103, 58, 183);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    -webkit-box-flex: 1;
    flex-grow: 1;
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    text-decoration: none;
    padding: 8px 22px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}
.css-15c0xsw-root {
    width: 100%;
    margin-left: auto;
    box-sizing: border-box;
    margin-right: auto;
    display: block;
    padding: 0px;
    background-color: rgb(255, 255, 255);
}
@media (min-width: 520px) {
    .css-15c0xsw-root {
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (min-width: 960px) {
    .css-15c0xsw-root {
        max-width: 960px;
    }
}

@media (min-width: 520px) {
    .css-15c0xsw-root {
        padding: 0px;
    }
}
.css-8egh8g-root .avatar-comment{
    width: 70px;
    height: 85px;
    margin-right: 10px;
    border-radius: 50%;
    overflow: hidden;
    padding-top: 10px;
}
.css-8egh8g-root .avatar-comment .avatar_none{
    position: relative;
    width: 70px;
    height: 70px;
}
.css-8egh8g-root .avatar-comment .rank_1{
    position: relative;
    width: 70px;
    height: 70px;
    background: url('/skin/css/images/avatar/1.png') no-repeat center center;
    background-size: 100%;
}
.css-8egh8g-root .avatar-comment .rank_2{
    position: relative;
    width: 70px;
    height: 70px;
    background: url('/skin/css/images/avatar/2.png') no-repeat center center;
    background-size: 100%;
}
.css-8egh8g-root .avatar-comment .rank_3{
    position: relative;
    width: 70px;
    height: 70px;
    background: url('/skin/css/images/avatar/3.png') no-repeat center center;
    background-size: 100%;
}
.css-8egh8g-root .avatar-comment .rank_4{
    position: relative;
    width: 70px;
    height: 70px;
    background: url('/skin/css/images/avatar/4.png') no-repeat center center;
    background-size: 100%;
}
.css-8egh8g-root .avatar-comment .rank_5{
    position: relative;
    width: 70px;
    height: 70px;
    background: url('/skin/css/images/avatar/5.png') no-repeat center center;
    background-size: 100%;
}
.css-8egh8g-root .avatar-comment .rank_6{
    position: relative;
    width: 70px;
    height: 70px;
    background: url('/skin/css/images/avatar/6.png') no-repeat center center;
    background-size: 100%;
}
.css-8egh8g-root .avatar-comment .rank_7{
    position: relative;
    width: 70px;
    height: 70px;
    background: url('/skin/css/images/avatar/7.png') no-repeat center center;
    background-size: 100%;
}
.css-8egh8g-root .avatar-comment .rank_8{
    position: relative;
    width: 70px;
    height: 70px;
    background: url('/skin/css/images/avatar/8.png') no-repeat center center;
    background-size: 100%;
}
.css-8egh8g-root .avatar-comment img{
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
    border:2px solid #fff;
}
.tab_comment{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap:5px;
    margin-top: 20px;
}
.tab_comment .li_tab{
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 4px;
    padding-bottom: 4px;
    color: #717070;
    background-color: #dedede;
    cursor:pointer;
}
.tab_comment .li_tab.active{
    color: #9200fe;
    background-color: #a774d069;
}
.block_content {
    background: #fff;
    padding: 30px;
    width: calc(100% - 30px);
    margin-top: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    margin: auto;
    margin-top: 20px;
    text-align: center;
}
.block_content i{
    cursor: pointer;
    font-size: 20px;
}
.block_content span{
    color: red;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}
.list_chap_bar{
    width: 300px;
    transform: none;
    transition: transform 225ms cubic-bezier(0, 0, 0.2, 1);
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 10px -5px, rgba(0, 0, 0, 0.14) 0px 16px 24px 2px, rgba(0, 0, 0, 0.12) 0px 6px 30px 5px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1200;
    position: fixed;
    top: 0px;
    right: 0px;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1 0 auto;
    outline: 0px;
}
.css-zac1ay-drawer {
    inset: 0px;
    visibility: hidden;
    z-index: 1200;
    /*position: relative;*/
}
.list_chap_bar .list_chap_bar_content{
    height: 100%;
    width: 100%;
    overflow-y: auto;
}
.list_chap_bar .list_chap_bar_content ul{
    list-style: none;
    margin: 0px;
    padding: 8px 0px;
    position: relative;
}
.list_chap_bar .list_chap_bar_content ul .css-1vq9yst {
    box-sizing: border-box;
    line-height: 48px;
    list-style: none;
    color: rgba(0, 0, 0, 0.6);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    padding-left: 16px;
    padding-right: 16px;
    position: sticky;
    top: 0px;
    z-index: 1;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    -webkit-box-pack: start;
    justify-content: start;
    cursor: pointer;
}
.list_chap_bar .list_chap_bar_content ul .css-1v0vqmm {
    min-width: 56px;
    color: rgba(0, 0, 0, 0.54);
    flex-shrink: 0;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
}
.list_chap_bar .list_chap_bar_content ul .css-qmlvzc {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: rgb(103, 58, 183);
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.list_chap_bar .list_chap_bar_content ul .css-dzvize-orderText {
    flex: 1 1 auto;
    min-width: 0px;
    margin-top: 6px;
    margin-bottom: 6px;
    text-align: right;
}
.list_chap_bar .list_chap_bar_content ul .css-14tqbo1 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    display: block;
}
.list_chap_bar .list_chap_bar_content ul .css-mbfek {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgba(0, 0, 0, 0.6);
    display: block;
}
.list_chap_bar .list_chap_bar_content ul .css-39bbo6 {
    margin: 0px;
    flex-shrink: 0;
    border-width: 0px 0px thin;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.12);
}
.list_chap_bar .list_chap_bar_content ul a{
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    color: inherit;
    display: flex
;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    min-width: 0px;
    box-sizing: border-box;
    text-align: left;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    border-radius: 0px;
    text-decoration: none;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.list_chap_bar .list_chap_bar_content ul a .css-1tsvksn {
    flex: 1 1 auto;
    min-width: 0px;
    margin-top: 4px;
    margin-bottom: 4px;
}
.list_chap_bar .list_chap_bar_content ul a span {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.list_chap_bar .list_chap_bar_content ul .css-1rkoj7j-pageArea {
    padding-bottom: 10px;
    text-align: center;
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: rgb(158, 158, 158);
}
.list_chap_bar .list_chap_bar_content ul .css-v5l7zu-alink-alinkCurr {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    display: flex;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    min-width: 0px;
    box-sizing: border-box;
    text-align: left;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
    background-color: rgb(103, 58, 183);
    color: rgb(255, 255, 255);
    font-weight: bolder;
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    border-radius: 0px;
    text-decoration: none;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.box_comment{
    width: 100%;
}
.box_comment textarea{
    width: 100%;
    padding: 10px;
    border:1px solid #dadce0;
}
.box_comment textarea:focus{
    outline: none;
}
.box_comment button{
    width: 100%;
    height: 36px;
    border:none;
    border-radius: 5px;
    background: #fb5083;
    color: #fff;
    cursor: pointer;
}

.box_chat_pop{
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}
.box_chat_pop_content{
    position: absolute;
    margin: auto;
    width:510px;
    max-width: calc(100% - 10px);
    left: 0;
    right: 0;
    bottom: 50px;
    background: #fff;
    border-radius: 10px;
}
.box_chat_pop .box_chat_pop_content .box_chat{
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat{
    position: relative;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 40px;
    line-height: 40px;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .title_box_chat{
    position: relative;
    float: left;
    height: 100%;
    font-size: 20px;
    color: #3f94d5;
    font-weight: 700;
    text-transform: uppercase;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .title_box_chat i{
    font-size: 28px;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .tool_chat{
    position: relative;
    float: right;
    height: 100%;
    display: flex;
    align-items: center;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .tool_chat button{
    border-radius: 50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    -o-border-radius:50%;
    border:2px solid #3f94d5;
    height: 35px;
    width: 35px;
    margin-left: 10px;
    font-size: 20px;
    color: #3f94d5;
    cursor: pointer;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .tool_chat button.toggle_chat i{
    font-size: 20px;
}
.box_chat_pop .box_chat_pop_content .box_chat .menu_chat .tool_chat button.sound_chat i{
    font-size: 22px;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat{
    position: relative;
    display: inline-block;
    padding: 10px;
    width: 100%;
    height: 267px;
    background: #fff;
    margin-top: 5px;
    border-radius: 5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    -o-border-radius:5px;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat{
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(100% - 42px);
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_load_chat{
    position: relative;
    width: 100%;
    height: 30px;
    text-align: center;
    display: inline-block;
    margin-bottom: 10px;
    clear: both;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat{
    position: relative;
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
    clear: both;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .avatar_chat{
    width: 35px;
    height: 35px;
    float: left;
    cursor: pointer;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .avatar_chat img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    -o-border-radius:50%;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .info_chat{
    position: relative;
    float: left;
    padding-left: 10px;
    padding-top: 7px;
    width: calc(100% - 35px);
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .info_chat .content_text{
    width: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .info_chat .content_text .text{
    background: #f5f5f5;
    margin-top: 5px;
    padding: 8px 15px 8px 15px;
    border-radius: 5px 10px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .info_chat .content_text .text img{
    max-width: 20px;
    max-height: 20px;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .info_chat .content_text .name{
    cursor: pointer;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .list_chat .li_chat .info_chat .time{
    position: absolute;
    right: 5px;
    font-size: 12px;
    float: left;
}

.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat{
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 37px;
    background: #fff;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat input{
    position: relative;
    display: inline-block;
    padding-left: 10px;
    padding-right:10px;
    width: calc(100% - 40px);
    height: 37px;
    background: #fff;
    border-radius: 5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    -o-border-radius:5px;
    border:1px solid #dedede;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat input:focus{
    outline: none;
}
/* .box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat .chat_text{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    padding-right:10px;
    width: calc(100% - 40px);
    height: 37px;
    background: #fff;
    border-radius: 5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    -o-border-radius:5px;
    font-size: 14px;
    border:1px solid #dedede;
} */
/* .box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat .chat_text img{
    height: 20px;
    width: 20px;
} */
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat .chat_text {
    position: relative;
    display: flex;
    align-items: center; /* Căn giữa theo chiều dọc */
    justify-content: flex-start; /* Căn trái theo chiều ngang */
    padding-left: 10px;
    padding-right: 10px;
    width: calc(100% - 70px);
    height: 37px;
    line-height: 37px;
    background: #fff;
    border-radius: 5px;
    font-size: 12.5px;
    border: 1px solid #dedede;
    overflow: hidden; /* Cho phép cuộn ngang nếu nội dung quá dài */
    white-space: nowrap; /* Ngăn xuống dòng */
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat .chat_text:focus{
    outline: none;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat .chat_text:empty:before {
    content: attr(data-placeholder); /* Lấy nội dung từ data-placeholder */
    color: #aaa; /* Màu placeholder */
    font-style: italic;
    pointer-events: none; /* Không ảnh hưởng đến click */
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat .chat_text span {
    display: inline-flex; /* Đảm bảo span không làm vỡ dòng */
    align-items: center; /* Căn giữa ảnh theo chiều dọc */
}

.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat .chat_text img {
    vertical-align: middle; /* Giữ ảnh căn giữa theo dòng chữ */
    max-height: 24px; /* Giới hạn chiều cao ảnh để phù hợp với dòng */
}

.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat button{
    width: 40px;
    height: 37px;
    background: #fff;
    border-radius: 5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    -o-border-radius:5px;
    border: none;
    cursor: pointer;
    font-size: 30px;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat button:focus{
    outline: none;
}

.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat enter {
    width: 40px;
    height: 37px;
    background: #fff;
    border-radius: 5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    -o-border-radius:5px;
    border: none;
    cursor: pointer;
    font-size: 30px;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .input_chat enter:focus {
    outline: none;
}

.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker{
    position: absolute;
    margin: auto;
    background: #fff;
    width: 400px;
    height: 400px;
    bottom: 50px;
    right: 50px;
    border-radius: 5px;
    border:1px solid #dedede;
    display: none;
}
@media (max-width: 768px) {
    .box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker{
        width: 100%;
        right: 0;
    }
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker .list_tab{
    display: flex;
    justify-content: flex-start;
    height: 80px;
    gap:10px;
    border-bottom: 1px solid #dedede;
    padding: 10px;
    margin: auto;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker .list_tab .li_tab{
    width: 60px;
    height: 100%;
    border:1px solid #dedede;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker .list_tab .li_tab:hover{
    background: #f3f3f3;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker .list_tab .li_tab img{
    width: auto;
    height: 100%;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker .list_sticker{
    width: 100%;
    height: calc(100% - 80px);
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker .list_sticker .list_sticker_content{
    display: none;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker .list_sticker .list_sticker_content.active{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:10px;
    padding: 10px;
    overflow: auto;
    height: 100%;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker .list_sticker .list_sticker_content .li_sticker{
    width: 60px;
    height: 60px;
    padding: 5px;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker .list_sticker .list_sticker_content .li_sticker:hover{
    cursor: pointer;
    background: #f3f3f3;
    border-radius: 5px;
    border:1px solid #dedede;
}
.box_chat_pop .box_chat_pop_content .box_chat .content_box_chat .box_sticker .list_sticker .list_sticker_content .li_sticker img{
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}