/* ВКЛАДКИ */
.tabs {
    margin-top: 38px;
}

.tabs__nav-item {
    margin: 0 5px;
}
.tabs__nav-btn {
    background-color: transparent;
    border: none;
    padding: 14px 5px;
    font-size: 16px;
    text-wrap: nowrap;
    color: rgba(63, 59, 59, 0.7);
    border-bottom: 1px solid rgba(0,0,0,0.2);
    -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -moz-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    -o-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.tabs__nav-btn:hover {
    color: #000;
    border-color: #000;
}
.tabs__nav-btn.active {
    color: #000;
    border-color: #000;
}
.tabs__contents-item {
    display: none;
}
.tabs__contents-item.active {
    display: block;
}
.tabs__contents-note {
  
}
.tabs__contents-note strong {
    font-weight: 600;
}
.tabs__contents-wrapper {
    padding: 32px 0 0;
}
.tabs__contents-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}


@media (min-width:768px) {
    .tabs__nav-btn {padding: 14px 40px;}
    .tabs__nav-list {
        justify-content: center; -webkit-justify-content: center; -webkit-box-pack: center; -ms-flex-pack: center;
    }

}


.multi__nav-list {display: none;}
.multi__contents-item {
    margin-bottom: 2px;
}
.multi_block-contents_button {
    border: none;
    cursor: pointer;
    position: relative;
    font-size: 18px;
    font-family: inherit;
    padding: 17px 50px 17px 15px;
    background-color: #fafafa;
    text-align: left;
    display: block;
    width: 100%;
    -webkit-transition: background-color 0.6s ease;
    -o-transition: background-color 0.6s ease;
    transition: background-color 0.6s ease;
}
.multi_block-contents_button::after {
    content: "";
    cursor: pointer;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    height: 8px;
    width: 8px;
    background-image: none;
    right: 25px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}

.multi__contents-wrapper {
    display: none;
    padding: 10px 15px;
}
.multi__contents-title {
    display: none;
}

.multi__contents-item.active .multi__contents-wrapper {
    display: block;
    padding: 15px 0;
}

.multi__contents-item.active .multi_block-contents_button::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.multi__contents-item.active .multi_block-contents_button {
    background: #f0f0f0;
}


@media (min-width:992px){
    .multi__nav-list {
        display: flex; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox;
        margin-bottom: 20px;
    }
    .multi_block-contents_button {display: none;}
    .multi__contents-title {
        display: block;
        font-size: 21px;
        font-weight: normal;
        line-height: 1.2;
    }
    .multi__nav-item {
        margin: 0 5px;
    }
    .multi__nav-btn {
        background-color: transparent;
        border: none;
        padding: 12px 15px;
        font-size: 16px;
        text-wrap: nowrap;
        color: rgba(63, 59, 59, 0.7);
        border-bottom: 1px solid rgba(0,0,0,0.2);
        -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        -moz-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        -o-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }
    .multi__nav-btn:hover {
        color: #000;
        border-color: #000;
    }
    .multi__nav-btn.active {
        color: #000;
        border-color: #000;
    }


}


@media (min-width:1100px){
    .multi__nav-list {
        justify-content: center; -webkit-justify-content: center; -webkit-box-pack: center; -ms-flex-pack: center;
    }
    .multi__nav-btn {
        padding: 14px 30px;
    }

}


.content.akk {
    padding: 50px 0;
    background-color: #ededed;
}



.akk__nav-list {display: none;}
.akk__contents-item {
    margin-bottom: 20px;
}
.akk_block-contents_button {
    font-size: 21px;
    font-weight: normal;
    border: none;
    cursor: pointer;
    position: relative;
    font-family: inherit;
    padding: 8px 0px;
    text-align: left;
    display: block;
    width: 100%;
    color: #257373;
    background-color: transparent;
    -webkit-transition: background-color 0.6s ease;
    -o-transition: background-color 0.6s ease;
    transition: background-color 0.6s ease;
}
.akk_block-contents_button span {
    border-bottom: 1px dashed;
}
.akk_block-contents_button:hover {
    color: #000;
}

.akk__contents-wrapper {
    display: none;
    padding: 10px 15px;
}
.akk__contents-title {
    display: none;
}

.akk__contents-item.active .akk__contents-wrapper {
    display: block;
    padding: 10px 0;
}

.akk__contents-item.active .akk_block-contents_button {
    color: #000;
}

@media (min-width:992px){
    .akk__contents-list {
        display: flex; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox;
        flex-wrap: wrap; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap;
        justify-content: space-between; -webkit-justify-content: space-between; -webkit-box-pack: space-between; -ms-flex-pack: space-between;
    }
    .akk__contents-item {
        width: 49%;
    }
}