.bottom_navbar {
  display: none;
}

.site_option {
  display: flex;
  justify-content: center;
  margin: 0 20px;
  margin-top: 4px;
  color: #fff;
}

.site_option .active {
  color: var(--primary);
}

@media(max-width: 768px) {
  .bottom_navbar {
    display: block;
  }
}

@media(max-width: 450px) {
  .site_option {
    justify-content: space-between;
  }

}

.site_option_section {
  margin: 7px 13px;
  cursor: pointer;
}

.site_option svg {
  font-size: 28px;
  color: #fff;
}

.site_option_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.site_option_section .icon {
  position: relative;
}

.site_option_section .icon .total_count {
  position: absolute;
  top: -2px;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #fff;
}

.site_option_section .icon .total_count::after {
  content: attr(data-count);
  display: flex;
  color: #000;
  width: 100%;
  justify-content: center;
  position: relative;
  align-items: center;
  height: 100%;
  font-size: 9px;
  font-weight: 500;

}

.header_option_text .option_title {
  margin: 0;
  font-size: 11px;
  color: var(--secondary-text);
  font-weight: 400;
}

.header_option_text .option_sub {
  font-size: 11px;
  font-weight: 300;
  line-height: 1;
  margin: 4px 0;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.loader svg {
  stroke: #fff;
  width: 30px;
  height: 30px;
}

.profile_image {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  position: relative;
  overflow: hidden;
  margin-right: 5px;
}

.profile_image img {
  max-width: 100% !important;
  height: auto !important;
}