:root {
  --primary: #695467;
  --secondary: #A2588F;
  --white: #fff;
  --light-gray: #ccc;
  --gray: #e2e1de;
  --dark-gray: #888;
  --body-content: #D9E0E6;
}

body {
  font-family: Poppins;
}

/* Navbar & Footer */
.navbar-logo img,
.footer-logo img {
  width: 60px;
  height: 47px;
  object-fit: cover;
}

.navbar-nav > li {
  margin: 0 14px;
}

.user-guide-navbar {
  transition: all 0.3s ease;
}

.btn-nav-link, .customer-footer {
  background-color: var(--primary);
}

.user-guide-navbar-size {
  height: 70px;
  transition: height 0.3s ease;
}

.user-guide-navbar-size.auto-height {
  height: auto;
}

.user-guide-footer-size {
  height: 350px;
}

/* Content */
.user-guide-sidebar {
  top: 80px;
  width: 290px;
  box-shadow: 3px 4px 13px -7px var(--gray);
  flex-shrink: 0;
}

.user-guide-desc-sidebar {
  top: 80px;
}

.user-guide-sidebar .sidebar-content .nav-tabs .nav-item.show .nav-link,
.user-guide-sidebar .sidebar-content .nav-tabs .nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

.user-guide-sidebar .sidebar-content .nav-tabs .nav-link.active {
  font-size: 17px;
}

.user-guide-number {
  width: 16px;
  height: 16px;
  background: var(--primary);
  padding: 16px;
}

.user-guide-desc-menu {
  border-left: 3px solid var(--white);
}

.user-guide-desc-menu.active {
  border-left-color: var(--primary);
  color: var(--primary) !important;
  font-weight: 500;
}

.user-guide-list {
  flex-grow: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 4fr 1.2fr;
}

.user-guide-desc-sidebar .list-group {
  border-left: 1px solid var(--gray);
}

.sidebar-content a.active {
  color: var(--primary) !important;
  font-weight: 500;
}

/* partenership */
.partnership-wrap {
  padding-top: 58px;
}

.partnership-banner {
  background-color: var(--body-content);
}

.property-category-item .transition-hover,
.empower-business-item .transition-hover {
  transition: all 0.3s ease;
}

.property-category-item .transition-hover:hover,
.empower-business-item .transition-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

.step-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--bs-white);
  font-weight: 600;
}

.riungin-faq .accordion-button:not(.collapsed) {
  color: var(--bs-dark);
  border-color: var(--bs-white);
  background-color: var(--bs-white);
}

.riungin-faq .accordion-button:focus {
  border-color: var(--white);
  box-shadow: none;
}

.partnership-footer {
  background-color: #695467;
}

.btn-be-tenant, .btn-be-tenant:hover {
  background-color: rgba(248, 248, 248, 0.48);
  color: var(--bs-white);
}

.btn-be-tenant:focus {
  border-color: var(--bs-white);
  box-shadow: none;
}

.property-category-item .property-category-icon,
.empower-business-item .property-category-icon {
  width: 35px;
}

.property-category-item .card-img-top,
.empower-business-item .card-img-top {
  width: 100%;
  height: 217px;
  object-fit: cover;
}

.customer-footer .footer-payment-icon {
  width: 47px;
  height: 22px;
  object-fit: cover;
}

.user-guide-text-img {
  color: var(--primary);
  font-size: 10px;
}

/* Skeleton */
body.loaded #app {
  display: block;
}

#app {
  display: none;
}

#skeleton {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--body-content);
  color: var(--bs-gray);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--light-gray);
  border-top: 4px solid var(--dark-gray);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media only screen and (max-width: 991px) {
  .user-guide-navbar-wrap {
    overflow: auto;
  }

  .user-guide-navbar-size {
    height: auto;
  }

  .user-guide-sidebar {
    position: relative;
    top: 15px;
    width: 300px;
    box-shadow: none;
  }

  .user-guide-list {
    grid-template-columns: auto auto;
  }

  .user-guide-desc-sidebar {
    display: none;
  }

  .user-guide-desc {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .user-guide-list {
    grid-template-columns: 4fr 2fr;
  }
}

@media only screen and (min-width: 738px) and (max-width: 991px) {
  .user-guide-footer-size {
    height: 385px;
  }
}

@media only screen and (max-width: 737px) {
  .user-guide-footer-size {
    height: 420px;
  }
}
