﻿@charset "UTF-8";
/*$secondary-color: #cf0921;
$primary-color: #014eff;
$text-active: #FCE731;*/
@keyframes shrink {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 130%;
  }
}
@keyframes shrink2 {
  0% {
    background-size: 95%;
  }
  100% {
    background-size: 100%;
  }
}
@keyframes opacitymove {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacitymoveup {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes opacitymovedown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes translateXmove {
  from {
    transform: translateX(-30px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes translateYmoveup {
  from {
    transform: translateY(30px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes translateYmovedown {
  from {
    transform: translateY(-30px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes translateLoad {
  0% {
    left: 0%;
    right: 100%;
    width: 0%;
  }
  10% {
    left: 0%;
    right: 75%;
    width: 25%;
  }
  90% {
    right: 0%;
    left: 75%;
    width: 25%;
  }
  100% {
    left: 100%;
    right: 0%;
    width: 0%;
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/******* RESPONSIVE ********/
/****Màn hình máy tính thông thường****/
/****Màn hình desktop loại bé****/
/**** Màn hình ipad hiển thị theo chiều ngang (Landscape) ****/
/****Màn hình ipad loại bé hiển thị theo chiều ngang (Landscape)****/
/****Màn hình ipad hiển thị theo chiều dọc (Portrait)****/
/****Màn hình ipad loại bé hiển thị theo chiều dọc (Portrait)****/
/****Màn hình điện thoại hiển thị theo chiều ngang (Landscape)****/
/****Màn hình điện thoại Iphone Plus****/
/****Màn hình điện thoại Iphone****/
/****Màn hình điện thoại loại bé****/
@media only screen and (max-width: 767px) {
  .canvas__open {
    display: block;
    font-size: 22px;
    color: #111111;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    border: 1px solid #111111;
    border-radius: 2px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 25px;
  }
  .offcanvas-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    content: "";
    z-index: 98;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    visibility: hidden;
  }
  .offcanvas-menu-overlay.active {
    visibility: visible;
  }
  .offcanvas-menu-wrapper {
    position: fixed;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #ffffff;
    padding: 50px 20px 30px 30px;
    display: block;
    z-index: 99;
    overflow-y: auto;
    -webkit-transition: all, 0.5s;
    -o-transition: all, 0.5s;
    transition: all, 0.5s;
    opacity: 0;
  }
  .offcanvas-menu-wrapper.active {
    opacity: 1;
    left: 0;
  }
  .offcanvas__menu {
    display: none;
  }
  .slicknav_btn {
    display: none;
  }
  .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
  }
  .slicknav_nav ul {
    margin: 0;
  }
  .slicknav_nav .slicknav_row,
  .slicknav_nav a {
    padding: 7px 0;
    margin: 0;
    color: #111111;
    font-weight: 600;
  }
  .slicknav_nav .slicknav_arrow {
    color: #111111;
  }
  .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }
  .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #111111;
  }
  .slicknav_nav {
    display: block !important;
  }
  .offcanvas__top__hover {
    display: inline-block;
    position: relative;
  }
  .offcanvas__top__hover:hover ul {
    top: 24px;
    opacity: 1;
    visibility: visible;
  }
  .offcanvas__top__hover span {
    color: #111111;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
  }
  .offcanvas__top__hover span i {
    font-size: 20px;
    position: relative;
    top: 3px;
    right: 2px;
  }
  .offcanvas__top__hover ul {
    background: #111111;
    display: inline-block;
    padding: 2px 0;
    position: absolute;
    left: 0;
    top: 44px;
    opacity: 0;
    visibility: hidden;
    z-index: 3;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
  }
  .offcanvas__top__hover ul li {
    list-style: none;
    font-size: 13px;
    color: #ffffff;
    padding: 2px 15px;
    cursor: pointer;
  }
  .header__top {
    display: none;
  }
  .header .container {
    position: relative;
  }
  .header__menu {
    display: none;
  }
  .header__nav__option {
    display: none;
  }
  .search-model-form input {
    width: 100%;
    font-size: 24px;
  }
  .hero__slider.owl-carousel .owl-nav button {
    left: 15px;
    top: 80%;
  }
  .hero__slider.owl-carousel .owl-nav button.owl-next {
    left: 75px;
    right: 0;
  }
  .banner__item.banner__item--middle {
    margin-top: 0;
  }
  .banner__item.banner__item--last {
    margin-top: 0;
  }
  .banner__item {
    margin-bottom: 40px;
  }
  .banner {
    padding-bottom: 60px;
  }
  .banner__item__pic {
    float: none;
  }
  .banner__item__pic img {
    min-width: 100%;
  }
  .banner__item__text {
    max-width: 100%;
    position: relative;
    top: 0;
    padding-top: 22px;
  }
  .filter__controls li {
    margin-right: 15px;
  }
  .categories__text {
    margin-bottom: 40px;
  }
  .categories__hot__deal {
    margin-bottom: 40px;
  }
  .instagram__text {
    padding-top: 70px;
  }
  .instagram__pic__item {
    width: 50%;
  }
  .shop__product__option__right {
    text-align: left;
    padding-top: 20px;
  }
  .shop__sidebar {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .testimonial__text {
    padding: 100px 40px 100px;
  }
  .product__details__breadcrumb {
    text-align: left;
  }
  .product__details__pic .nav-tabs {
    width: auto;
    margin-bottom: 40px;
  }
  .product__details__pic .nav-tabs .nav-item {
    margin-bottom: 0;
    margin-right: 10px;
  }
  .product__details__option__size {
    display: block;
    margin-right: 0;
    margin-bottom: 25px;
  }
  .product__details__last__option h5:before {
    width: 440px;
  }
  .product__details__tab .nav-tabs .nav-item {
    margin-bottom: 15px;
  }
  .shopping__cart__table {
    overflow-y: auto;
  }
  .shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__pic {
    float: none;
    margin-right: 0;
  }
  .continue__btn {
    text-align: center;
  }
  .continue__btn.update__btn {
    text-align: center;
    margin-top: 20px;
  }
  .cart__discount {
    margin-top: 40px;
  }
  .checkout__order {
    margin-top: 20px;
  }
  .blog__details__share {
    position: relative;
    left: 0;
    margin-bottom: 18px;
  }
  .blog__details__share span {
    margin-bottom: 14px;
    margin-right: 0;
  }
  .blog__details__share ul li {
    margin-bottom: 15px;
    display: inline-block;
    margin-right: 10px;
  }
  .blog__details__share ul li:last-child {
    margin-right: 0;
  }
  .blog__details__author {
    text-align: center;
    margin-bottom: 20px;
  }
  .blog__details__tags {
    text-align: center;
  }
  .contact__text {
    margin-bottom: 40px;
  }
  .hero__social {
    margin-top: 180px;
  }
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/roboto/roboto-variablefont_wdth,wght.ttf") format("truetype");
}
@font-face {
  font-family: "Noto-Sans";
  src: url("../../fonts/noto_sans/notosans-variablefont_wdth,wght.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/manrope/manrope-variablefont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "manrope-extrabold";
  src: url("../../fonts/manrope/static/manrope-extrabold.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  src: url("../../fonts/montserrat/montserrat-variablefont_wght.ttf") format("truetype");
}
ul, li {
  list-style: none;
}

body {
  font-family: Manrope, Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
}

p {
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

/***** Left *******/
.navbar-nav {
  overflow: scroll;
  display: initial;
}

#pagebody {
  display: inline-flex;
  height: calc(100vh - 120px);
}

#tbOutView {
  display: inline-flex;
}

#leftpanel {
  z-index: 3;
  border-right: 6px solid rgba(204, 204, 204, 0.5294117647);
  transition: margin-left 0.5s cubic-bezier(0.72, 0.03, 0.27, 1.03);
  position: relative;
  background-image: url("/assets/images/ha-01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#leftpanel .sidebar-body {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}
#leftpanel.show {
  margin-left: 0;
  min-width: 200px;
}
#leftpanel .tab-content #dataPage {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 10;
  text-decoration: underline;
  font-size: 15px;
}
#leftpanel .ui-resizable-e {
  background-color: #ebebeb;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 5px;
  position: absolute;
  top: 0;
  height: 100%;
  right: -6px;
}
#leftpanel .ui-resizable-e #eResize {
  background: #bbb;
  height: 40px;
  margin-top: 71%;
}
#leftpanel .ui-resizable-e #eResize:hover {
  background-color: gold;
}
#leftpanel .ui-resizable-e:hover {
  background-color: #edf2d6;
  cursor: col-resize;
}
@media only screen and (max-width: 992px) {
  #leftpanel {
    width: 35%;
    height: auto;
    max-height: 100%;
    max-width: 80%;
  }
}

#detailPanel {
  display: inline-flex;
  height: calc(100vh - 55px);
  margin-top: 2px;
}
#detailPanel #collectionInfo {
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}
#detailPanel #collectionInfo .iCollect {
  padding: 8px;
  cursor: pointer;
  width: 100%;
  display: inline-block;
  color: #333;
}
#detailPanel #collectionInfo .iCollect.btnBack {
  background-color: #1A52CD;
  color: #fff;
  font-weight: 600;
  font-size: 1.1em;
  /*  i {
      font-size: 30px;
  }*/
}
#detailPanel #collectionInfo .iCollect.btnBack:hover {
  background-color: #1A52CD;
}
#detailPanel #collectionInfo .iCollect:hover {
  background-color: #1A52CD;
}
#detailPanel #collectionInfo .iCollect:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
#detailPanel #collectionInfo .iCollect.active {
  background-color: #1A52CD;
  font-weight: 600;
}
#detailPanel #detailInfo {
  height: calc(100vh - 55px);
  position: relative;
}
#detailPanel #detailInfo td.slabel {
  white-space: nowrap;
  max-width: 180px;
}
#detailPanel #detailInfo .featureInfo {
  text-align: center;
  padding: 15px;
}
#detailPanel #detailInfo .featureInfo .title {
  font-size: 1.1em;
  font-weight: 600;
  text-transform: uppercase;
  color: #1A52CD;
}

