::-webkit-scrollbar {
    width: 4px;
    background-color: transparent;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #cacef2;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: transparent;
  }



/* custom checkbox */
/* Customize the label (the container) */
.container_dm {
    display: block;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
  }

  .container_dm p{
    font-size: 14px;
    line-height: 120%;
  }
  
  /* Hide the browser's default checkbox */
  .container_dm input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .container_dm .checkmark {
    position: absolute;
    left: 0;
    height: 22px;
    width: 22px;
    border-radius: 6px;
    border: 1px solid #A3A2A2;
  }
  
  /* On mouse-over, add a grey background color */
  .container_dm:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .container_dm .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container_dm input:checked ~ .checkmark:after {
    display: block;
  }

  .container_dm input:checked ~ p, .container_dm:hover input ~ p{
    color: #4C5BD4;
  }
  
  /* Style the checkmark/indicator */
  .container_dm .checkmark:after {
    left: 7px;
    top: 3px;
    width: 4px;
    height: 10px;
    border: solid #4C5BD4;
    border-radius: 3px;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .container_dm .checkmark.not_all:after {
    left: 4px;
    top: 8px;
    width: 12px;
    height: 3px;
    background: #4C5BD4;
    border: unset;
    border-radius: 5px;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }

  /* end custom checkbox */


  /* Custom radio  */

  /* The container */
.container_radio {
    display: block;
    position: relative;
    padding-left: 25px;
    padding-right: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .container_radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .container_radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #8E8E93;
  }
  
  /* On mouse-over, add a grey background color */
  .container_radio:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .container_radio input:checked ~ .checkmark {
    border: 2px solid #0A7AFF;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .container_radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .container_radio input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .container_radio .checkmark:after {
        top: 3px;
        left: 3px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #0A7AFF;
  }
  /* end custom radio  */


  .main_search h1{
    width: 1500px;
    max-width: 100%;
    margin: auto;
    color: #FFF;
    font-size: 32px;
    padding-bottom: 15px;
  }

.container_search_new{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.main_search_new{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 1460px;
    position: relative;
}

.main_search_new .box_search_key{
    display: flex;
    align-items: center;
    border-top-left-radius: 56px;
    border-bottom-left-radius: 56px;
    width: 100%;
    /* max-width: 1180px; */
    overflow: hidden;
}

.main_search_new .box_search_key .box_btn_cate{
    border-top-left-radius: 56px;
    border-bottom-left-radius: 56px;
    background: #FFF;
    width: 21%;
    height: 60px;
}

.main_search_new .box_search_key .box_btn_key{
    background: #FFF;
    width: 42%;
    height: 60px;
}

.main_search_new .box_search_key .box_btn_city{
    background: #FFF;
    width: 23%;
    height: 60px;
}

.main_search_new .box_search_key .box_btn_search{
    border-top-right-radius: 56px;
    border-bottom-right-radius: 56px;
    background: #FFF600;
    width: 14%;
    height: 60px;
}

.main_search_new .show_nc{
    margin-top: 0;
}

.main_search_new .box_btn_cate button,
.main_search_new .box_btn_city button,
.main_search_new .box_btn_key .box_input,
.main_search_new .box_btn_search button{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 120%;
    justify-content: center;
    gap: 10px;
}

.main_search_new .box_btn_city button {
    justify-content: flex-start;
}

.main_search_new .box_btn_key .box_input{
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    justify-content: left;
    padding: 0px 20px;
}

.main_search_new .box_btn_key .box_input input{
    font-size: 20px;
    line-height: 120%;
    background: none;
    border: none;
    width: calc(100% - 38px);
}
.main_search_new img{
    width: auto;
    height: auto;
}
.main_search_new .box_btn_cate button img,
.main_search_new .box_btn_city button img,
.main_search_new .box_btn_key .box_input img,
.main_search_new .box_btn_search button img{
    width: 28px;
    height: 28px;
}

.main_search_new .box_input .btn_remove_search{
    background: none;
    border: none;
}

.main_search_new .box_btn_key .box_input .btn_remove_search img{
    width: 15px;
    height: 15px;
}

.main_search_new .box_refer{
    width: 100%;
    height: 300px;
    display: flex;
    gap: 40px;
}

.main_search_new .box_refer .refer_cate {
    width: 226px;
    height: 100%;
    background: #FFF;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 13px 20px;
}

.main_search_new .box_refer .refer_cate_top{
    height: calc(100% - 41px);
    display: flex;
    border-bottom: 2px solid #AAA6A6;
    flex-direction: column;
    gap: 10px;
}

.main_search_new .box_refer .refer_cate_top .item_cate_refer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 120%;
    color: #000;
}

.main_search_new .box_refer .refer_cate_top .item_cate_refer img{
    width: 28px;
    height: 28px;
}

.main_search_new .box_refer .refer_cate_bot{
    height: 31px;
    display: flex;
    justify-content: space-between;
}

.main_search_new .box_refer .refer_cate_bot .cate_bot_btn button{
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    padding: 0px;
}

.main_search_new .box_refer .refer_cate_bot .cate_bot_text{
    font-size: 20px;
    line-height: 120%;
}

.main_search_new .box_refer .container_refer{
    width: calc(100% - 266px);
    height: 100%;
}

.main_search_new .box_refer .refer_banner{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_search_new .box_refer .refer_banner .box_img{
    width: 260px;
    padding-left: 20px;
}

.main_search_new .box_refer .refer_banner .box_img img{
    width: 100%;
}

.main_search_new .box_refer .refer_banner .box_text{
    font-size: 36px;
    line-height: 120%;
    color: #FFFFFF;
    width: calc(100% - 560px);
}

.main_search_new .box_refer .refer_banner .box_text .title{
    font-weight: 600;
    font-size: 50px;
    line-height: inherit;
}

.main_search_new .box_refer .refer_banner .box_text .title span{
    font-size: 36px;
}

/* Banner mới  */
.banner_new{
    width: calc(100% - 320px);
    height: 100%;
    background: url('https://timviec365.vn/images/box_search_new/banner_tv_new.png');
    background-size: cover;
    background-position: right bottom;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    float: left;
}

.banner_new .banner_text{
    width: 504px;
    max-width: 100%;
}

.banner_new .banner_text .banner_title{
    color: #FFF;
    font-style: italic;
    font-size: 36px;
    line-height: 120%;
    text-align: right;
    font-weight: 600;
    padding-bottom: 20px;
    text-shadow: 2px 2px #DB8400;
}

.banner_new .banner_text .banner_sub{
    color: #FFF;
    font-style: italic;
    font-size: 36px;
    line-height: 120%;
    text-align: center;
    font-weight: 600;
    padding-bottom: 10px;
}

.banner_new .banner_text .banner_content{
    color: #FFF;
    font-style: italic;
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    font-weight: 600;
}

.banner_new .banner_text .banner_btn{
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.banner_new .banner_text .banner_btn img{
    width: auto;
    height: auto;
}

.banner_new .banner_text .banner_btn .right{
    transform: rotate(180deg);
}

.banner_new .banner_text .banner_btn .center{
    background: #FFF;
    border-radius: 20px;
    padding: 8px 12px;
    color: #A73D3E;
    font-size: 16px;
    line-height: 120%;
}

.rowWrapper .search{
    width: 100%;
}

/* banner 8/3 */
.box_gift_8_3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}
.item_gift_8_3 {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.box_gift_8_3 .ico_gift_8_3 {
    width: 32px;
    height: 32px;
}
.box_gift_8_3 .item_gift_8_3_100 {
    width: 100%;
    justify-content: center;
}
.content_gift_8_3 {
    width: calc(100% - 37px);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.box_gift_8_3 .item_gift_8_3_100 .content_gift_8_3 {
    width: fit-content;
}
.span_gift_8_3, 
.title_gift_8_3 {
    color: #FFF;
    font-size: 17px;
    line-height: 20px;
}
.txt_gift_8_3 {
    font-size: 20px;
    line-height: 24px;
    color: #FFD700;
    text-transform: uppercase;
}
.banner_text_8_3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    max-width: 100%;
    width: 75%;
}
.box_title_8_3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.title1_8_3 {
    color: #FFF;
    font-size: 26px;
    line-height: 28px;
    text-transform: uppercase;
    text-align: center;
}
.title2_8_3 {
    color: #FFD700;
    font-size: 26px;
    line-height: 28px;
    text-transform: uppercase;
    text-align: center;
}
.box_title_footer_8_3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-left: 70px;
}
.txt_footer_8_3 {
    color: #630AF8;
    font-size: 22px;
    line-height: 26px;
    text-transform: uppercase;
}
.banner_new .ico_footer_8_3 {
    width: 55px;
    height: 50px;
}
.banner_new.banner_search_8_3 {
    background: url(https://timviec365.vn/images/box_search_new/banner_8_3.png);
    background-size: cover;
    background-position: left bottom;
    justify-content: flex-end;
}
.banner_new.banner_search_hidden {
    display: none;
}

/* banner chat */
.container_search_new .main_search_new.box_main_search_origin, 
.main_search .h1_title_home {
    width: 1180px;
    max-width: 95%;
}
.main_search_new .box_refer .refer_banner.box_banner_origin {
    background: url(https://timviec365.vn/images/box_search_new/banner_origin.png);
    background-size: cover;
    background-position: left bottom;
    padding: 10px;
}
.box_banner_origin.refer_banner .banner_QR {
    width: 285px;
    height: 285px;
    display: flex !important
}
.main_search_new .box_refer .refer_banner .box_text .title.title_banner_search_origin {
    line-height: 55px;
}


@media(max-width: 1200px) {
    .banner_new{
        width: 100%;
    }
}

@media(max-width: 800px) {
    .banner_new{
        background: url('https://timviec365.vn/images/box_search_new/banner_tv_new_mb.png');
        background-size: cover;
        background-position: right bottom;
        justify-content: center;
        min-height: 224px;
        align-items: start;
    }

    .banner_new .banner_text{
        width: 370px;
        max-width: 100%;
    }

    .banner_new .banner_text .banner_title,.banner_new .banner_text .banner_sub{
        font-size: 24px;
        text-align: center;
        padding-bottom: 5px;
    }
    .banner_new .banner_text .banner_content{
        font-size: 14px;
        padding-bottom: 10px;
    }
    .banner_new .banner_text .banner_btn{
        justify-content: start;
    }
    .banner_new .banner_text .banner_btn img{
        width: auto;
        height: auto;
    }
}
@media(max-width: 768px) {
    .banner_new.banner_search_8_3 {
        background: url(https://timviec365.vn/images/box_search_new/banner_8_3_mb.png);
        background-size: cover;
        background-position: left bottom;
    }
    .banner_text_8_3 {
        width: 85%;
    }
    .title1_8_3, .title2_8_3 {
        font-size: 20px;
        line-height: 22px;
    }
    .txt_footer_8_3, .title_gift_8_3 {
        font-size: 16px;
        line-height: 19px;
    }
    .txt_gift_8_3 {
        font-size: 18px;
        line-height: 20px;
    }
    .box_gift_8_3 {
        gap: 10px;
        column-gap: 15px;
    }
    .item_gift_8_3 {
        width: fit-content;
    }
}
@media(max-width: 600px) {
    .banner_text_8_3 {
        width: 100%;
    }
    .title1_8_3, .title2_8_3 {
        font-size: 18px;
        line-height: 20px;
    }
    .box_title_footer_8_3 {
        padding-left: 0;
    }
    .banner_new.banner_search_8_3 {
        display: none;
    }
}

/* end banner mới  */

.refer_banner .banner_QR{
    position: static;
    width: 289px;
    height: 289px;
}

.refer_banner .banner_QR .scan_qr{
    padding: 10px;
    width: 190px;
    height: 190px;
}

.refer_banner .banner_QR .box_select_login {
    padding: 10px 10px 5px;
}

.refer_banner .banner_QR .note{
    padding: 5px 10px 10px;
}

.refer_banner .banner_QR .text{
    font-size: 12px;
}

.refer_banner .banner_QR .img_qr{
    width: 170px;
    height: 170px;

}

.refer_banner .banner_QR .img_qr img{
    width: 100%;
    height: 100%;
}

.main_search_new .box_refer .refer_content {
    width: 100%;
    height: 100%;
    background: #FFF;
    border-radius: 20px;
    padding: 19px 21px;
}

.main_search_new .box_refer .refer_content .refer_container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.main_search_new .box_refer .refer_content .refer_content_top{
    display: flex;
    gap: 40px;
    padding: 17px 0px;
}

.main_search_new .refer_content_top_left{
    font-size: 17px;
    font-weight: 600;
    width: 180px;
}

.main_search_new .box_refer .refer_content .refer_content_top .refer_content_top_hot{
    display: flex;
    gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
    width: calc(100% - 220px);
}

.main_search_new .item_refer_hot{
    display: flex;
    gap: 9px;
    align-items: center;
    border-radius: 22.5px;
    background: #FBDFDF;
    padding: 9px;
}

.main_search_new .item_refer{
    display: flex;
    gap: 9px;
    align-items: center;
    border-radius: 22.5px;
    background: #EBEEF1;
    padding: 9px;
}

.main_search_new .box_refer .refer_content .refer_content_bot{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 10px;
}

.rotate_180{
    transform: rotate(180deg);
}
.box_dm_cate{
    position: absolute;
    top: 80px;
    width: 100%;
    height: 550px;
    background: #FFF;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    box-shadow: 1px 0px 5px 1px ;
    z-index: 1;
    gap: 15px;
}
.box_dm_cate .box_head{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box_dm_cate .box_head .box_top{
    display: flex;
    justify-content: space-between;
}

.box_dm_cate .box_head .box_top .title{
    font-size: 20px;
    line-height: 120%;
    font-weight: 600;
}



.box_dm_cate .box_head .box_top .btn_close_dmnn{
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EBEEF1;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
}

.box_dm_cate .box_head .box_search{
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px 35px;
    border: 1px solid #4C5BD4;
    border-radius: 25px;
}

.box_dm_cate .box_head .box_search .icon_search{
    position: absolute;
}

.box_dm_cate .box_head .box_search input{
    width: 100%;
    background: none;
    border: none;
    line-height: 20px;
    padding-left: 25px;
}

.box_dm_cate .box_content{
    padding-left: 45px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    height: calc(100% - 117px);
}

.box_dm_cate .box_content .content_left{
    padding: 20px;
    width: 226px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: auto;
}

.box_dm_cate .box_content .content_right{
    padding: 20px;
    width: calc(100% - 250px);
}

.container_dm{
    width: 100%;
}

.container_dm img{
    width: 28px;
    height: 28px;
}

.container_dm p{
    width: calc(100% - 38px);
}

.box_dm_cate .box_content .content_right .box_default{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.box_dm_cate .box_content .content_right .box_tag{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.box_dm_cate .box_content .content_right .box_list{
    padding: 15px 45px;
    height: calc(100% - 63px);
    overflow: auto;
}

.box_dm_cate .box_content .content_right .box_btn{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding: 4px 15px;
}

.box_dm_cate .box_content .content_right .box_btn .btn_left{

}

.box_dm_cate .box_content .content_right .box_btn .btn_right{
    display: flex;
    gap: 9px;
}

.box_dm_cate .box_content .content_right .box_btn button{
    border-radius: 10px;
    padding: 10px 30px;
    height: 100%;
    font-size: 16px;
    line-height: 18px;
}

.box_dm_cate .box_content .content_right .box_btn button.select_all,.box_dm_cate .box_content .content_right .box_btn button.unselect_all{
    background: none;
    border: 1px solid #4C5BD4;
}

.box_dm_cate .box_content .content_right .box_btn button.select_all,.box_dm_cate .box_content .content_right .box_btn button.unselect_all{
    background: none;
    border: 1px solid #4C5BD4;
    color: #4C5BD4;
}

.box_dm_cate .box_content .content_right .box_btn button.select_all:disabled,.box_dm_cate .box_content .content_right .box_btn button.unselect_all:disabled{
    background: none;
    border: none;
    color: #AAA6A6;
}

.box_dm_cate .box_content .content_right .box_btn button.cancel{
    background: #E8E8E8;
    border: none;
}

.box_dm_cate .box_content .content_right .box_btn button.select{
    background: #4C5BD4;
    border: none;
    color: #fff;
}

.box_dm_cate .box_content .content_right .box_list .list_item{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 15px;
}

.box_dm_cate .box_content .content_right .box_list .item_tag{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 13px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 22.5px;
    background: #EBEEF1;
    height: fit-content;
}

.box_list .lb_item_tag input:checked ~ .item_tag{
    background: #4C5BD4 !important;
    color: #FFF;
}

.box_dm_cate .box_content .content_right .box_list .lb_item_tag input{
    display: none;
}

.box_dm_city{
    width: 450px;
    height: 480px;
    position: absolute;
    top: 80px;
    right: 250px;
    background: #FFF;
    border-radius: 20px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 0px 5px 1px ;
    z-index: 1;
}

.box_dm_city .box_top{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 46px;
    margin-bottom: 20px;
}

.box_dm_city .box_top button{
    position: absolute;
    top: -10px;
    right: 0px;
    border-radius: 50%;
    border: none;
    background: #EBEEF1;
    padding: 0;
    width: 28px;
    height: 28px;
    
}

.box_dm_city .box_top .box_search_city{
    width: 321px;
    max-width: calc(100% - 40px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 28px;
    border-radius: 25px;
    border: 2px solid #4C5BD4;
}

.box_dm_city .box_top .box_search_city .icon_search{
    position: absolute;
}

.box_dm_city .box_top .box_search_city input{
    width: 100%;
    padding-left: 30px;
    font-size: 16px;
    line-height: 20px;
    background: none;
    border: none;
}

.box_dm_city .box_btn_city{
    display: flex;
    justify-content: space-between;
    padding: 7px 28px;
    border-top: 1px solid #797878;
    height: 49px;
}

.box_dm_city .box_btn_city button{
    padding: 8px 25px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 18px;
    width: fit-content;
}

.box_dm_city .box_btn_city button.select{
    border: none;
    background: #4C5BD4;
    color: #fff;
}

.box_dm_city .box_btn_city button.unselect_all{
    background: none;
    border: 1px solid #4C5BD4;
    color: #4C5BD4;
}

.box_dm_city .box_btn_city button.unselect_all:disabled{
    border: none;
    color: #AAA6A6;
    padding-left: 0;
}

.box_dm_city .box_content {
    width: 100%;
    height: calc(100% - 115px);
    padding: 20px;
    display: flex;
    padding-right: 0;
}

.box_dm_city .box_content .content_city_left{
    width: 206px;
    height: 100%;
    padding-right: 20px;
    overflow: auto;
}

.box_dm_city .box_content .content_city_left .list_city{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
}

.box_dm_city .box_content .content_city_right{
    width: calc(100% - 206px);
    border-left: 1px solid #B5B0B0;
    overflow: auto;
}

.box_dm_city .box_content .content_city_right .list_district{
    padding-left: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box_dm_city .box_content .content_city_right .content_default{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.box_dm_city .box_content .content_city_right .content_default p{
    font-size: 12px;
    line-height: 120%;
    color: #ABABAB;
}

.box_autocomplete{
    width: 980px;
    height: 572px;
    border-radius: 20px;
    background: #FFF;
    position: absolute;
    top: 80px;
    right: 230px;
    z-index: 1;
    box-shadow: 1px 0px 5px 1px ;
}

.box_autocomplete .container_complete{
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.box_autocomplete .container_complete .btn_close_autocp{
    width: 28px;
    height: 28px;
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: #EBEEF1;
    border-radius: 50%;
}

.box_autocomplete .container_complete .box_key_search{
    width: 525px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #9A9797;
    padding: 20px 15px;
}

.box_autocomplete .container_complete .box_key_search .key_top{
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #9A9797;
    padding-bottom: 10px;
    height: 34px;
}

.container_complete .box_key_search .key_top p{
    font-size: 16px;
    line-height: 120%;
    color: #000;
    font-weight: 600;
}

.container_complete .box_key_search .key_content{
    height: calc(100% - 34px);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.container_complete .box_key_search .key_content .key_text{
    font-size: 20px;
    line-height: 120%;
    color: #000;
    font-weight: 600;
    height: 24px;
}

.container_complete .box_key_search .key_content .list_key{
    width: 100%;
    height: calc(100% - 40px);
    overflow: auto;
    padding-left: 55px;
}
.container_complete .box_key_search .key_content .list_key .container_key{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.container_complete .box_key_search .item_key{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.container_complete .box_key_search .item_key img{
    width: 28px;
    height: 28px;
}

.container_complete .box_key_search .item_key p{
    width: calc(100% - 38px);
    font-size: 16px;
    line-height: 120%;
    color: #000;
}

.container_complete .box_post{
    width: calc(100% - 525px);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.container_complete .box_post .post_top{
    width: 100%;
    height: 37px;
    padding-bottom: 8px;
    padding-left: 20px;
    font-size: 24px;
    line-height: 120%;
    color: #000;
    font-weight: 600;
}

.container_complete .box_post .post_content{
    height: calc(100% - 37px);
    width: 100%;
    overflow: auto;
}

.container_complete .box_post .post_content .list_post{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.container_complete .item_post{
    width: 100%;
    padding: 8px;
    border: 1px solid #E2E2E2;
    display: flex;
    gap: 8px;
}
.container_complete .item_post .avatar{
    width: 70px;
    height: 70px;
    position: relative;
}
.container_complete .item_post .avatar .img_avatar{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container_complete .item_post .avatar .img_avatar img{
    max-width: 100%;
}
.container_complete .item_post .avatar .box_online{
    background: #F4FCE9;
    border-radius: 24px;
    padding: 3px 7px;
    font-size: 9px;
    line-height: 11px;
    color: #76B51B;
    position: absolute;
    bottom: 0;
    right: 0;
}

.container_complete .item_post .des_vl{
    width: calc(100% - 78px);
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.container_complete .item_post .des_vl .new_title{
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
    cursor: pointer;
}

.container_complete .item_post .des_vl .company_name{
    font-size: 14px;
    line-height: 20px;
    color: #444444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.container_complete .item_post .des_vl .info_new{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.container_complete .item_post .des_vl .info_new .item_info{
    width: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    color: #5F5C5C;
    margin-top: 5px;
}

.container_complete .item_post .des_vl .info_new .item_info.w50{
    width: 50%;
}

.container_complete .item_post .des_vl .info_new .item_info .icon{
    width: 16px;
    height: 16px;
}

.click_search{
    cursor: pointer;
}

.new_banner_th .main_search{
    padding: 0;
}

.box_m_search{
    display: none;
}

.search_nc_th .hide_search_pc{
    display: none;
}
.pop-cod{
    float: left;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.pop{
    margin-right: 0;
}
.btn-pop{
    float: left;
    width: 100%;
}
.pop-cod .pop:nth-child(3n+0){
    margin-right: 0;
}

.search_nc_th .select2-container .select2-selection--single{
    height: 100% !important;
    border: none !important;
    border-radius: 8px;
}

.boxtxt_scanqr .btn_hd_scanqr {
    border: none;
    background: transparent;
    font-size: 12px;
    margin: 0;
    padding: 0;
    line-height: 14px;
    color: #4c5bd4;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}
.banner_QR .boxtxt_scanqr {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}
.banner_QR .boxtxt_scanqr .txt_note_scanqr {
    text-align: center;
    font-size: 13px;
}

@media(max-width: 1165px) {
    .main_search h1{
        padding-left: 10px;
        font-size: 24px;
      }
    .new_banner_th .box_m_search{
        padding: 10px;
    }
    .new_banner_th .main_search{
        padding-top: 110px;
        position: unset;
        float: left;
        padding-bottom: 10px;
    }
    .container_search_new{
        display: none;
    }
    .box_m_search{
        display: block;
    }
    .box_m_search #recordButton{
        top: 5px;
    }
    .search_nc_th .hide_search_pc{
        display: block;
    }
    .btn-pop{
        padding-top: 10px !important;
    }
}

/* tạm ẩn tìm kiếm theo keyword và chỉ chọn 1 tỉnh thành, 1 ngành nghề */
/* .searchNotKeyword_and_selectOne .box_keyword_mb, 
.searchNotKeyword_and_selectOne .show_nc.nangcao, 
.searchNotKeyword_and_selectOne .box_btn_key {
    display: none;
}
.searchNotKeyword_and_selectOne .box_btn_cate {
    width: 43% !important;
    padding-left: 20px;
    border-right: 1px solid #ccc;
    display: block !important;
}
.searchNotKeyword_and_selectOne .box_btn_cate #show_dmnn {
    justify-content: flex-start;
}
.searchNotKeyword_and_selectOne .box_btn_city.box_choose_city {
    width: 43% !important;
}
@media screen and (max-width: 1165px) {
    .searchNotKeyword_and_selectOne.box_m_search .new_search .box_input .mobi-bor {
        padding: 0;
        width: 100%;
    }
} */