﻿.dropdown_block {
  border-bottom: solid #B9BFC3 2px;
}

.dropdown-list-component {
  border-top: solid #B9BFC3 2px;
}


.dropdown-button {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.dropdown-button_text {
  border: 0px;
  font-weight: bold;
  color: #0077BA;
  font-size: 24px;
  line-height: 70px;
}

.dropdown-chevron {
  display: inline-block;
  transition: transform 0.3s ease; /* Smooth rotation */
  color: #505D64;
}

  .dropdown-chevron.rotated {
    transform: rotate(90deg); /* Rotate the chevron */
  }

.accordion {
  background-color: transparent;
  text-align: left;
  border: none;
  outline: none;
  transition: height 0.4s;
}

.dropdown-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s linear;
  background-color: white;
  color: #2F3538;
  font-size: 18px;
  margin-left: 12px;
}

  .dropdown-panel.in {
    transition: max-height 0.4s linear;
    max-height: 500px; /* Adjust this value based on your content's max height */
  }

  .dropdown-panel > div {
    margin-bottom: 32px;
  }

.dropdown-link {
  color: #0077BA !important;
  text-decoration: underline;
  font-weight: bold;
  font-size: 18px;
}

.dropdown-list {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  margin-left: 24px;
}

.in {
  display: block;
}
