.cgam-dropdown {
  box-sizing: border-box;
  padding: 7px;
  background: #dbeff9;
}

.cgam-dropdown > .cgam-dropdown__item {
  margin: 0;
  padding: 0;
  border: 0;
}

.cgam-dropdown .cgam-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 13px 14px 28px;
  border-radius: 12px;
  background: #fff;
  color: #0099d8;
  font-family: inherit;
  font-size: var(--cgam-dropdown-heading-size, clamp(18px, 2.4vw, 26px));
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.cgam-dropdown .cgam-dropdown__toggle:hover,
.cgam-dropdown .cgam-dropdown__toggle:focus-visible {
  color: #007cb5;
  text-decoration: none;
}

.cgam-dropdown .cgam-dropdown__toggle:focus-visible {
  outline: 2px solid #007cb5;
  outline-offset: 2px;
}

.cgam-dropdown .cgam-dropdown__toggle::before {
  box-sizing: border-box;
  content: "+";
  order: 2;
  flex: 0 0 33px;
  width: 33px;
  height: 33px;
  margin: 0;
  border-radius: 50%;
  background: #0099d8;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 31px;
  text-align: center;
}

.cgam-dropdown .cgam-dropdown__content {
  margin-top: 6px;
  padding: 14px 25px 28px;
  border-radius: 0 0 12px 12px;
  background: #fff;
}

.cgam-dropdown__links {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cgam-dropdown__link-item {
  position: relative;
  margin: 0;
  padding-left: 42px;
  color: #0099d8;
  font-size: var(--cgam-dropdown-link-size, 20px);
  line-height: 1.4;
}

.cgam-dropdown__link-item::before {
  position: absolute;
  top: 5px;
  left: 11px;
  width: 9px;
  height: 15px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.cgam-dropdown__link {
  color: inherit;
  text-decoration: none;
}

.cgam-dropdown__link:hover,
.cgam-dropdown__link:focus-visible {
  color: #007cb5;
  text-decoration: underline;
}

@media (max-width: 639px) {
  .cgam-dropdown .cgam-dropdown__toggle {
    padding-left: 16px;
  }

  .cgam-dropdown .cgam-dropdown__content {
    padding: 14px 14px 20px;
  }

  .cgam-dropdown__link-item {
    padding-left: 30px;
    font-size: var(--cgam-dropdown-link-size, 17px);
  }

  .cgam-dropdown__link-item::before {
    left: 2px;
  }
}
