.elementor-4064 .elementor-element.elementor-element-f04a3bd{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--gap:0px 0px;--background-transition:0.3s;}.elementor-4064 .elementor-element.elementor-element-209557e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;--margin-block-start:0px;--margin-block-end:0px;--margin-inline-start:0px;--margin-inline-end:0px;}.elementor-4064 .elementor-element.elementor-element-3c77f3d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}.elementor-4064 .elementor-element.elementor-element-3c77f3d, .elementor-4064 .elementor-element.elementor-element-3c77f3d::before{--border-transition:0.3s;}.elementor-4064 .elementor-element.elementor-element-d01e36d{text-align:center;}@media(min-width:768px){.elementor-4064 .elementor-element.elementor-element-209557e{--width:400px;}.elementor-4064 .elementor-element.elementor-element-3c77f3d{--width:1200px;}}/* Start custom CSS for sidebar, class: .elementor-element-b2c8913 *//* Add custom CSS to style the collapsible button */
.collapsible-button {
  background-color: #f4f4f4; /* Set the background color */
  color: #333; /* Set the text color */
  border: none;
  padding: 10px 20px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s; /* Add a smooth transition effect */
  border-radius: 5px;
  margin-bottom: 10px;
}

/* Style for the content that is initially hidden */
.collapsible-content {
  display: none;
  padding: 10px;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
}

/* Change the background color when the button is clicked */
.collapsible-button.active {
  background-color: #ddd;
}

/* Change the display property to make the content visible when button is clicked */
.collapsible-button.active + .collapsible-content {
  display: block;
}/* End custom CSS */