/*
Theme Name: Focus      
Theme URI:   
Author: BESTINTOP
Author URI: https://bestintop.ru/
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: focus
*/
@media (min-width: 61.9988em) {
    .accordeon {
        padding: 6.25rem 0;
    }
}
@media (max-width: 61.9988em) {
    .accordeon {
        padding: 3rem 0;
    } 
}
.post-type-archive .accordeon {
    background-color: #F5F5F4;
}
.page--catalog {
    padding: 0 !important; 
}
.accordeon__content {
    max-width: 63rem;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.accordeon__item {
    padding: 0 0 1.5rem 0;
}
@media (max-width: 61.9988em) {
    .accordeon__item {
        padding: 0 0 1.25rem 0;
    }
}
.accordeon__item + .accordeon__item {
    margin-top: 1.5rem;
}
@media (max-width: 61.9988em) {
    .accordeon__item + .accordeon__item {
        margin-top: 1.25rem;
    }  
}
.accordeon__item:not(:last-child) {
    border-bottom: 0.063rem solid #E7E5E4;
}
.accordeon__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.875rem;
    cursor: pointer;
}
.accordeon__head h2 {
    color: #1C1917;
}
.accordeon__head::after {
    display: block;
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6 9L12 15L18 9' stroke='%2344403C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
    transition: all 300ms ease;
}
.accordeon__head.open::after {
    transform: rotate(180deg);
}

.accordeon__body {
    padding: 1rem 0 0 0;
    display: none;
}
.accordeon__body p, .accordeon__body li {
    font-family: Onest;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    letter-spacing: -0.013rem;
    vertical-align: middle;
    color: #79716B;
}
@media (max-width: 61.9988em) {
    .accordeon__body p, .accordeon__body li {
        font-size: 0.875rem;
    }
}
.accordeon__body * + p, .accordeon__body * + ul, .accordeon__body * + ol {
    margin-top: 1rem;
}
.accordeon__body ul {
    list-style: none;
}
.accordeon__body ul li {
    position: relative;
    padding: 0 0 0 10px;
}
.accordeon__body ul li::before {
    display: block;
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='3' cy='3' r='2.5' stroke='%23609B8E'/%3e%3c/svg%3e ");
    position: absolute;
    left: 0;
    top: 0.375rem;
}
.accordeon__body ol {
    counter-reset: myCounter;
    list-style: none;
}
.accordeon__body ol li {
    padding: 0 0 0 1.5rem;
    position: relative;
}
.accordeon__body ol li::before {
    font-family: Onest;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    letter-spacing: -0.013rem;
    vertical-align: middle;
    color: #609B8E;
    counter-increment: myCounter;
    content: counter(myCounter) '.';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 61.9988em) {
    .accordeon__body ol li::before {
        font-size: 0.875rem;
    }
}
.accordeon__item.open .accordeon__head::after {
    transform: rotate(180deg);
}
.accordeon__body li + li {
    margin-top: 0.5rem;
}