.faq{
    width: 560px;
    overflow-y: scroll;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 0 0 40px;
    /*width: 100%;*/
    height: 336px;
}

.faq:focus-visible{
    outline: none;
}

.accordion-body{
    max-width: 540px;
    width: 100%;
}

.faq::-webkit-scrollbar {
    width: 4px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.50);
}

.faq::-webkit-scrollbar-thumb {
    width: 4px;
    /*height: 118px;*/
    border-radius: 0;
    background: #FF091A;
}

.container1{
    max-width: 540px;
    border-bottom: 2px solid #FF091A;
    position: relative;
    transition: 0.5s;
    min-height: 48px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.container1.active {
    padding-top: 10px;
    transition: 0.5s;
}

.label{
    width: 510px;
    white-space: initial;
    color: #FF091A;
    font-family: "Lays Cyr";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 0 0 5px;
    text-align: left;
    margin: 10px 0;
}


.content1 {
    color: #FF091A;
    font-family: "Lays Cyr";
    font-size: 24px;
    font-weight: 700;
    line-height: normal;

    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
    padding: 0;
}


.container1.active .label {
    height: auto;
    padding: 0 30px 0 5px;
    transition: 0.3s;
}

.container1.active .content1 {
    max-height: 600px; /* запас под длинный ответ */
    opacity: 1;

    background: #FFF;
    width: 540px;
    min-height: 48px;
    padding: 10px 0 10px 5px;

    display: flex;
    align-items: center;
}

.label::before {
    content: url("/static/img/Arrow.png");
    position: absolute;
    top: 15px;
    right: 0;
    transition: transform 0.3s ease;
}

.container1.active .label::before {
    transform: rotate(180deg);
}
