.type-of-scales__above-heading {
    margin-bottom: 6px;
    font-size: 14px;
    color: #7c7c7c;
}

.type-of-scales__heading {
    margin-bottom: 48px;
}

.type-of-scales__items {
    display: flex;
    gap: 24px;
}

.type-of-scales__item {
    flex-basis: calc((100% - 24px) / 2);
    position: relative;
    border: 1px solid #bdbdbd;
    background: #fefbe7;
}

.type-of-scales__item-content-wrapper {
    padding: 44px 48px 42px 48px;
}

.type-of-scales__item-img {
    padding: 2px 2px 0 2px;
    height: 256px;
    width: 100%;
    object-fit: fill;
}

.type-of-scales__item-heading {
    margin-bottom: 32px;
    text-transform: none;
}

.type-of-scales__item-list ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
	min-height: 170px;
}

.type-of-scales__item-list ul li {
    position: relative;
    padding-left: 23px;
    height: fit-content;
    font-size: 16px;
    opacity: 0.5;
}

.type-of-scales__item-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 10px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 10" fill="none"><g opacity="0.5"><path d="M8 2.5V8.5H2" stroke="%230C0C0C" stroke-width="2"/><path d="M1 7.5V1.5H7" stroke="%230C0C0C" stroke-width="2"/></g></svg>');
}

.type-of-scales__item-message {
    background: #fff8c2;
    border: 1px solid #fff8c2;
    padding: 16px;
    font-size: 14px;
    color: #894a0b;
    display: flex;
    gap: 15px;
    align-items: center;
}

.type-of-scales__item-message-icon {
    width: 24px;
    height: 24px;
}

.type-of-scales__item-btn {
    width: 100%;
}

@media screen and (max-width: 1381.98px) {
	.type-of-scales__item-list ul {
	    min-height: 217px;
    }
}

@media screen and (max-width: 1199px) {
	.type-of-scales__item-list ul {
	    min-height: 266px;
    }
}

@media screen and (max-width: 1023.98px) {
    .type-of-scales__above-heading {
        margin-bottom: 4px;
    }

    .type-of-scales__heading {
        margin-bottom: 34px;
    }

    .type-of-scales__items {
        flex-direction: column;
        gap: 48px;
    }

    .type-of-scales__item {
        flex-basis: fit-content;
    }
	.type-of-scales__item-list ul {
	    min-height: 100%;
    }
}
@media screen and (min-width: 600px){
    .type-of-scales__item-content-wrapper{
        height: max-content;
        max-height: max-content!important;
    }
}
@media screen and (max-width: 599.98px) {
    .type-of-scales__items {
        gap: 16px;
    }

    .type-of-scales__heading {
        margin-bottom: 16px;
    }


    .type-of-scales__item-img {
        padding: 0;
        height: auto;
    }

    .type-of-scales__item-heading {
        margin-bottom: 0;
        position: relative;
        /*padding-right: 50px;*/
        display: flex;
        align-items: center;
        gap: 25px;
        justify-content: space-between;
        width: 100%;
        min-height: 61px;
    }

    .type-of-scales__item-heading::after {
        content: "";
        display: block;
        /*position: absolute;*/
        /*top: 50%;*/
        /*transform: translateY(-50%);*/
        /*right: 0;*/
        width: 24px;
        height: 24px;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTEgMUw3IDdMMTMgMSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIC8+Cjwvc3ZnPgo=');
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        transition: all 0.5s ease;
    }

    .type-of-scales__item-content-wrapper:has(.open) .type-of-scales__item-heading::after {
        transform: rotateX(-180deg);
    }

    .type-of-scales__item-content-wrapper {
        padding: 25px 24px 24px 24px;
        transition: max-height 1.5s;
        overflow: hidden;
    }


    .type-of-scales__item-list ul {
        flex-direction: column;
    }

    .type-of-scales__item-btn {
        display: none;
    }

    .type-of-scales__item-message {
        background: #ffc91a;
    }

    .type-of-scales__item-accordion-content {
        padding-top: 19px;
    }
}