/**
 * @Project NUKEVIET 4.x
 * @Author VSOFT (http://vsoft.com.vn)
 * @Copyright (C) 2022 VSOFT. All rights reserved
 * @License GNU/GPL version 2 or any later version
 * @Createdate Sun, 10 Apr 2022 09:33:44 GMT
 */
 .hoadon {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.hoadon ul {
  list-style-type: none;
  overflow: hidden;
}

.hoadon li {
  float: right;
}

.hoadon li a {
  color: #000;
  display: block;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
  font-size:12px;
}
.hoadon li a.menu {
    display: inline-block;
    outline: none;
    vertical-align: middle;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 40px;
    width: 40px;
    color: #000;
    cursor: pointer;
    text-decoration: none;
}

.hoadon li a:hover {
  text-decoration: underline;
}
.hoadon .grid{
  height:23px;
  position:relative;
  bottom:4px;
}
.hoadon .signbutton{
  background-color: #4885ed;
  color: #fff;
  border:none;
  border-radius:3px;
  padding:7px 10px;
  position:relative;
  bottom:7px;
  font-weight:bold;
}
.hoadon .logo{
  margin-top: 150px;
  margin-bottom:20px;
  max-width: 200px;
}
.hoadon .bar{
  margin:0 auto;
  width: 100%;
  border-radius:30px;
  border:1px solid #dcdcdc;
  position: relative;
  background: #ffffff;
}
.hoadon .bar:hover{
  box-shadow: 1px 1px 8px 1px #dcdcdc;
}
.hoadon .bar:focus-within{
  box-shadow: 1px 1px 8px 1px #dcdcdc;
  outline:none;
}
.hoadon .searchbar{
  height:45px;
  border:none;
  width: calc(100% - 80px);
  font-size:16px;
  outline: none;
  
}
.hoadon .voice{
  height:20px;
  position:relative;
  top:5px;
  left:10px;
}
.hoadon .buttons{
  margin-top:30px;
}
.hoadon .button{
  background-color: #f5f5f5;
  border:none;
  color:#707070;
  font-size:15px;
  padding: 10px 20px;
  margin:5px;
  border-radius:4px;
  outline:none;
}
.hoadon .button:hover{
  border: 1px solid #c8c8c8;
  padding: 9px 19px;
  color:#808080;
}
.hoadon .button:focus{
  border:1px solid #4885ed;
  padding: 9px 19px;
}
.hoadon img {
    vertical-align: unset;
    max-width: 100%
}
.hoadon .searchimg {
    color: #9aa0a6;
    height: 20px;
    width: 20px;
    display: inline-block;
    fill: currentColor;
    line-height: 24px;
    position: absolute;
    top: 13px;
    left: 13px;
}
.hoadon .voiceimg {
    color: #9aa0a6;
    height: 20px;
    width: 20px;
    display: inline-block;
    fill: currentColor;
    line-height: 24px;
    position: absolute;
    top: 13px;
    right: 13px;
}
.hoadon .searchimg svg{
    width: 100%;
}
.bg_red{
    background: red;
}
.bg_green{
    background: green;
}
.hoadon_mes{
    position: fixed;
    width: 100%;
    top: 100px;
    color: #333;
    font-size: 50px;
    line-height: 1.5;
}
.bg_red .hoadon_mes, .bg_green .hoadon_mes{
    color: #fff;
}
input[type="text"]:disabled {
    background: #dddddd;
  }
.hoadon-sidebar{
    width: 80%;
    background: #fff;
    height: calc(100% - 109px);
    position: absolute;
    top: 57px;
    overflow-x: auto;
    z-index: 3;
    opacity: 0;
    transition: all .3s ease;
    left: -80%;
    padding: 15px;
}
.hoadon-sidebar.open{
    opacity: 1;
    left: 0;
}
.hoadon .form-control{
        height: 52px;
        font-size: 16px;
}
.hoadon .btn{
    padding: 16px 22px;
}
.hoadon .fa-lg {
    font-size: 1.6em;
}
.width100{
    width: 100%;
}
.taive_button{
    font-size: 18px;
    font-weight: bold;
}
.dangkiemtra{
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    top: calc(50% + 80px);
    color: #fff;
    font-weight: bold;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.83);
  z-index: 9999;
}

#loader {
  position: absolute;
  top: 50%;
  left: 50%; }
