/*start styles*/
.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    font-size: calc(var(--textSize) * 20px);
  }
  
  .accordion__item {
    border: 1px solid rgba(57, 59, 65, 0.2);
    border-radius: 36px;
    overflow: hidden;
  }
  
  .accordion__header {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
  }
  
  .accordion__header::after {
    content: "";
    background: url("../icon/chevron-down.svg") no-repeat center;
    width: 20px;
    height: 20px;
    transition: 0.4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
  }
  
  .accordion__header.active::after {
    transform: rotateX(180deg);
  }
  
  .accordion__item .accordion__content {
    padding: 0 25px;
    max-height: 0;
    transition: 0.5s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  /* accordions-section */
  .accordions-section .accordion {
    gap: 0;
  }
  .accordions-section .accordion__item {
    border-radius: 0;
    border: none;
    border-top: 1px solid #737373;
  }
  .accordions-section .accordion__item:last-child {
    border-bottom: 1px solid #737373;
  }
  .accordions-section .accordion__header::after {
    background: url("../icon/arrow-right.svg") no-repeat center;
  }


  .pharmacy_block .address_name{
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 0;
  }

  .pharmacy_block a{
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
  }