/**
 * Стилі акордеону партнерів BIT.
 */

.bit-pa-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bit-pa-item {
    border-bottom: 1px solid #e5e5e5;
}

#bit-pa-accordion-widget .bit-pa-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    background-color: transparent;
    
}

#bit-pa-accordion-widget .bit-pa-header:hover {
    background-color: transparent;
}

#bit-pa-accordion-widget .bit-pa-header-title {
    font-size: 18px;
    font-weight: 700;
    color: #353A47;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    padding: 10px 0;
}

#bit-pa-accordion-widget .bit-pa-header-action {
    margin-left: auto;
    margin-right: 12px;
    white-space: nowrap;
    color: #353A47;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    opacity: 0.4;
}

#bit-pa-accordion-widget .bit-pa-header-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid #9b9b9b;
    border-bottom: 2px solid #9b9b9b;
    transform: rotate(-45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

#bit-pa-accordion-widget .bit-pa-item--open .bit-pa-header-icon {
    transform: rotate(45deg);
    border-right-color: #B71C22;
    border-bottom-color: #B71C22;
    position: relative;
    top: -2px;
    margin-left: 5px;
}

#bit-pa-accordion-widget .bit-pa-item--open .bit-pa-header-action {
    color: #B71C22;
    opacity: 1;
}

#bit-pa-accordion-widget .bit-pa-header-action--active {
    color: #B71C22;
    opacity: 1;
    display: flex;
    align-items: center;
}

#bit-pa-accordion-widget .bit-pa-content {
    padding-bottom: 16px;
}

#bit-pa-accordion-widget .bit-pa-card {
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

#bit-pa-accordion-widget .bit-pa-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    font-size: 14px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    height: 61px;
}

#bit-pa-accordion-widget .bit-pa-row:last-child {
    border-bottom: none;
}

#bit-pa-accordion-widget .bit-pa-row--account {
    background-color: #B71C22;
    color: #ffffff;
}

#bit-pa-accordion-widget .bit-pa-row--account .bit-pa-label,
#bit-pa-accordion-widget .bit-pa-row--account .bit-pa-value {
    color: #ffffff;
}

#bit-pa-accordion-widget .bit-pa-label {
    color: #353A47;
    display: flex;
    align-items: center;
    opacity: 0.4;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 20.8px */
}

#bit-pa-accordion-widget .bit-pa-value {
    text-align: left;
    color: #353A47;

/* Text/Text Desktop Medium */
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 500;
display: flex;
align-items: center;
width: 60%;
}

@media (max-width: 767px) {
    #bit-pa-accordion-widget .bit-pa-header {
        padding: 14px 0;
        display: flex;
    flex-direction: column;
    align-items: flex-start;
    }

    #bit-pa-accordion-widget .bit-pa-header-title {
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 130%; /* 31.2px */
white-space: pre-line;
height: auto;
line-height: inherit;
    }

    #bit-pa-accordion-widget .bit-pa-header-action {
        margin: 0;
        width: 100%;
        font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 20.8px */
display: flex;
justify-content: space-between;
padding-right: 5px;
    }
    #bit-pa-accordion-widget .bit-pa-item--open .bit-pa-header-action{
        flex: auto;
    margin: 0;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    }

    #bit-pa-accordion-widget .bit-pa-row{
        display: flex;
        flex-direction: column;
        min-height: 61px;
        height: auto;
    }

    #bit-pa-accordion-widget .bit-pa-header-action-text{

/* Text/Text Desktop Medium */
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 20.8px */
    }
    #bit-pa-accordion-widget .bit-pa-label{
        font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 18.2px */
    }
    #bit-pa-accordion-widget .bit-pa-value{
        font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 18.2px */
width: 100%;
    }
}

