body.ly-active-popup{
  overflow:hidden;
}
 /*bg at-popup*/
 .at-popup-center{
  visibility: hidden;
  position: fixed; 
  left: 0;
  right: 0;
  bottom: 0;
  top: 0; 
  z-index: 9999;
  transform: scale(.8, .8);
  opacity: 0;
  -webkit-transition: all .2s;
  transition: all .2s; 
  align-items: center;
  display: flex !important;
}

@media(max-width: 900px){
  .at-popup-center{
    /*position: absolute;
    bottom: auto;
    height: auto !important;*/
  }
} 
body.ly-active-popup .at-popup-center.active{ 
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible; 

}
body.ly-active-popup::after{
  content: ' ';
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9998;
  background: #000000cf;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.at-popup-center .ly-pp-content{
  width: 100%;
  max-width: 550px;
  margin: auto;
  background: #ffff;
  padding: 5px 20px;
  border-radius: 5px;
  position: relative;
}

.fullwide.at-popup-center .ly-pp-content{
  max-width: 1200px
}
.fullwide.at-popup-center .Tab-content{
  height: calc(100vh - 160px);
  overflow-y: auto;
}
.at-popup-center .ly-pp-head{
  padding: 15px 0;
  border-bottom: 1px solid #e5eaf1;
  position: relative;
}
.at-popup-center .ly-pp-title{
  text-transform: uppercase;
  font-size: 17px;
}
 