.ball-rotate {
    position: relative;
}
.ball-rotate>div:first-child {
    -webkit-animation: rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite;
    animation: rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite;
}
.ball-rotate>div {
    background-color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: relative;
}
@-webkit-keyframes rotate {
    0% {
    -webkit-transform:rotate(0deg);
    transform:rotate(0deg);
  }
  50% {
    -webkit-transform:rotate(180deg);
    transform:rotate(180deg);
  }
  100% {
    -webkit-transform:rotate(360deg);
    transform:rotate(360deg);
  }
  }
  
  @keyframes rotate {
    0% {
      -webkit-transform:rotate(0deg);
      transform:rotate(0deg);
    }
    50% {
      -webkit-transform:rotate(180deg);
      transform:rotate(180deg);
    }
    100% {
      -webkit-transform:rotate(360deg);
      transform:rotate(360deg);
    }
  }
  
  .ball-rotate {
    position:relative;
  }
  
  .ball-rotate>div {
    background-color:#fff;
    width:15px;
    height:15px;
    border-radius:100%;
    margin:2px;
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both;
    position:relative;
  }
  
  .ball-rotate>div:first-child {
    -webkit-animation:rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite;
    animation:rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite;
  }
  
  .ball-rotate>div:after,
  .ball-rotate>div:before {
    background-color:#fff;
    width:15px;
    height:15px;
    border-radius:100%;
    margin:2px;
    content:"";
    position:absolute;
    opacity:.8;
  }
  
  .ball-rotate>div:before {
    top:0;
    left:-28px;
  }
  
  .ball-rotate>div:after {
    top:0;
    left:25px;
  }
  
  @keyframes rotate {
    0% {
      -webkit-transform:rotate(0deg) scale(1);
      transform:rotate(0deg) scale(1);
    }
    50% {
      -webkit-transform:rotate(180deg) scale(0.6);
      transform:rotate(180deg) scale(0.6);
    }
    100% {
      -webkit-transform:rotate(360deg) scale(1);
      transform:rotate(360deg) scale(1);
    }
  }
  
  .ball-clip-rotate>div {
    border-radius:100%;
    margin:2px;
    border:2px solid #fff;
    border-bottom-color:transparent;
    height:25px;
    width:25px;
    background:0 0 !important;
    display:inline-block;
    -webkit-animation:rotate .75s 0s linear infinite;
    animation:rotate .75s 0s linear infinite;
  }
  
  @keyframes rotate {
    0% {
      -webkit-transform:rotate(0deg) scale(1);
      transform:rotate(0deg) scale(1);
    }
    50% {
      -webkit-transform:rotate(180deg) scale(0.6);
      transform:rotate(180deg) scale(0.6);
    }
    100% {
      -webkit-transform:rotate(360deg) scale(1);
      transform:rotate(360deg) scale(1);
    }
  }
  
  @keyframes scale {
    30% {
      -webkit-transform:scale(0.3);
      transform:scale(0.3);
    }
    100% {
      -webkit-transform:scale(1);
      transform:scale(1);
    }
  }
  
  .ball-clip-rotate-pulse {
    position:relative;
    -webkit-transform:translateY(-15px);
    -ms-transform:translateY(-15px);
    transform:translateY(-15px);
  }
  
  .ball-clip-rotate-pulse>div {
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both;
    position:absolute;
    top:0;
    left:0;
    border-radius:100%;
  }
  
  .ball-clip-rotate-pulse>div:first-child {
    background:#fff;
    height:16px;
    width:16px;
    top:7px;
    left:-7px;
    -webkit-animation:scale 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;
    animation:scale 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;
  }
  
  .ball-clip-rotate-pulse>div:last-child {
    position:absolute;
    width:30px;
    height:30px;
    left:-16px;
    top:-2px;
    background:0 0;
    border:2px solid;
    border-color:#fff transparent;
    -webkit-animation:rotate 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;
    animation:rotate 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;
    -webkit-animation-duration:1s;
    animation-duration:1s;
  }
.hoadon_input{
    padding: 50px 25px;
    background: rgb(0 153 204 / 36%);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 50px 0;
}
.htmlve{
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 15px;
}
.htmlve h1{
    text-transform: uppercase;
}
.vechuaxuat{
    font-size: 16px;
    font-weight: bold;
    color: red;
}
a.btn-default{
    color: #333;
    font-weight: bold;
}
#camera_qr{
    position: fixed;
    top: 60px;
    left: calc( 50% - 150px );
    width: 300px;
    z-index: 9;
}
.camera_area{
    position: relative;
}
#resetButton{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 8;
}
.overlay-common{
    z-index: 3 !important;
}




















