.vNavbar,
.boxHeaderDrawer {
  background-color: #1c2a41;
  height: 100px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-right: 3rem;
}

.vNavbar .boxImagLogo i {
  margin-left: 2.5rem;
}

.vNavbar p,
.vNavbarProfileRight p {
  color: #ffffff;
  margin-bottom: 0;
}

.vNavbar .vNavbarProfileRight,
.boxHeaderDrawer .vNavbarProfileRight {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.vNavbar .vNavbarProfileRight .txtName,
.boxHeaderDrawer .vNavbarProfileRight .txtName {
  font-size: 16px;
  font-weight: 300;
  margin-right: 1rem;
}

.vNavbar .vNavbarProfileRight .boxStatus,
.boxHeaderDrawer .vNavbarProfileRight .boxStatus {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #f9d895;
  padding: 10px;
  border-radius: 10px;
  height: 26px;
  margin-right: 1rem;
}

.vNavbar .vNavbarProfileRight .boxStatus img,
.boxHeaderDrawer .vNavbarProfileRight .boxStatus img {
  width: 20px;
  padding-right: 5px;
}

.vNavbar .vNavbarProfileRight .boxStatus p,
.boxHeaderDrawer .vNavbarProfileRight .boxStatus p {
  font-size: 12px;
}

.vNavbar .vNavbarProfileRight .boxImgProfile img,
.boxHeaderDrawer .vNavbarProfileRight .boxImgProfile img {
  max-width: 60px;
  object-fit: cover;
  border-radius: 100%;
  border: 3px solid #ffffff;
}

.Drawer {
  display: none;
}

/*  */

@media only screen and (max-width: 600px) {
  .boxHeaderDrawer {
    display: flex;
    justify-content: flex-end;
  }

  .boxHeaderDrawer .vNavbarProfileRight .boxImgProfile img {
    margin-right: 1rem;
  }

  .Drawer {
    display: block;
  }

  .vNavbar {
    display: none;
  }

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    /* adds animation for all transitions */
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: none;
  }

  #drawer-toggle {
    position: absolute;
    opacity: 0;
  }

  #drawer-toggle-label {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    left: 0px;
    height: 50px;
    width: 50px;
    display: block;
    position: fixed;
    background: rgba(255, 255, 255, 0);
    z-index: 999;
  }

  /* adds our "hamburger" menu icon */

  #drawer-toggle-label:before {
    content: '';
    display: block;
    position: absolute;
    height: 2px;
    width: 24px;
    background: #ffffff;
    left: 13px;
    top: 18px;
    box-shadow: 0 6px 0 #ffffff, 0 12px 0 #ffffff;
  }

  /* header {
    width: 100%;
    position: fixed;
    left: 0px;
    background-color: #2b374a;
    padding: 10px 10px 10px 50px;
    font-size: 30px;
    line-height: 30px;
    z-index: 888;
  } */

  /* drawer menu pane - note the 0px width */
  .boxHeaderDrawer {
    width: 100%;
    background-color: #2b374a;
    padding: 10px 10px 10px 50px;
    font-size: 30px;
    line-height: 30px;
    z-index: 888;
  }

  #drawer {
    position: fixed;
    top: 0;
    left: -300px;
    height: 100%;
    width: 300px;
    background: #2b374a;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
  }

  /* actual page content pane */

  #page-content {
    margin-left: 0px;
    margin-top: 50px;
    width: 100%;
    height: calc(100% - 50px);
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
  }

  /* checked styles (menu open state) */

  #drawer-toggle:checked ~ #drawer-toggle-label {
    height: 100%;
    width: calc(100% - 300px);
    background: rgba(255, 255, 255, 0.8);
  }

  #drawer-toggle:checked ~ #drawer-toggle-label,
  #drawer-toggle:checked ~ header {
    left: 300px;
  }

  #drawer-toggle:checked ~ #drawer {
    left: 0px;
  }

  #drawer-toggle:checked ~ #page-content {
    margin-left: 300px;
  }

  /* Menu item styles */
  #drawer .Boxlogo {
    width: 100%;
    margin-bottom: 1.4rem;
  }

  #drawer .Boxlogo img {
    max-width: 220px;
  }

  #drawer .boxOrderList {
    background-color: transparent;
    text-align: left;
    color: #ffffff;
    padding: 10px;
    margin-bottom: 5px;
    cursor: pointer;
  }

  #drawer a .boxOrderList:hover,
  #drawer a .boxOrderList.active {
    /* background-color: #ffffff; */
    color: #667151;
  }

  #drawer a .boxOrderList p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 0;
  }

  #drawer ul {
    list-style-type: none;
  }

  #drawer ul a {
    display: block;
    padding: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
  }

  #drawer ul .txt-fix {
    color: #54b3e8;
  }

  #drawer ul a:hover {
    color: #54b3e8;
  }

  #drawer ul .txtsmall {
    font-size: 1rem;
  }

  /* Responsive MQ */

  #drawer-toggle:checked ~ #drawer-toggle-label {
    height: 100%;
    width: 50px;
  }

  #drawer-toggle:checked ~ #drawer-toggle-label,
  #drawer-toggle:checked ~ header {
    left: calc(100% - 50px);
  }

  #drawer-toggle:checked ~ #drawer {
    width: calc(100% - 50px);
    padding: 20px;
  }

  #drawer-toggle:checked ~ #page-content {
    margin-left: calc(100% - 50px);
  }

  .BoxProfifle {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }

  .BoxProfifle h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 0;
  }

  .BoxProfifle img {
    width: 100%;
    max-width: 70px;
    border-radius: 50%;
    border: 2px solid #ffffff;
  }
}

