  menu,
  nav,
  section {
    display: block;
  }

  ol,
  ul {
    list-style: none;
  }

  .list-view {
    display: flex;
    justify-content: space-between;
  }

  .list-view .content {
    flex-grow: 1;
  }

  .list-view>.icon {
    font-size: 22px;
    color: var(--text-4);
    flex-shrink: 0;
  }

  /*--------- profile ---------- */
  .banner-wrapper {
    position: relative;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: -60px;
    height: 258px;
  }

  .banner-wrapper::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  }

  .box-profile .content {
    margin-top: 18px;
  }

  .box-profile .content .icon {
    font-size: 20px;
    color: #d3d5da;
  }

  .box-profile .content .icon-location {
    font-size: 12px;
    color: #d3d5da;
  }

  /*------------ menubar ---------------- */
  .footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
  }

  .menubar-footer {
    padding: 17px 20px 18px;
  }

  .menubar-footer .inner-bar {
    padding-left: 0;
    padding-right: 0;
    display: flex;
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    align-items: center;
  }

  .menubar-footer .inner-bar li {
    padding: 0;
    width: 20%;
  }

  .menubar-footer .inner-bar li a {
    color: #6f7582;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 400;
    line-height: normal;
  }

  .menubar-footer .inner-bar li a .icon {
    font-size: 24px;
    color: #111;
  }

  .menubar-footer .inner-bar li.active a {
    color: #63b3ed;
    font-weight: 700;
  }

  .menubar-footer .inner-bar li.active a .icon {
    color: #63b3ed;
  }

  .menubar-footer .inner-bar li.active a svg path {
    fill: #63b3ed;
  }

  .menubar-footer .inner-bar .action-home {
    margin-top: -40px;
  }

  .menubar-footer .inner-bar .action-home a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    width: 46px;
    height: 46px;
    background-color: #63b3ed;
    box-shadow: 0px 15px 20px 0px rgba(0, 166, 255, 0.44);
    margin: 0 auto;
  }

  .menubar-footer .inner-bar .action-home a i {
    font-size: 20px;
    color: #fff;
  }

  .menubar-footer.style-1 {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .menubar-footer.style-2 {
    padding: 14px 19px 19px;
    border-radius: 16px;
  }

  .menubar-footer.style-2 li {
    width: 25%;
  }

  .menubar-footer.line li.active {
    position: relative;
  }

  .menubar-footer.line li.active::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    width: 56px;
    height: 4px;
    background: #63b3ed;
    border-radius: 20px 20px 0px 0px;
    transform: translateX(-50%);
  }

  .menubar-footer.style-3 {
    padding: 18px 19px;
    border-radius: 16px;
  }

  .menubar-footer.style-3 li {
    width: 25%;
  }

  .menubar-footer.style-4 {
    padding: 18px 19px;
    border-radius: 16px;
  }

  .menubar-footer.style-4 li {
    width: 20%;
  }

  .menubar-footer.style-5 {
    padding: 18px 19px;
    border-radius: 16px;
  }

  /*---------------Custom file image-------------------------------*/


  .custom-file-upload {
    display: inline-block;
    cursor: pointer;
    border-radius: 4px;
}

.custom-file-upload:hover {
    background-color: #ffffff;
    color: aqua;
}

.custom-file-upload i {
    margin-right: 5px;
}

input[type="file"] {
    display: none;
}