

.qads {
  border-radius: 5px;
  padding: 20px 20px 20px 30px;
  border: none;
  cursor: pointer;
  margin: 0;

  summary {
    margin: 0;
    padding: 0;
    font-size: var(--content-size);
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  summary::after {
    content:"";
    display: inline-block;
    width: 28px;
    height: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("../../images/header/mobile_menu_close.svg");
  }
  .content {

  }
}
.qads[open]{
  summary::after {
    background-image: url("../../images/header/mobile_menu_open.svg");
  }
}