.at-popup-center .ly-pp-body{  
  position: relative;
  display: block;
  padding: 20px 5px;  
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.ly-pp-body.NoScroll{
  max-height: unset;
  overflow-y: unset;
}
.at-popup-center .ly-pp-body.pp-fixheight{
  height: calc(100vh - 200px);
}
.at-popup-center .ly-pp-body::after{
  content: ' ';
  clear: both;display: block;
} 
.at-popup-center .ly-pp-foot{
    padding: 10px 0px;
    text-align: right; 
    border-top: 1px solid #e5eaf1;
}
.at-popup-center.headButton .ly-pp-title{
  width: 120px;
  display: inline-block; 
}
.at-popup-center.headButton .ly-pp-head .ly-headButton{
  width: calc(100% - 125px);
  display: inline-block;
}
.at-popup-center.headButton .ly-pp-head .ly-headButton .pri-button{
  display: inline-block; 
  border-right: 1px solid; 
  margin-right: 10px; 
  padding-right: 10px
}
.at-popup-center.headButton .ly-pp-head .ly-headButton .pri-button:hover{
  text-decoration: underline;
}
.at-popup-center.headButton .ly-pp-head .ly-headButton .pri-button:last-child{
  border-right: none
}
.at-popup-center.headButton .ly-pp-head .ly-headButton .pri-button i{
  font-size: calc(100% + 2px);
  margin-right: 5px;
}
@media(max-width: 600px){
  .at-popup-center.headButton .ly-pp-title{
    width: 100px;
    display: inline-block;
    line-height: 24px;
    font-size: calc(100% - 1px)
  }
  .at-popup-center.headButton .ly-pp-head .ly-headButton{
    width: calc(100% - 100px);
  }
  .at-popup-center.headButton .ly-pp-head .ly-headButton .pri-button{
    font-size: 12px;
    padding: 5px 5px;
  }
  .at-popup-center.headButton .ly-pp-head .ly-headButton .pri-button i{
    display: none;
  }
}
.at-popup-center .span-close{
  position: absolute;
  right: 10px;
  top:10px;
  
  margin: auto;
  height: 48px;
  border: 1px solid;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  text-align: center;
  display: block;
  z-index: 3;
  cursor: pointer;
  transition: all .3s;
  font-size: 10px;
  line-height: 5px;
}
.at-popup-center.headButton .ly-pp-head .span-close{
  top: 0;
  right: 0;
  bottom: 0;
}
.at-popup-center .span-close::after{
  content: 'Esc'
}
@media (hover: hover) and (pointer: fine) {
  .at-popup-center .span-close:hover{
    box-shadow: 0px 8px 10px #ccc;
    transform: translateY(-5px);
  }
}
.at-popup-center .span-close i{
  font-size: 18px;
  line-height: 18px;
}
 
/*ed at-popup*/
/*bg ly-fixright-info*/
.ly-fixright-info{
   position: fixed;
   top: 0;
   left: 0;
   z-index: 99; 
   transition: all 1.5s;
   z-index: -1;
   visibility: hidden;
}
.ly-fixright-info .ly-content{
    position: fixed;
    right: -1000px;
    top: 0px;
    bottom: 0;
    background: #fff;
    z-index: 999;
    width: 600px;
    padding: 20px;
    transition: all .3s;
    max-width: calc(100% - 50px);
    overflow-y: auto; 
}
.ly-fixright-info .ly-content.wide{
  width: 900px;
  right: -900px;
}
.ly-fixright-info .ly-content *{
  opacity: 0
}
.ly-fixright-info .haf-left{
  width: calc(50% - 10px);
  float: left;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
 }
.ly-fixright-info .haf-right{
    width: 50%;
    float: right;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-left: 11px; 
 }
.ly-fixright-info .haf-right .rowPrices,.ly-fixright-info .haf-right .pri-HouseOwner{
  filter: grayscale(100%);
  opacity: .5 !important;
 }
 @media (hover: hover) and (pointer: fine) {
  .ly-fixright-info .haf-right:hover .rowPrices,
  .ly-fixright-info .haf-right:hover .pri-HouseOwner{
    filter: grayscale(0%);
    opacity: 1 !important;
   }
 } 
.ly-fixright-info::before{
    position: fixed;
    content: ' ';
    width: 100vw;
    height: 100%;
    background: #00000094;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 0;
    transition: width .5s
}
.ly-fixright-info .ly-pri-close{
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 45px;
    top: 10px; 
    display: none;
}
.ly-fixright-info .ly-title{
  font-size: 25px;
  font-weight: bold;
}
.ly-fixright-info .ly-subtitle{

}
.ly-fixright-info .ly-info{

}
html.ly-show-fixright-info {
    overflow: hidden;
}
html.ajax-content-loading .ly-fixright-info .ly-content::after{
    content: 'đang tải...';
    background-image: url(../pri_img/ajax-loader-1.gif);
    padding-left: 23px;
    background-repeat: no-repeat;
    line-height: 11px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 15px;
    width: 65px;

}
html.ly-show-fixright-info .ly-fixright-info{
   visibility: visible;
   z-index: 999999
}
html.ly-show-fixright-info .ly-fixright-info::before{
  width: 100vw;
}
html.ly-show-fixright-info .ly-fixright-info .ly-content{
  right: 0;  
}
html.ly-show-fixright-info .ly-fixright-info .ly-content *{
  opacity: 1
}
html.ly-show-fixright-info .ly-fixright-info .ly-pri-close{
  display: block;
  cursor: pointer;
}

.ly-show-fixright-info .pri-top-content{
  height: calc(100vh - 160px);
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 20px;
}

.ly-show-fixright-info .pri-bottom{
    border-radius: 5px;
    background: #f1f1f1;
    padding: 12px;
}
.ly-show-fixright-info .p-title{
    width: 180px;
    float: left;
    text-transform: uppercase;
    line-height: 34px;
    font-size: calc(100% + 2px);
}
.ly-show-fixright-info .p-groupbtn{
    text-align: center;
    max-width: 220px;
    margin: auto;
}
.ly-show-fixright-info .p-groupbtn button{
  display: inline-block;
  width: calc(50% - 10px); 
  min-width: unset;
    line-height: unset;
}

/*ed ly-fixright-info*/
.ly-tablist{
  width: 100%;
  display: block;
  position: relative; 
  border-bottom: 1px solid #fff;
}
.ly-tablist li{
  list-style: none;
  display: inline-block;
}
.ly-tablist li a{
  display: block; 
  padding: 15px;
  position: relative; 
}
.ly-tablist li a::before{
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top:0;
  opacity: .2
}
.ly-tablist li a.active{
  background: #ffffff
}
.ly-tablist li a.active::before{
  display: none;
}
.ly-tablist-content{
  display: none;
}
.ly-tablist-content.active{
  display: block;
}

/*ly-tablist-type2*/
.ly-tablist-type2{
    width: 100%;
    display: block;
    position: relative;
    border-bottom: 1px solid #fff;
    white-space: nowrap;
    overflow-x: auto;
}
@media(max-width: 900px){
  .ly-fixright-info .ly-tablist-type2{
    font-size: 10px
  }
}
.ly-tablist-type2 li{
  list-style: none;
  display: inline-block;
}
.ly-tablist-type2 li a{
  display: block; 
  padding: 15px;
  position: relative; 
}
@media(max-width: 500px){
  .ly-tablist-type2 li a{
   padding:15px 5px;
  }
}
.ly-tablist-type2 li a::before{
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top:0;
  opacity: .2
}
.ly-tablist-type2 li a.active{
  color: #ffffff
}
.ly-tablist-type2 li a.active::before{
  display: none;
}
.ly-tablist-type2-content{
  display: none;
  padding-top:20px;
}
.ly-tablist-type2-content.active{
  display: block;
}
/*ed ly-tablist-type2*/

/*Popup Google Maps*/
body.LoadMap{
  overflow: hidden;
}
body.LoadMap .PopupMaps{
    display: block;
}
.js-Popup-loadMap{
  cursor: pointer;
}
.PopupMaps{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999999;
    background: #1010107d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: none;
}
.PopupMaps #Msgg{
    position: absolute;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    margin:auto;
}
.PopupMaps .CloseMaps{
    position: absolute;
    width: 80px;
    height: 80px;
    right: 20px;
    top: 20px;
    z-index: 999;
    background: #ffffff;
    text-align: right;
    border-bottom-left-radius: 100%;
    color: #292828;
    border: 1px dashed #c9c9c9;
    box-shadow: -5px 8px 7px 4px #ccc;
    cursor: pointer;
    transition: all .2s
}
.PopupMaps .CloseMaps:hover{
    transform: scale(.9);
    box-shadow: -1px 2px 4px 1px #ccc;
}
.PopupMaps .CloseMaps i{
    font-size: 30px;
    line-height: 70px;
    margin-right: 15px;
}

