/* Áp dụng cho màn hình lớn hơn 1200px (ví dụ: desktop lớn) */
@media (min-width: 1200px) {
  .menu_bottom{
    display: none;
    position: fixed;
    bottom: 6px;
    left: 0;
    right: 0;
    width: 33%;
    z-index: 1;
    background: #244e53c4;
    margin: auto;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.icon_menu_bottom{
    padding:0.5rem 1rem;
    color:#fff;
}
}

/* Áp dụng cho màn hình từ 992px đến 1199px (ví dụ: tablet ngang) */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Áp dụng cho màn hình từ 768px đến 991px (ví dụ: tablet dọc) */
@media (min-width: 768px) and (max-width: 991px) {
  .menu_bottom{
      display: none;
      position: fixed;
      bottom: 6px;
      left: 0;
      right: 0;
      width: 90%;
      z-index: 1;
      background: #244e53c4;
      margin: auto;
      border-bottom-left-radius: 30px;
      border-top-left-radius: 30px;
      border-top-right-radius: 30px;
      border-bottom-right-radius: 30px;
  }

  .icon_menu_bottom{
    padding:0.5rem;
    color:#fff;
}
}

/* Áp dụng cho màn hình nhỏ hơn 768px (ví dụ: điện thoại di động) */
@media (max-width: 767px) {
  
  .menu_bottom{
      display: none;
      position: fixed;
      bottom: 6px;
      left: 0;
      right: 0;
      width: 90%;
      z-index: 1;
      background: #244e53c4;
      margin: auto;
      border-bottom-left-radius: 30px;
      border-top-left-radius: 30px;
      border-top-right-radius: 30px;
      border-bottom-right-radius: 30px;
  }
  .icon_menu_bottom{
    padding:0.5rem;
    color:#fff;
}
}


@charset "UTF-8";
.after-before {
  position: absolute;
  content: "";
}

.img-default {
  float: left;
  width: 100%;
  height: auto;
}

.float-default {
  float: left;
  width: 100%;
}

/*---------------------Máy tính bàn-----------------------------*/
@media only screen and (min-width: 1200px) {
  
}
/*---------------------Máy tính bảng ngang-----------------------------*/
/*@media only screen and (min-width : 960px) and (max-width : 1199px){*/
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  
}
/*---------------------Máy tính bảng dọc--------------------------------*/
/*@media only screen and (min-width : 768px) and (max-width : 959px){*/
@media only screen and (min-width: 768px) and (max-width: 992px) {
  
}
/*----------------------Điện thoại di động-------------------------------*/
/*@media only screen and (max-width : 767px)    {*/
@media only screen and (max-width: 767px) {
  
}