/* reset nhỏ */
*{ 
   margin:0;
   padding:0; 
   box-sizing:border-box; 
}

body{ 
    background:#d3dbf4; 
}

/* menu header */
.divHeader{
  height:85px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  padding:0 16px;
  background:#00a2e7;
  box-shadow:0 2px 5px rgba(0,0,0,.2);
}

/*link logo */
.divHeader a{
  display:flex;
  align-items:center;
  padding:0;
  margin:0;
}

/*logo*/
.divHeader img {
  height: 120px;
  width: auto;
}

@media only screen and (min-width:1024px) {
    .divHeader img{
      padding-left: 50px;
    }
}


/* nut mo menu */
.divHeader button{
  margin-left:auto;
  height:45px;
  width:50px;
  font-size:2rem;
  background:#00a2e7;
  color:#fff;
  border:0;
  font-weight:bold;
  border:1px white solid;
  border-radius: 4px;
  padding-top: 4px;
}

.divHeader button:active{
    border: 2px solid black;
}

/*menu*/
.divMenuHeader{
    display: block;
    text-decoration: none;
}

.divMenuHeader ul li{
    list-style-type: none;
    
    background-color:#00567d ;
}

.divMenuHeader ul li a{
    text-decoration: none;
    color: white;
    font-size: 1rem;
    text-align: left;
    display: block;
    padding: 10px;
}

.divMenuHeader ul li:hover{
  background-color: #003b57;
  border-radius: 5px;
  border: 1px black solid;
}

.divMenuHeader ul li:active{
  background-color: #003b57;
  border-radius: 5px;
}

.divMenuHeader ul .liTaiKhoan{
  padding-left: 10px;
  height: 35px;
}

/*menu thong tin tai khoan */
.divMenuHeader ul li button{
    background-color: #00567d;
    color: white;
    border: 0px;
    font-size: 15px;
    width: 100%;
    text-align: left;
}

.divMenuHeader #menuThongTinTaiKhoan li{
    background-color: #003b57;
    border-radius: 2px;
}

.divMenuHeader #menuThongTinTaiKhoanDaDangNhap li{
    background-color: #003b57;
    border-radius: 2px;
}

.liTaiKhoan{
  display: flex;
}

.liTaiKhoan i{
  color: white;
}

/*main*/

/*main thong bao*/
.divThongBao{
    background-color: #3986aa;
    width: 100%;
    height: 30px;
}

.divThongBao marquee a{
    color: white;
    font-weight: bold;
    font-size: 20px;
}

/*footer*/
.divFooter{
  padding-top: 10px;
  background-color:#00a2e7;
  height: 200px;
  color: white;
  font-size: 1rem;
  text-align: center;
}
.divFooter table{
  padding-left: 10%;
}

.divFooter table tr th{
  font-size: 24px;
}

th, td{
  padding: 5px;
}

.divFooter table tr td .social{
  text-decoration: none;
  color: white;
}

.divFooter table tr td .social:hover{
  text-decoration: none;
  color: gray;
}
.divFooter p{
  padding-top: 30px;
}

/*footer cho dien thoai co lon*/

@media only screen and (min-width:440px) {
    .divFooter{
      width: 100%;
    }
    .divFooter table{
      width: 100%;
      text-align: center;
      padding-left: 0px;
    }

    .divFooter table tr th{
      font-size: 20px;
      width: 50%;
    }
}

/*footer ipad*/

@media only screen and (min-width:768px){
    .divFooter{
    width: 100%;
    }
    .divFooter table{
      width: 100%;
      text-align: center;
      padding-left: 0;
    }

    .divFooter table tr th{
      font-size: 25px;
      width: 50%;
    }
}

/*footer desktop*/

@media only screen and (min-width:1024px) {
  .divFooter{
    width: 100%;
  }
  .divFooter table{
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .divFooter table tr th{
    font-size: 34px;
    width: 50%;
  }


}

/*lop phu popup*/
.lopPhuPopUp{
  opacity: 1;
  z-index: 100;
}


/*popup*/

.popUp{
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  width: auto;
  margin: 40px;
  height: 0px;
  border: 3px solid black;
  white-space: normal;        /* Cho phép xuống dòng */
  position: relative;
  z-index: 101;
}

.popUp th{
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 20px;
  background-color: #0075bb;
  color: white;
  border: 2px solid black;
  border-radius: 3px;
}
.popUp th i{
  text-align: center;
}

.popUp td{
  text-align: center;
  height: 55px;
  width: 100%;
}
.popUp .tdBtnDong{
  border-top: 1px solid white;
}

.popUp td button{
  float: right;
  height: 30px;
  width: 60px;
  margin-right: 10px;
  border: 2px solid black;
  font-weight: bold;
}

/*popUp tren may tinh*/
@media only screen and (min-width: 1024px) {
  .popUp{
    margin: 200px;
    height: 0px;
  }
  .popUp td{
    height: 130px;
  }
  .popUp td button{
    height: 50px;
    width: 100px;
  }
  .popUp td b{
    font-size: 2rem;
  }
}