.date-text {
  margin-top: auto;
  font-size: 0.7rem;
  color: #929292;
}

.container {
  width: 100%;
  max-width: 1320px;
}

.section_newsPage {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

hr {
  margin: 0.5rem !important;
}

.boxHeading_newsItem {
  position: relative;
  margin-bottom: 0.5rem;
}

.boxHeading_newsItem .txtHeading {
  font-weight: 400;
  font-size: 1.5rem;
  content: '';
  position: absolute;
  bottom: 0;
  border-bottom: 2px solid rgb(217, 217, 217);
}

.box_NewsDetails .txtHeader {
  font-weight: 400;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.box_NewsDetails .txtDetails {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8rem;
  color: #7e7e7e;
}

.box_NewsDetails .ulDetails li {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8rem;
  color: #7e7e7e;
}

.overflowAuto {
  height: 58vh;
  overflow: hidden;
  overflow-y: scroll;
}

.box_newsItem {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  padding-right: 10px;
}

.box_newsItem::after {
  position: absolute;
  content: '';
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #dcdcdc;
}

.box_newsItem:last-child:after {
  display: none;
}

.box_newsItem .boxImage_newsItem {
  width: 100%;
}

.box_newsItem .boxImage_newsItem img {
  max-width: 100%;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.box_newsItem .boxTxt_newsItem .txtTitle {
  font-size: 1rem;
  font-weight: 400;
  color: #c79645;
  border: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

.box_newsItem .boxTxt_newsItem .txtSubTitle {
  font-size: 0.8rem;
  font-weight: 300;
  color: #929292;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  min-height: 30px;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

.box_newsItem .boxTxt_newsItem .boxLink_read {
  background-color: #758088;
  padding: 2px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  width: 64px;
  position: absolute;
  bottom: 0;
  cursor: pointer;
}

.box_newsItem .boxTxt_newsItem .boxLink_read .txtRead {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 0.8rem;
}

.box_newsItem .boxTxt_newsItem .boxLink_read:hover {
  background-color: #c79645;
}

.vBoxContactFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.vBoxContactFlex .boxContact {
  position: relative;
}

.vBoxContactFlex .boxContact .txtContact {
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 1rem;
  content: '';
  position: absolute;
  border-bottom: 2px solid rgb(217, 217, 217);
}

.ContactMarginTop {
  margin-top: 3.5rem;
}

.vBoxContactFlex .boxContact p {
  font-weight: 300;
  font-size: 1.1rem;
  color: #7e7e7e;
  margin-bottom: 0;
}

.vBoxContactFlex .boxTel_contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 5px;
}

.vBoxContactFlex .boxTel_contact img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.vBoxContactFlex .boxTel_contact a {
  font-weight: 300;
  font-size: 1.1rem;
  color: #0092ed;
}

.vBoxContactFlex .boxSocial {
  width: 150px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.vBoxContactFlex .boxSocial a img {
  width: 40px;
  height: 40px;
}

.vBoxContactFlex .boxSocial a .link_ImageLine {
  width: 45px;
  height: 45px;
  margin-top: -3px;
}

@media screen and (max-width: 600px) {
  .section_newsPage {
    margin-top: 2rem;
  }

  .vBoxContactFlex {
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
  }

  .vBoxContactFlex .boxSocial {
    width: 120px;
    margin-top: 1.5rem;
  }

  .vBoxContactFlex .boxSocial a img {
    width: 30px;
    height: 30px;
  }

  .boxHeading_newsItem {
    margin-top: 3rem;
  }

  .vBoxContactFlex .boxSocial a .link_ImageLine {
    width: 35px;
    height: 35px;
  }

  .boxHeading_newsItem .txtHeading {
    margin-bottom: 1.2rem;
  }

  hr {
    margin-top: 1rem !important;
  }

  .overflowAuto {
    height: 100%;
  }

  .box_NewsDetails .ulDetails {
    margin-left: 2rem;
  }
}

@media screen and (min-width: 601px) and (max-width: 1200px) {
  .boxHeading_newsItem {
    margin-top: 3rem;
  }

  .boxHeading_newsItem .txtHeading {
    margin-bottom: 1.2rem;
  }

  .overflowAuto {
    height: 100%;
  }
}

footer {
  width: 100%;
}

footer .vFooter {
  background-color: rgb(176, 179, 179);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  bottom: 0;
  /* position: fixed; */
}

footer .vFooter p {
  font-size: 0.8rem;
  color: #ffffff;
  margin-bottom: 0;
}