#sidebarClose {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.4);
  padding: 3px;
  cursor: pointer;
  display: none;
}
#sidebarClose #ic-sidebarClose {
  text-align: center;
  height: 35px;
  width: 35px;
  background: white;
}
#sidebarClose #ic-sidebarClose i {
  line-height: 35px;
  font-size: 20px;
  transition: transform 1s cubic-bezier(1, -0.29, 0.14, 0.96);
  color: gray;
}
@media only screen and (max-width: 992px) {
  #sidebarClose {
    display: block;
  }
}

#sidebarCollapse {
  z-index: 4;
  background: rgba(255, 255, 255, 0.4);
  padding: 3px;
  cursor: pointer;
}
#sidebarCollapse #ic-sidebarCollapse {
  text-align: center;
  height: 35px;
  width: 35px;
  background: white;
}
#sidebarCollapse #ic-sidebarCollapse i {
  transform: scaleX(1);
  line-height: 35px;
  font-size: 20px;
  transition: transform 1s cubic-bezier(1, -0.29, 0.14, 0.96);
  color: gray;
}
@media only screen and (max-width: 992px) {
  #sidebarCollapse #ic-sidebarCollapse i {
    transform: scaleX(-1);
  }
}

#listmenu {
  height: calc(100vh - 55px);
  position: relative;
  padding-top: 45px;
  padding-right: 10px;
  padding-left: 25px;
}
#listmenu .mnuitems {
  padding-bottom: 15px;
}
#listmenu .mnuitems.mncap1 {
  padding-left: 20px;
}
#listmenu .mnuitems.mncap1 .mnuitems.mncap2 {
  padding-left: 20px;
}
#listmenu .mnuitems .group {
  font-weight: bold;
}
#listmenu .mnuitems .group:hover {
  color: #1A52CD;
}
#listmenu .mnuitems a {
  display: inline-block;
  padding: 7px;
  margin: 0 5px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  color: #fff;
}
#listmenu .mnuitems a i {
  color: #1A52CD;
}
#listmenu .mnuitems .leaf {
  border-radius: 20px;
  font-weight: 400;
  text-decoration: none;
  outline: none;
  min-height: 34px;
  line-height: 22px;
  text-transform: none;
  font-size: 16px;
  color: #000;
  margin-left: 20px;
}
#listmenu .mnuitems .leaf a {
  font-size: 15px;
  padding: 8px;
}
#listmenu .mnuitems .leaf a:hover {
  background-color: #fff;
  color: #1A52CD;
  border-radius: 20px;
}
#listmenu .mnuitems .leaf a.active {
  background: #fff;
  color: #1A52CD;
  font-weight: bold;
  border-radius: 20px;
}
#listmenu .mnuitems .leaf a.active i {
  color: #1A52CD;
}
#listmenu .mnuitems .leaf a.disabled {
  color: #000000;
  opacity: 0.5;
  pointer-events: none;
}
#listmenu .mnuitems .leaf a.disabled i {
  color: #000000;
  opacity: 0.5;
}

