.pc-app, .pc-app p, .pc-app span, .pc-app b {
    font-weight: 400;
    font-size: 14px;
    color: #343536;
}
.pc-app__body {}


.pc-app__selectors {
    background-color: #F5F4F4;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.pc-app__selectors p, .pc-app__selectors b{
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}
.pc-app__select {
    position: relative;
    min-width: 200px;
    max-width: 200px;
}
.pc-app__select:nth-child(3) {
    max-width: none;
}
@media (max-width: 768px) {
    .pc-app__select {
        max-width: 100%;
        min-width: 100%;
    }
}
.pc-app__select span {
    color: #6E6E6E;
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
}
.pc-app__select-heading {
    margin-bottom: 4px !important;
}
.pc-app__select-label, .pc-app__select-label--text-input input {
    display: block;
    background: #fff;
    padding: 8px 30px 8px 10px;
    height: 30px;
    border: 1px solid #ddd;

    position: relative;
}
.pc-app__select-label--text-input {
    margin: 0 0 4px 0;
}
.pc-app__select-label--text-input input {
    padding: 8px 10px;
}
.pc-app__select-label input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}
.pc-app__select-label span {
    position: absolute;
    top: 10px;
    right: 10px;
}
.pc-app__select-label span svg {
    transform: rotate(180deg);
}
.pc-app__select-label span._is-open svg {
    transform: rotate(0deg);
}
.pc-app__select-label--text-input input:focus {
    outline: 1px solid #f1f1f1;
    background-color: #fff;
}
.pc-app__select-label--text-input input:focus-visible {
    outline: 1px solid #f1f1f1;
    background-color: #fff;
}
.pc-app__text-value {
    display: block;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}



.scroll-elem {
    overflow-y: scroll;
    position: absolute;
    top: calc(100% - 20px);
    list-style: none;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 0 !important;
    margin: 0 !important;
    max-height: 300px;
    width: 200px;
    z-index: 9999;
    box-shadow: 1px 1px 16px #00000040;
}
.scroll-elem li {
    padding: 5px 15px;
    cursor: pointer;
}
.scroll-elem li:hover {
    background-color: #ddd;
}
.scroll-elem::-webkit-scrollbar {
    background-color: transparent;
    width: 5px;
}
.scroll-elem::-webkit-scrollbar-thumb {
    background-color: #bfc1c7;
    border-radius: 2px;
}
.scroll-elem::-webkit-scrollbar-track {
    background-color: transparent;
    width: 5px;
}


.pc-app__result {
    margin: 20px 0 0 0;
}
.pc-app__result-loading {
    text-align: center;
    padding: 20px 0;
    font-size: 16px !important;
}
.pc-app__result-error {
    text-align: center;
    padding: 20px 0;
    font-size: 16px !important;
}
.pc-app__result-data h3 {
    color: #008F86;
    font-size: 20px;
    margin: 0;
}
.product-item {
    border: 1px solid #ddd;
    margin: 0 0 20px 0;
}
.product-item__heding {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 5px 10px;
    cursor: pointer;
    outline: 1px solid #ddd;
}
@media (max-width: 768px) {
    .product-item__heding {
        gap: 3px;
    }
}
.product-item__heding:hover {
    outline: 1px solid #00000040;
}
.product-item__heding div:nth-child(2) {
    flex: 1;
}
.product-item__heding div:nth-child(3) svg {
    width: 20px;
    height: 20px;
    transform: rotate(180deg);
}
.product-item__heding div:nth-child(3) span._is-open svg {
    transform: rotate(0);
}
.product-item__img img {
    height: 80px !important;
    width: auto !important;
}
.product-item__img span {
    display: block;
    width: 80px;
    height: 80px;
    background-color: #f9f9f9;
}
.product-item__heading {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    margin: 0 0 8px 0 !important;
}
.product-item__descr {
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    margin: 0 !important;

    max-width: 300px;
}
@media (max-width: 500px) {
    .product-item__img img {
        height: 60px;
    }
    .product-item__heading {
        font-size: 14px !important;
    }
}
.product-item__content {
    padding: 20px;
    overflow: hidden;
}
.product-item__content-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-item__content-column:nth-child(1) {
    flex: 1;
}
.product-item__content-column:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 170px;
}
@media (max-width: 768px) {
    .product-item__content-column:nth-child(1) {
        width: 100%;
    }
    .product-item__content-column:nth-child(2) {
        margin: 20px 0 0 0;
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }
    .product-item__content-column:nth-child(2) p {
        text-align: left !important;
    }
}
.product-item__content-column:nth-child(2) p {
    text-align: end;
}
.product-item__content-column:nth-child(2) a:hover {
    color: #00736c;
}
.product-item__propertys p {
    display: flex;
    gap: 10px;
    margin-left: auto;
}
.product-item__propertys p span {
    display: block;
    line-height: 1;
    flex: 0 0 50%;
}
.product-item__propertys p span:nth-child(1) {
    color: #81858F;
}
@media (max-width: 768px) {
    .product-item__propertys p span {
        font-size: 15px;
    }
    .product-item__propertys p span:nth-child(1) {
        flex: 0 0 60%;
    }
}
.product-item h4 {
    font-size: 14px;
    font-weight: 600;
}



.product-item__accessories {
    display: flex;
    gap: 16px;
    overflow-x: auto;
}
.accessory {
    width: 190px;
    min-width: 190px;
    border: 1px solid #CCCCCC;
    padding: 10px;
    margin: 0 0 2% 0;

    display: flex;
    flex-direction: column;
}
.accessory__img img {
    height: 68px !important;
    width: auto;
}
.accessory__title {
    margin: 20px 0 0 0;
    font-size: 14px !important;
    font-weight: 600 !important;
}
.accessory__descr {
    width: 100%;
    flex: 1;
    font-size: 12px !important;
    line-height: 1 !important;
}
.accessory__link a {
    color: #008F86 !important;
}
.accessory__link a:hover {
    color: #00736c !important;
}
.accessory__buy-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pc-app__buy-btn--accessory {
    width: 28px;
    height: 28px;
    padding: 3px;
    border: none;
    border-radius: 2px;
    background-color: #008F86;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.pc-app__buy-btn--accessory:hover {
    background-color: #00736c;
}
.pc-app__buy-btn--accessory svg {
    width: 16px;
    height: auto;
    fill: #fff;
}


.product-item__buy-block {
    display: flex;
    gap: 12px;
    justify-content: end;
}
.product-item__buy-block div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-item__buy-block span, .accessory__buy-block span {
    font-weight: 600;
}
.product-item__buy-block span {
    font-size: 18px;
}
.accessory__buy-block span {
    font-size: 14px;
}
.pc-app__buy-btn {
    width: 40px;
    height: 40px;
    padding: 3px;
    border: none;
    border-radius: 2px;
    background-color: #008F86;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.pc-app__buy-btn:hover {
    background-color: #00736c;
}
.pc-app__buy-btn svg {
    width: 24px;
    height: auto;
    fill: #fff;
}