.elementor-5553 .elementor-element.elementor-element-1702ecc1{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;}.elementor-5553 .elementor-element.elementor-element-8988ad0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for container, class: .elementor-element-1702ecc1 *//* Sidebar container */
.my-sidebar {
  width: 60px;
  height: 70vh;
  background: #318731;         
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  border-radius: 14px 0 0 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  padding: 15px 0;
}

/* Mobile view */
@media (max-width: 768px) {
  .my-sidebar {
    width: 100%;
    height: 60px;
    top: auto;
    bottom: 0;
    right: 0;
    flex-direction: row;            /* row layout */
    justify-content: space-around;  /* spread icons */
    border-radius: 14px 14px 0 0;   /* rounded top */
    padding: 0 10px;
  }

  .icon-wrapper {
    flex: 1;                        /* equal spacing */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .tooltip-text {
    bottom: 70px;                   /* show above bar */
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
  }

  .tooltip-text::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-color: #ffcd57 transparent transparent transparent;
  }

  /* Make icons slightly bigger for touch devices */
  .custom-icon {
    width: 30px;
    height: 30px;
  }
}

/* Each icon wrapper */
.icon-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Custom icons (SVG/PNG) */
.custom-icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1); /* makes icon white */
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

/* Hover animation for icons */
.icon-wrapper:hover .custom-icon {
  transform: scale(1.2) rotate(5deg);
  filter: brightness(0) saturate(100%) invert(81%) sepia(56%) saturate(749%) hue-rotate(330deg) brightness(103%) contrast(101%);
}


/* Tooltip styles */
.tooltip-text {
  position: absolute;
  right: 70px;                 /* position outside sidebar */
  background: #ffcd57;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transform: translateY(-50%) translateX(10px);
  top: 50%;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Tooltip arrow */
.tooltip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #ffcd57;
}

/* Show tooltip on hover */
.icon-wrapper:hover .tooltip-text {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.site-topbar{
    display: none;
}/* End custom CSS */