.price_item_title{
    color: #3F5B6F;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 100% */
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(63, 91, 111, 0.23);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    grid-gap: 5px 24px;
    cursor: pointer;
    flex-wrap: wrap;
    transition-duration: 0.3s;
}
.price_item_title:hover{
    opacity: 0.7;
    transition-duration: 0.3s;
}
.price_item_title:before{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-image: url("/wp-content/themes/picasso-dental/assets/img/plus.svg");
    width: 34px;
    height: 34px;
    background-size: contain;
    transition-duration: 0.3s;
}
.price_item_title:after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background-image: url("/wp-content/themes/picasso-dental/assets/img/minus.svg");
    width: 34px;
    height: 34px;
    background-size: contain;
    opacity: 0;
    transition-duration: 0.3s;
}
.price_content{
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms  linear, max-height 200ms linear;
}
.price_item_title.active:after{
    opacity: 1;
}
.price_item_title.active{
    text-decoration: none;
}
.price_item_title.active:before{
    opacity: 0;
}
.price_content{
    color: #3E403D;
    padding-left: 53px;
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 21.96px
}
.price_content li{
    display: flex;
    border-bottom: 1px solid rgba(63, 91, 111, 0.23);
    padding-bottom: 20px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
    grid-gap: 40px;
}
.price_content li em{
    font-style: normal;
    max-width: 600px;
    width: 100%;
}
.price_content li strong{
    font-weight: 300;
    text-align: right;
}
.price_list{
    padding: 90px 0px;
}
.price_item_title span{
    display: block;
    text-transform: none;
    font-size: 14px;
    width: 100%;
    padding-left: 53px;
    box-sizing: border-box;
}
.price_table_item ul{
    border-top: 1px solid #ccc;
}
.price_table_item li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.price_table_item.fix em{
    background-color: #3f596e;
    color: white;
}
.price_table_item.fix{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ccc;
}
.price_table_item.fix strong{
    border-right: 1px solid #ccc;
}
.price_table_item strong{
    padding: 8px;
    text-align: right;

    font-weight: 400;
    padding-left: 15px;
    width: 250px;
}
.price_table_item  em{
    border-right: 1px solid #ccc;
    font-style: normal;
    padding: 8px;
    border-left: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 834px) {
    .price_item_title{
        font-size: 15px;
        grid-gap: 5px 10px;
        padding-bottom: 15px;
        margin-bottom: 15px;
        padding-right: 25px;
    }
    .price_item_title:after,.price_item_title:before{
        width: 20px;
        height: 20px;
    }
    .price_content{
        font-size: 14px;
        padding-left: 0;
    }
    .price_item_title span{
        font-size: 12px;
        padding-left: 25px;
        line-height: 1;
    }
    .price_content li{
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .price_list {
        padding: 40px 0px;
    }
}
@media (max-width: 400px) {
    .price_count{
        display: none;
    }
    .price_item_title span{
        padding-left: 0;
    }
}