body {
    background: white;
    overflow: hidden;
}

.menutop {
    display: flex;
    /*height: 40px;*/
}

.menutop .my-nav-link {
    color: #ededed;
    padding: 13px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline;
}

.menutop .my-nav-link i {
    font-size: .5rem;
    margin-left: 3px;
    color: #bbb;
}

.menutop li {
    list-style: none;
}

.menutop li .my-dropdown-menu {
    position: fixed;
    left: 0;
    top: 40px;
    width: 100vw;
    background: #CBE6F6;
    display: flex;
    z-index: 1000;
    visibility: hidden;
}

.menutop a {
    text-decoration: none;
}
.menutop li .my-dropdown-menu row {
    align-items: flex-start;
}

.menutop li .my-dropdown-menu row col {
    padding-left: 10px;
    width: calc(100vw / 3);
}

.menutop li .my-dropdown-menu row a {
    color: #113266;
    padding: 4px 0px;
}

/*.menutop li:hover .dropdown-menu {
    visibility: visible;
}*/

.menutop .mega-menu-heading {
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 0px;
}

.redstar {
    color:red;
    margin-left:2px;
    vertical-align: middle;
}

/* COMBOBOX */
.combo-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.combo-input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-right: 25px;
}
.combo-arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 10px;
  color: #555;
}
.combo-list-wrap {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 250px;
    min-height: 150px;
    max-width: 600px;
    border: 1px solid #333;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    z-index: 1000;
    display: none;
    font-size: 0.9rem;
    background: white;
}
.combo-list {
  overflow-y: auto;
  background: white;
  max-height: 220px;
}
.combo-item {
  padding: 6px;
  cursor: pointer;
  display: flex;
  white-space: nowrap;
}
.combo-item:hover {
  background: #f0f0f0;
}
.combo-name {
    white-space: pre-wrap;
}
.combo-loading {
  padding: 6px;
  text-align: center;
  font-style: italic;
  color: #777;
}
.combo-code {
    overflow: hidden;
    color: blue;
    margin-right: 20px;
}
.combo-title {
    font-weight: bold;
    background: #C9D1E2;
    padding: 5px 5px;
    display: flex;
}
.combo-title-code {
    margin-right: 20px;
}
.combo-title span {
    width: 130px;
}
.combo-title a {
    font-weight: normal;
}

label {margin-right: 3px}
/*********************/

#printContainer {
    width:210mm; margin: 0 auto; background: #c1c1c1; min-height: 100%;
}

.print_page {
    width: 210mm;
    height: 296.5mm;
    background: white;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    page-break-after: always; /* giúp html2pdf tách trang */
}

#mainFilterBox {
    background: white;
    min-width: 400px;
    max-width: 600px;
    height: 400px;
    border: 1px solid #333;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    display: none;
    position: absolute;
    padding: 5px;
}

#mainFilterBox .mainFilterInput {
    width: 100%;
}

#mainFilterBox .mainFilterList {
    margin-top: 10px;
    height: calc(100% - 30px);
    overflow: auto;
    font-size: 0.9rem;
}

#mainFilterBox .mainFilterList li {
    padding: 4px 0px;
    cursor: pointer;
}

#mainFilterBox .mainFilterList li:hover {
    background: #aaa;
}

#filterMask {
    position: absolute;
    top: 0; left: 0;
    background: transparent;
    width: 100vw;
    height: 100vh;
    display: none;
}

#editingForm {
    position: absolute;
    top: 40px;
    left: 0px;
    width: 100vw;
    height: calc(100vh - 40px);
    background: white;
    display: none;
    z-index: 2;
}

#viewForm {
    position: absolute;
    top: 40px;
    left: 0px;
    width: 100vw;
    height: calc(100vh - 40px);
    background: white;
    display: none;
    z-index: 2;
}