/*
 * Sidebar
 */
 .sidebar {
  position: fixed;
  top: 0;
  /* rtl:raw:
    right: 0;
    */
  bottom: 0;
  /* rtl:remove */
  left: 0;
  z-index: 100;
  /* Behind the navbar */
  padding: 72px 0 0;
  /* Height of navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-mobile {
  position: fixed;
  top: 3rem;
  bottom: 0;
  left: 0;
  z-index: 100;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-tablet {
  position: fixed;
  top: 4rem;
  bottom: 0;
  left: 0;
  z-index: 100;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-right-tablet {
  position: fixed;
  top: 25%;
  right: -23%;
  z-index: 100;
}

.sidebar-right {
  position: fixed;
  top: 25%;
  right: -20%;
  z-index: 100;
}

.sidebar-display{
display: none;
}

.broder-icon{
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center; 
}


@media (max-width: 767.98px) {
  .sidebar {
    top: 5rem;
  }
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto;
  /* Scrollable contents if viewport is shorter than content. */
}

.app-icon {
  height: 56px;
  width: 56px;
  display: grid;
  place-items: center;
}

.sticky-body {
  padding-left: 15px;
  padding-right: 16px;
}

.sticky-body-title {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}

.sticky-body-text {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
}

.sticky-body-text-bold {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}

.pt-16x {
  padding-top: 10px;
}

.bc-c-sidebar-image {
  width: 100%;
}

.error-message {
  padding-left: 60px;
}

.error-message-mobile {
  padding-left: 30px;
}

/* Tooltip */
.bc-u-tooltip-error .bc-u-tooltiptext-error {
  background-color: rgba(64, 102, 185, 0.95);
  border-end-end-radius: 0;
  border-radius: 8px;
  bottom: 120%;
  color: var(--bc-theme-1);
  left: 50%;
  margin-left: -145px;
  opacity: 0.95;
  padding: 6px 6px;
  position: absolute;
  text-align: center;
  transition: opacity 1s;
  visibility: hidden;
  width: 160px;
  z-index: 1;
  text-align: left;
}

.bc-u-tooltip-error .bc-u-tooltiptext-error::after {
  border-color: rgba(64, 102, 185, 0.95) transparent transparent transparent;
  border-style: solid;
  border-width: 5px;
  content: "";
  margin-left: -5px;
  position: absolute;
  right: 10%;
  top: 100%;
}

.bc-u-tooltip-error:hover .bc-u-tooltiptext-error {
  opacity: 1;
  visibility: visible;
}

/* Tooltip */
