@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
@media (min-width: 1400px) {
}

@media screen and (min-width: 1025px) {
}
/*Ipad ngang(1024 x 768)*/
@media screen and (max-width: 1024px) {
  .custom-nav .nav-link {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}
/*Ipad dọc(768 x 1024)*/
@media screen and (max-width: 768px) {
  .sm-none {
    display: none;
  }
  .sm-block {
    display: block;
  }
}
/*Tablet nhỏ(480 x 640)*/
@media screen and (max-width: 767px) {
  .xs-block {
    display: block;
  }
  .xs-none {
    display: none !important;
  }
  .breadcrumb {
    display: none;
  }
  .hc-nav-trigger.hc-nav-1 {
    display: block !important;
  }
}
/*Iphone(480 x 640)*/
@media screen and (max-width: 320px) {
  .table-vang td,
  .table-vang th {
    padding: 0.5rem;
  }
  .table-vang td {
    font-size: 12px;
  }
  .table-vang th {
    font-size: 16px;
  }
}
/*Smart phone nhỏ*/
@media screen and (max-width: 240px) {
}