/*ed Popup Google Maps*/
/*QrCode*/
.at-popup-center.pp-Qr{

}
.at-popup-center.pp-Qr .ly-pp-body{
  padding: 30px;
  max-height: calc(100vh - 100px);
}
.WrabQrPrint img{
  max-width: 220px;
  display: block;
  margin:auto;
}
.WrabQrPrint .qr-text{
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.WrabQrPrint .qr-title1{
  font-size: 25px;
  text-align: center;
  font-weight: bold;
}
.WrabQrPrint .qr-title2{
  font-size: 20px;
  text-align: center;
  font-weight: normal;
}
.WrabQrPrint .qr-title3{
  font-size: 18px;
  text-align: center;
}
@media(max-width: 900px){
  .at-popup-center.pp-Qr,
  .at-popup-center.pp-Fixed{
    position: fixed;
    bottom: 0; 
  }
  .at-popup-center.pp-Qr .ly-pp-body {
      padding: 30px 0;
  }
}
@media print {
  .WrabQrPrint{
    padding: 50px 0
  }
}
/*ed QrCode*/
/*bg Scan*/
.la-BoxScanQr {
  padding: 0px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
 
.pp-Scan.DoneScan .la-BoxScanQr::before{
    content: ' ';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff14;
    background-image: url(../img/processing.gif);
    background-position: center;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: 50px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.la-BoxScanResult{

}
.la-BoxScanResult i{
    display: block;
    text-align: center;
    margin:auto;
    margin-bottom: 20px;
    font-size: 40px; 
}
.la-BoxScanResult i.success{
  color: #4caf50
}
.la-BoxScanResult i.warning{
  color: #f44336
}
.la-BoxScanResult i.info{
  color: #f44336
}
.la-BoxScanResult .i-text{
  text-align: center;
  white-space: pre-wrap;      /* CSS3 */   
  white-space: -moz-pre-wrap; /* Firefox */    
  white-space: -pre-wrap;     /* Opera <7 */   
  white-space: -o-pre-wrap;   /* Opera 7 */    
  word-wrap: break-word;      /* IE */
}
/*ed Scan*/