/***** RIGHT CONTENT *******/
#rightpanel {
  height: calc(100vh - 55px);
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  position: relative;
  bottom: 0;
  flex: 1;
  padding: 0 5px;
}
#rightpanel .TabTable {
  height: inherit;
}

#tbOutputContent {
  z-index: 9;
  height: inherit;
  padding: 5px;
}
#tbOutputContent #mapPage {
  position: absolute;
  right: 5px;
  top: 8px;
  z-index: 10;
  text-decoration: underline;
  font-size: 15px;
}

/** Top **/
#page-top {
  display: flex;
  border-bottom: 3px solid #1A52CD;
  border-radius: 5px 5px 0 0;
  padding-left: 0;
  padding-right: 0;
}
#page-top .title {
  font-weight: bold;
  background-color: #fff;
  text-transform: uppercase;
  color: #1A52CD;
  font-size: 20px;
  padding-top: 10px;
}
#page-top #cboToolsCMS {
  margin-left: auto;
  padding: 3px 0;
}
#page-top button {
  color: #1A52CD;
  cursor: pointer;
  transition: 0.3s;
  background-color: #F9E6DA;
  font-size: 14px;
  border-radius: 5px;
  height: 35px;
  font-weight: 600;
  padding: 0 10px;
}
#page-top button i {
  margin-right: 3px;
}
#page-top button:hover {
  background-color: #1A52CD;
  color: #fff;
}
#page-top button:focus {
  outline: none;
}

