.accordion-menu {
    width: 100%;
}

.accordion-menu li.open .dropdownlink {
    color: color-mix(in srgb, #f7cd16, transparent 0%);
}

.accordion-menu li.open .dropdownlink .bi-chevron-down {
    transform: rotate(180deg);
	color:#000;
}

.accordion-menu li:last-child .dropdownlink {
    border-bottom: 0;
}

.dropdownlink {
    cursor: pointer;
    display: block;
	font-family: var(--urbanist);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #1C1C1C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0 15px;
  position: relative;
  border-bottom: solid 1px #DFE1E5;
}

.dropdownlink i {
    position: absolute;
    top: 17px;
    left: 16px;
	font-size:14px!important;
}

.dropdownlink .bi-chevron-down {
    right: 12px;
  left: auto;
  top: 5px;
  background: #f7cd16;
  border-radius: 100%;
  text-align: center;
  width: 20px;
  height: 20px;
  padding-top: 2px;
  font-weight: 600;
}

.submenuItems {
    display: none;
}

.submenuItems li span {
    padding-left:5px;
}

.submenuItems a {
    display: block;
    color: #727272;
    padding: 12px 12px 12px 45px;
    transition: all 0.4s ease-out;
}

.submenuItems a:hover {
    background: #cddc39;
    color: #fff;
}

