
/* Google Chrome remove css when autofill textbox */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
}

html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

input,
textarea,
select,
button {
  outline: none;
}

input {
  line-height: normal;
}

label,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

p {
  margin-bottom: 0;
}

body {
  line-height: 1;
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  background-color: white;
  color: #28262c;
}

.wrapper {
  max-width: 1730px;
  margin: 0 auto;
  overflow: hidden;
}

.container {
  max-width: 1484px;
  /* padding: 0 123px; */
  margin: 0 auto;
}

.section__heading {
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.27;
  color: #19726c; /* #150099; */
  text-align: center;
  margin: 0 auto;
}

button {
  border: none;
  outline: none;
}

@media screen and (min-width: 1024px) and (max-width: 1700px) {
  .container {
    padding: 0 25px;
  }
}
.header {
  background: #fff;
  padding: 0px 50px !important;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 0;
}
.header__nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  /*gap: 66px !important;*/
}
.header .menu {
  display: flex;
  align-items: center;
  /*gap: 0 31px !important;*/
  margin: 0;
  list-style: none;
}
.header .menu-link {
  text-decoration: none;
  color: #28262c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.22;
  text-transform: uppercase;
  padding: 0 18px;
}
.header__btn {
  font-size: 14px;
  line-height: 1.2;
  background: #27B9D1; /*linear-gradient(277.43deg, #7DFFD3 0.52%, #29CCD6 20.82%, #150099 99.87%);*/
  border-radius: 8px;
  padding: 12px 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
}
.header .menu-item {
  position: relative;
}
.header .line {
  width: 0px;
  height: 2.5px;
  background: linear-gradient(90deg, #7DFFD3 0%, #150099 186.42%);
  top: 20px;
  left: 0;
  transition: 0.2s ease-in-out;
  transform: translateX(-50%);
  position: absolute;
}
.header .line.active {
  left: 50%;
  width: 45px;
  border-radius: 10px;
}
.header .menu-toggle {
  display: none;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 30px;
}
.header .menu-toggle:hover {
    cursor: pointer;
}
.header .menu-toggle span {
  width: 100%;
  height: 5px;
  background-color: #ccc;
  display: block;
}

.header__logo {
    margin-top: -10px;
    margin-bottom: -10px;
}
.header__logo img {
    height: 48px;
}
@media screen and (max-width: 767px) {
    .header__logo img {
        height: 35px;
    }

    .header .menu-link {
      font-size: 12px !important;
    }
}


.footer {
  background-color: #fff; /*#EEFEFF;*/
  padding: 0px 40px;
}
.footer-container {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 10px;
  padding-bottom: 10px;
}
/* thêm */
.footer__logo {
    max-width: 420px;
}
.footer__logo img {
  height: 44px;
}
.footer__logo p {
  margin-top: 27px;
  font-size: 12px;
  line-height: 1.8;
  color: #28262c;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  /*gap: 10px !important;*/
}
ul.footer__links {
    min-width: 150px;
    width: 35%;
}
.footer__links h3 {
  font-size: 16px;
  line-height: 1.5;
  /* text-transform: uppercase; */
  color: #343a40;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
    .footer-container {
        padding-top: 0px;
    }
    ul.footer__links {
        width: 100%;
        padding-left: 10px;
        padding-top: 15px;
        padding-bottom: 5px;
    }
}

.footer__links li {
  font-size: 14px;
  line-height: 2.8;
  display: flex;
  align-items: center;
  /*gap: 7px !important;*/
  color: #545454; /* #0a4066; */
  font-weight: 400;
}
.footer__links a {
    color: #545454; /* #0a4066; */
    font-weight: 400;
}
.footer__links a:hover {
    cursor: pointer;
    color: #17726d; /* #509ad6; */
}
.footer__link-wrap {
  display: flex;
  width: 750px;
  /*gap: 0 45px;*/
}
.footer .copywrite {
  background: #FFF;
  display: flex;  
  justify-content: space-between;
  padding: 20px 30px;
  border-top: 1px solid #e9ecef;
}
.footer .copywrite div {
  /*display: flex;*/
  /*gap: 38px !important;*/
}
.footer .copywrite p {
  font-size: 14px;
  line-height: 1.5;
  color: #6c757d;
}
@media screen and (max-width: 767px) {
    .footer .copywrite {
        padding: 10px 20px;
    }

    .footer {
      padding: 0px 20px;
    }
}



/*
 * header circle
 */
.badge {
    display: flex; /* Đặt flex để căn chỉnh các phần tử con theo chiều ngang */
    align-items: center; /* Căn giữa theo chiều dọc */
    color: #28262c;
    padding: 0 18px;
}
.badge_circle {
    background: #f7f7f7; /*#104c90;*/
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex; /* or inline-flex */
    align-items: center;
    justify-content: center;
    border: 0; /*1px solid #d3d5da;*/
    box-shadow: rgba(57, 76, 107, 0.5) 0px 1px 2px;
    /*margin-right: 10px; /* Khoảng cách giữa hình ảnh và tên */
    overflow: hidden; /* Đảm bảo ảnh tròn không bị tràn */
}
.badge_circle:hover {
    cursor: pointer;
    background: #e4e6eb;
}
.badge_circle img {
    width: 100%; /* Đảm bảo ảnh chiếm toàn bộ kích thước của container */
    height: 100%; /* Đảm bảo ảnh chiếm toàn bộ kích thước của container */
    border-radius: 50%;
    object-fit: cover; /* Đảm bảo ảnh giữ tỷ lệ mà không bị méo */
}
.badge_name {
  font-weight: 500 !important;
  font-size: 11px;
  color: #28262c;
  line-height: 1.2;
  white-space: normal; /* Cho phép text xuống hàng */
  text-align: left; /* Căn giữa text */
  word-break: break-word; /* Ngắt từ nếu cần thiết để tránh tràn */
  max-width: 110px !important;
}
@media screen and (max-width: 1023.98px) {
    .badge {
        top: 25px;
        right: 50px;
    }
}
@media screen and (max-width: 767px) {
    .badge {
        top: 25px;
        right: 50px;
    }
}

.menu_badge {
    padding-right: 80px;
}
@media screen and (max-width: 1023.98px) {
    .menu_badge {
        padding-right: 100px;
    }
}
@media screen and (max-width: 767px) {
    .menu_badge {
        padding-right: 0px;
    }
}


/**  **/
.user-info {
  display: flex;
  /* min-width: 240px; */
  gap: 20px;
  justify-content: start;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.user-divider {
  background-color: #e9eef1;
  width: 0;
  height: 30px;
  border: 1px solid #e9eef1;
  margin: auto 0px;
}
.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Manrope, sans-serif;
  justify-content: start;
}
.user-avatar {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 36px;
  border-radius: 50%;
  align-self: stretch;
  margin: auto 0;
}
.user-details {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto 0;
}
.user-name {
  color: #101d23;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}
.user-role-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1.6;
  justify-content: start;
}
@media (max-width: 991px) {
  .user-role-wrapper {
    white-space: initial;
  }
}
.user-role {
  color: #395360;
  font-weight: 500;
  align-self: stretch;
  margin: auto 0;
}
.role-divider {
  background-color: #e9eef1;
  align-self: stretch;
  width: 0;
  height: 10px;
  margin: auto 0;
  border: 1px solid #e9eef1;
}
.change-role {
  color: #17726d;
  font-weight: 600;
  align-self: stretch;
  margin: auto 0;
}