/** Filter **/
#tools-filter {
  flex-flow: wrap;
  background: #f4f5f6;
  margin: 3px 0;
  border-radius: 5px;
  padding: 7px;
}
#tools-filter .ftitems {
  display: inline-flex;
  position: relative;
  padding: 5px 0;
  align-self: center;
  margin: 0 5px;
  width: unset !important;
  float: unset !important;
  flex-direction: column;
}
#tools-filter .ftitems label {
  display: inline;
  padding-right: 10px;
  margin-right: 5px;
  min-width: 80px;
  margin-bottom: 0;
  font-weight: bold;
}
#tools-filter .ftitems .ui-tieude {
  display: inline;
  padding-right: 10px;
  margin-right: 5px;
  min-width: 80px;
  font-weight: bold;
}
#tools-filter .ftitems input.fts {
  width: 300px;
}
#tools-filter .ftitems .datepicker {
  padding-right: 20px;
}
#tools-filter .ftitems .fa-calendar {
  position: absolute;
  bottom: 17px;
  right: 7px;
}
#tools-filter .ftitems.button {
  flex-direction: row;
  width: 100% !important;
  justify-content: center !important;
  margin: 0;
  padding: 5px;
}
#tools-filter .ftitems.button i {
  position: relative;
  top: unset;
  right: unset;
  margin-right: 3px;
}
#tools-filter .ftitems button {
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
  margin-right: 5px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#tools-filter .ftitems .btnSearch {
  color: #ffffff;
  background-color: #1A52CD;
}
#tools-filter .ftitems .btnSearch:hover {
  opacity: 0.8;
}
#tools-filter .ftitems .clearFilter {
  color: #ffffff;
  background-color: #878787;
}
#tools-filter .ftitems .clearFilter:hover {
  opacity: 0.8;
}
#tools-filter .UI-DROP .ui-tieude::after {
  background: #F9E6DA;
  border-radius: 3px;
  position: absolute;
  right: 5px;
  content: "";
  height: 22px;
  width: 22px;
  top: 31px;
}
#tools-filter .UI-DROP .UI-DDL {
  border-radius: 5px;
  box-shadow: 1px 2px 5px -2px #ddd inset;
  display: flex;
  height: 32px;
  align-items: center;
}
#tools-filter .UI-DROP .UI-DDL::after {
  position: absolute;
  right: 12px;
}
#tools-filter .UI-DROP .UI-DDL i {
  border-left: 1px solid #ddd;
  padding: 6px 11px;
  height: 31.99px;
}
#tools-filter .UI-DROP .dropdown-menu {
  left: 33%;
}
#tools-filter .form-control {
  font-size: 13px;
  height: 32px;
  padding: 0px 5px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  font-weight: 400;
}
#tools-filter .form-control:active, #tools-filter .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #66D37E;
}

