/* HEADER CONNECT APP */
header {
  background-color: #fedd02;
  height: 60px;
}
.container_header {
  max-width: 840px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 16px;
  margin-inline: auto;
  height: 100%;
}
header .left {
  display: flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  text-decoration: none;
  color: #303030;
}
header .left > img {
  margin-right: 12px;
}
/* Sidebar  */
.wrapper_install_app{
  display: inline-block;
  position: relative;
}
.wrapper_install_app > .install_app{
  font-size: 12px !important;
  padding: 4px 6px !important;
  border-radius: 5px !important;
  background-color: rgb(255 35 28 / 93%);
  border: none !important;
  color: white !important;
}
.wrapper_install_app>#install_app ~ .install_app_popup{
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
}
.wrapper_install_app>#install_app:checked ~ .install_app_popup{
  opacity: 1;
  visibility: visible;
}
.wrapper_install_app .install_app_popup{
  position: absolute;
  width: 200px;
  height: 150px;
  background-color: white;
  box-shadow: 0 0px 15px gray;
  border-radius: 4px;
  overflow: hidden;
  right: -20px;
  z-index: 2;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}
.wrapper_install_app .install_app_popup .install_app_logo{
  flex: 1;
  padding: 10px;
  text-align: center;
}
.wrapper_install_app .install_app_buttons{
  display: flex;
}
.wrapper_install_app .install_app_buttons button{
  font-size: 12px !important;
  padding: 7px 6px !important;
  flex: 1;
  border: none;
}
.wrapper_install_app .install_app_buttons button:nth-child(1){
  background-color: #fedd02;
  color: black;
}
.wrapper_install_app .install_app_buttons button:nth-child(2){
  background-color: #f13500;
  color: white;
}
input[id="side_bar"] + nav {
  transform: translateX(50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
input[id="side_bar"]:checked + nav {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
nav {
  position: fixed;
  inset: 0;
  background-color: rgba(165, 165, 165, 0.5);
  z-index: 999;
  overflow: hidden;
}
nav #nav_container {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 30%;
  height: 100%;
  background-color: #f8f8f8;
  padding: 16px;
  overflow-y: scroll;
}
nav #nav_container .nav_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 24px;
}
nav #nav_container .nav_title > div:nth-child(1) {
  display: flex;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  color: #303030;
}
.nav_items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 300px);
}
.nav_item_title {
  font-size: 14px;
  line-height: 22.4px;
  color: #b2b2b2;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.nav_item_option {
  font-size: 16px;
  font-weight: 600;
  line-height: 20.8px;
  color: #303030;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  cursor: pointer;
  border-bottom: 1px solid #e7e7e7;
  border-radius: 8px;
  text-decoration: none;
}
.nav_item_option:hover{
  text-decoration: none;
}
.btn_nav {
  padding-block: 13px;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 14px;
  line-height: 22.4px;
  outline: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.btn_nav.register_direction {
  color: white;
  background-color: #1077d0;
}
.btn_nav.login_direction {
  margin-top: 8px;
  color: #1077d0;
  background-color: white;
}
#notify {
  position: relative;
}
.notify_number {
  position: absolute;
  width: 24px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #f13500;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.nav_item_user {
  margin-top: 8px;
  background-color: white;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav_item_user .avatar {
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
}
#account_conversion{
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.nav_item_user .avatar_account_conversion_cover{
  position: relative;
}
.nav_item_user .avatar_account_conversion_cover .avatar_account_conversion_background-img{
  position: absolute;
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  top: -7.5px;
  left: -7.5px;
}
.nav_item_user .avatar_account_conversion{
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  overflow: hidden;
}
.nav_item_user .avatar_account_conversion img,
.nav_item_user .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav_item_user .header_icon_down{
  width: 19.2px;
  margin-inline: auto;
  transform: translate(72%, -70%);
}
.nav_item_user .header_icon_down>svg{
  cursor: pointer;
  background-color: #e2e4e9;
  border-radius: 100%;
}
.nav_item_user .user > div:nth-child(1) {
  font-size: 16px;
  font-weight: 600;
  color: #303030;
  text-transform: capitalize;
  line-height: 22.8px;
}
.nav_item_user .user_account_conversion > div:nth-child(1) {
  font-size: 12px;
  font-weight: 600;
  color: #303030;
  text-transform: capitalize;
  line-height: 18.8px;
}
.nav_item_user .user > div:nth-child(2) {
  font-size: 14px;
  color: #b2b2b2;
  line-height: 22.4px;
}
.nav_item_user .user_account_conversion > div:nth-child(2) {
  font-size: 10px;
  color: #b2b2b2;
  line-height: 18.4px;
}
.wrapper_link_hokinhdoanh{
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  background-color: white;
  align-items: center;
}
.wrapper_dothithongminh1{
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.text_dothithongminh1{
  display: flex;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  color: #303030;
}
.nav_link_hokinhdoanh{
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: black;
}
.nav_link_hokinhdoanh:hover{
  text-decoration: none;
  color: black;
}
.link_to_hokinhdoanh{
  margin-top: 10px;
  justify-content: space-between;
  display: flex;
  text-align: center;
  font-size: 1.4rem;
  color: black;
}
.link_to_hokinhdoanh a{
  color: black;
  text-decoration: underline;
}
.link_to_hokinhdoanh p{
  text-align: center;
}
.bottom_link_navigation{
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.bottom_link_navigation #bottom_company{
  font-weight: bold;
}
.bottom_link_navigation .icon_left img{
  width: 12px;
  margin-right: 5px;
}
.bottom_link_navigation .down_bottom_wrapper{
  display: flex;
  flex-direction: column; 
}
.bottom_link_navigation .bottom_connect{
  display: flex;
  align-items: center;
  gap: 8px;
}
.bottom_link_navigation  .bottom_connect_icon{
  margin-inline: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.bottom_link_navigation  .bottom_connect_icon a{
  display: flex;
  align-items: center;
}
.bottom_link_navigation .bottom_icon_facebook{
  width: 20px;
}
.bottom_link_navigation .bottom_icon_youtobe{
  height: 20px;
}
.bottom_link_navigation .bottom_icon_zalo{
  width: 24px;
}
.bottom_link_navigation #redirect_hokinhdoanh{
  
}
.icon_bocongthuong_desktop{
  display: block;
  position: absolute; 
  top: -8px; 
  right: 0; 
  width: 25%
}
.icon_bocongthuong_desktop > img{
  width: 100%;
}
.icon_bocongthuong_mobile{
  display: none !important;
  position: absolute;
  top: 100%;
  width: 100%;
  transform: translateX(-5px);
  scale: 1.1;
}
.icon_bocongthuong_mobile > img{
  width: 100%;
}
/* Responsive */
@media screen and (max-width: 600px) {
  nav #nav_container {
    width: 90%;
  }
  .bottom_link_navigation .down_bottom_wrapper{
    justify-content: space-between;
    flex-direction: row; 
  }
  .bottom_link_navigation  .bottom_connect_icon{
    margin-inline: auto;
  }
  .bottom_link_navigation .bottom_connect{
    flex-direction: column;
  }
  .link_to_hokinhdoanh{
    margin-top: 0px;
    flex-direction: column;
  }
  .link_to_hokinhdoanh p{
    text-align: right;
  }
  .bottom_link_navigation .bottom_icon_facebook{
    width: 28px;
  }
  .bottom_link_navigation .bottom_icon_youtobe{
    height: 28px;
  }
  .bottom_link_navigation .bottom_icon_zalo{
    width: 32px;
  }
  .nav_items {
    min-height: calc(100vh - 400px);
  }
  .icon_bocongthuong_desktop{
    display: none;
  }
  .icon_bocongthuong_mobile{
    display: block !important;
  }
}
@media screen and (max-width: 380px) {
  .nav_items {
    min-height: calc(100vh - 417px);
  }
}

@media screen and (max-width: 350px) {
  nav #nav_container {
    width: 100%;
  }
  .nav_items {
    min-height: calc(100vh - 425px);
  }
}