@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");

a, a:hover, a:visited, a:active {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.main {
  background-color: #f7f7f7;
  min-height: 100vh;
  margin: 0;
}

.page-header {
  background-color: #e7ecf2;
}

.page-header .logo {
  margin-left: 1em;
  height: 1.65em;
  vertical-align: top;
}

.hamburger-header {
  padding: 0 var(--bs-offcanvas-padding-x);
}

.hamburger-header .logo {
  margin-left: 7em;
  height: 3em;
}

.menu {
  max-width: 280px;
  padding: 0;
}
.menu > div{
  background-color: #267ca0;
}

.hamburger-menu {
  max-width: 100%;
  background-color: #267ca0;
}

.page-content {
  flex-grow: 1;
}

/** add width class **/
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-30 {
  width: 30%;
}

.min-w-60px {
  min-width: 60px;
}

.min-w-90px {
  min-width: 90px;
}

.min-w-200px {
  min-width: 200px;
}

/** login form **/
.auth-form 
  height: 90vh;
}

.fs-7 {
  font-size: 0.8rem;
}

/** Breadcrumb **/
#breadcrumb {
  padding: 14px 0 20px;
}
#breadcrumb li a {
  color: #1c1c1c;
}
#breadcrumb li .now {
  color: #1c1c1c;
}
#breadcrumb li {
  display: inline;
  line-height: 1;
  color: #1c1c1c;
}
#breadcrumb li::after {
  display: inline-block;
  margin-bottom: 4px;
  content: ">";
  padding: 0 1em;
  color: #1c1c1c;
  font-weight: bold;
  vertical-align: middle;
}
#breadcrumb li:last-of-type::after {
  display: none;
}

/** Header Items **/
.header-profile-icon {
  border-radius: 50%;
  font-size: 44px;
  width: 44px;
  height: 44px;
}

@media screen and (max-width: 1024px) {
  .header-profile-icon {
    font-size: 32px;
    width: 32px;
    height: 32px;
  }
}

/** Common UI **/
.page-description {
  background-color: #ffffff;
}

.large-ui {
  transform: scale(1.8);
}

.package-preview {
  max-width: 364px;
  aspect-ratio: 1 / 2;
}

.preview-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.preview-scrollbar::-webkit-scrollbar-track {
    border-radius: 6px;
    margin-bottom: 18px;
}

.preview-scrollbar::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #ddd;
}

.preview-scrollbar-x::-webkit-scrollbar {
    height: 6px;
}

.preview-scrollbar-x::-webkit-scrollbar-track {
    border-radius: 6px;
    margin-right: 10px;
    margin-left: 10px;
}

.preview-scrollbar-x::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #ddd;
}

.package-preview-display-toggle {
  position: fixed;
  right: 0;
  bottom: 0;
  height: 48px;
  width: 48px;
  margin: 0.5em;
  border-radius: 50％;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 992px) {
  .package-preview {
    position: fixed;
    min-width: 260px;
    right: 0.8em;
    bottom: 0.8em;
  }

  .package-preview-display-toggle {
    display: block;
  }
}

@media all and (min-width: 993px) {
  .package-preview {
    display: block !important;
  }
}