/** Result **/
.result {
  display: flex;
  justify-content: flex-start;
  padding: 10px 0;
  font-size: 14px;
}
.result #textResult {
  font-weight: bold;
}
.result #boxResult {
  background: #F9E6DA;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 5px;
}
.result #boxResult .btn, .result #boxResult button {
  color: #fff;
  transition: 0.5s;
  margin-left: 5px;
  cursor: pointer;
  border-radius: 7px;
  background: none;
}
.result #boxResult .btn:hover, .result #boxResult button:hover {
  color: #1A52CD;
  border: solid 1px #1A52CD;
}
.result .optView {
  display: flex;
  margin-left: 7px;
}
.result .optView button {
  padding: 0 10px;
  background-color: #F9E6DA;
  color: #333;
  margin-right: 5px;
  border-radius: 4px;
  cursor: pointer;
}
.result .optView button.active {
  background-color: #1A52CD;
  color: #fff;
}
.result #bt_exp {
  background: #F9E6DA;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
}
.result #bt_exp:hover {
  background: #1A52CD;
  color: #fff;
}
.result #phantrang-table {
  margin-left: auto;
}
.result .left {
  font-weight: bold;
}

#pOutput.noChart .nav-tabs {
  display: none;
}
#pOutput .nav-tabs {
  width: 100%;
  padding-top: 10px;
}
#pOutput .nav-tabs .nav-link {
  padding: 5px 15px;
}
#pOutput .nav-tabs .nav-link.active {
  color: #1A52CD;
  font-weight: 600;
  border-bottom: 5px solid #1A52CD;
}
#pOutput #pChart {
  position: relative;
  padding: 10px;
  /*
  .view {
      width: 100%;
  }*/
}
#pOutput #pChart .view {
  margin-bottom: 20px;
}
#pOutput #pChart .btn-xs {
  display: none;
}

/******* TABLE *******/
#dView {
  position: relative;
  padding: 0;
  border: none;
  height: 457px;
  width: 100%;
  overflow: auto;
  margin-bottom: 50px;
}
#dView .slabel {
  font-weight: 500;
  color: #1A52CD;
}
#dView .svalue {
  color: #000;
}
#dView .lstViewitem th.btnclick {
  display: inline-flex;
  justify-content: space-between;
  width: 100%;
  padding: 5px;
}
#dView .lstViewitem th.btnclick span {
  padding: 3px;
}
#dView .lstViewitem th.btnclick ._ext_ {
  background-color: #1A52CD;
  padding: 5px 13px !important;
  color: #fff;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 14px;
  font-size: 0.8em;
}
#dView .lstViewitem th.btnclick ._ext_ i {
  color: #fff;
  font-size: 1em;
}
#dView .lstViewitem th.btnclick .lstView_detail {
  background-color: #1A52CD;
  padding: 5px 13px;
  color: #fff;
  margin-left: auto;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 14px;
  font-size: 0.8em;
}
#dView .lstViewitem td {
  border-left: 2px solid #dee2e6;
}
#dView table#tbView {
  border-collapse: unset;
  min-width: 500px;
  /*color: $black;*/
  border-collapse: collapse;
  font-size: 14px;
}
#dView table#tbView thead {
  position: relative;
  border-color: #ddd;
  border-radius: 8px;
}
#dView table#tbView thead th {
  position: sticky;
  top: -1px;
  padding: 8px 18px 8px 10px;
  Vertical-align: middle;
  font-weight: 600;
  background-color: #1A52CD;
  color: #fff;
  border-bottom: 1px !important;
  text-align: center;
}
#dView table#tbView thead th:first-child {
  border-radius: 8px 0 0 0;
}
#dView table#tbView thead th:last-child {
  border-radius: 0 8px 0 0;
}
#dView table#tbView thead .order {
  position: absolute;
  right: 4px;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
#dView table#tbView thead .order i {
  color: #dce9ff;
  cursor: pointer;
  height: 8px;
}
#dView table#tbView thead .order i:not(.active) {
  opacity: 0.4;
}
#dView table#tbView thead .order i:focus {
  outline: none;
}
#dView table#tbView thead .order:hover i {
  color: #f3f3f3;
}
#dView table#tbView thead i {
  color: #dce9ff;
  cursor: pointer;
  height: 8px;
}
#dView table#tbView thead i:focus {
  outline: none;
}
#dView table#tbView thead:hover i {
  color: #f3f3f3;
}
#dView table#tbView tbody tr:hover td {
  background-color: #FFFDDE;
  cursor: pointer;
}
#dView table#tbView tbody td:first-child, #dView table#tbView tbody td:last-child {
  text-align: center;
}
#dView table#tbView tbody td:last-child .fa {
  cursor: pointer;
}
#dView table#tbView tbody td:last-child .fa:hover {
  opacity: 0.8;
}
#dView table#tbView tbody ._ext_ {
  text-align: center;
  width: 100%;
  display: inline-block;
}
#dView table#tbView tbody .lblext {
  display: none;
}
#dView table#tbView td {
  padding: 10px 12px;
  line-height: 1.5;
  border: 1px solid #ddd;
  border-bottom: 1px solid #ccc;
  white-space: inherit;
}
#dView table#tbView td i {
  cursor: pointer;
}
#dView table#tbView td i:hover {
  opacity: 0.8;
}

._ext_ i, i.detail {
  font-size: 18px;
  color: #1A52CD;
}

.UI-SUGGEST li {
  padding: 6px 12px;
  font-size: 14px;
  border-bottom: 1px solid rgba(185, 185, 185, 0.4);
}
.UI-SUGGEST li:hover {
  font-weight: 500;
  background-color: #f9f9f9;
}

.UI-SUGGEST ul {
  min-width: 64%;
  max-height: 300px;
  overflow: hidden scroll;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border-radius: 3px;
}

/**** Modal ****/
.modal-header {
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border-bottom: 3px solid #1A52CD !important;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
  position: relative;
}
.modal-header h4 {
  color: #000;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.modal-header .close {
  margin: unset;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 30px;
  padding: 10px 15px;
}

#loading {
  position: absolute;
  left: 60%;
  top: 74px;
  color: red;
  display: none;
}

.modal-content {
  min-height: 96%;
}

/*.modal-dialog {
    width: 86% !important;
    height: 95% !important;
}*/
#modalCommon .modal-dialog {
  top: 30px;
  width: 86% !important;
  height: 95% !important;
}

#modalDetail ul {
  list-style: none;
  position: relative;
  padding: 10px;
  display: grid;
  grid-template-columns: 50% 50%;
}
#modalDetail ul li {
  padding: 5px 10px;
  border-bottom: dotted 1px #ddd;
  margin-top: 3px;
}
#modalDetail ul li.liCollection {
  grid-column: 1/3;
  background: #eee;
  border-radius: 8px;
}
#modalDetail ul li.liCollection label i {
  display: inline-block;
  background: #ccc;
  padding: 3px;
  border-radius: 3px;
  margin-left: 10px;
}
#modalDetail ul li.liCollection label i:hover {
  background: #1A52CD;
}
#modalDetail ul li table.collection {
  display: none;
}
#modalDetail ul li table.collection.open {
  display: block;
  overflow: auto;
  max-height: 400px;
  border-radius: 5px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 5px;
}
#modalDetail ul li table.collection thead th {
  position: sticky;
  border-bottom: solid #ccc;
}
#modalDetail ul li table.collection tr {
  background: #fff;
}
#modalDetail ul li label {
  min-width: 20%;
  font-weight: bold;
}

#fChiTiet .modal-dialog {
  width: 80%;
  height: 85%;
}

#fChiTiet .modal-body {
  position: relative;
}

#lstChiTiet {
  list-style: none;
}

#lstChiTiet li {
  padding: 5px !important;
}

#rightpanel thead {
  background-color: #e4f3e4;
}

/****** PHAN TRANG ******/
#phantrang-table .pagination {
  padding: 5px 0;
  margin: auto !important;
}
#phantrang-table .pagination > li > a, #phantrang-table .pagination > li > span {
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
  border: 1px solid #ccc;
  margin: 0 2px;
  border-radius: 4px;
}
#phantrang-table .pagination > .active > a, #phantrang-table .pagination > .active > a:focus, #phantrang-table .pagination > .active > a:hover, #phantrang-table .pagination > .active > span, #phantrang-table .pagination > .active > span:focus, #phantrang-table .pagination > .active > span:hover {
  background-color: #1A52CD;
  border-color: #1A52CD;
  color: #fff;
}

/**** RESPONSIVE ****/
@media only screen and (max-width: 1200px) {
  #modalDetail ul {
    column-count: 2;
  }
  #dView .lstViewitem th.btnclick {
    display: block;
  }
  #tools-filter {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  /* #tbOutputContent{
      z-index:unset !important;
  }
  #sidebarCollapse {
      z-index: 11 !important;
  }*/
  #leftpanel {
    margin-top: 50px !important;
  }
  #dView .lstViewitem th.btnclick {
    display: block;
  }
  #tools-filter {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .modal-dialog {
    margin: 15px auto;
  }
  #content {
    margin: 0 !important;
    width: 100% !important;
  }
  #modalDetail ul {
    column-count: 1;
  }
  #tools-filter .ftitems.button {
    display: flex;
    justify-content: center !important;
  }
  [class*=col-] {
    width: 100%;
    margin-left: 0;
  }
  #dView .lstViewitem th.btnclick {
    display: block;
  }
  .result {
    display: block;
  }
  .result .optView {
    float: right;
  }
  .result #phantrang-table {
    float: right;
    margin: 5px 0px;
  }
  #dView .lstViewitem th.btnclick ._ext_ {
    margin-right: 0px;
    padding: 5px 5px !important;
  }
  #dView .lstViewitem th.btnclick .lstView_detail {
    padding: 5px 5px;
  }
  #tools-filter {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  #pagebody #leftpanel {
    position: absolute;
    width: 300px;
    z-index: 10;
    height: 100%;
    margin-left: -400px;
  }
}
.table-striped tbody tr:nth-of-type(2n+1) {
  background: #f5f6f7 !important;
}
