.product-features-container {
    background-color: var(--background_color);
    margin-bottom: 15px;
}

.features-top-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.features-top-container-header {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.features-top-container-header.big.image-left {
    position: relative;
    max-width: unset;
}

.features-toggle {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0;
    padding: 0;
    float: unset;
    z-index: 2;
}

.features-toggle:hover {
    background: unset;
}

.features-toggle.up {
    background-color: rgba(255, 255, 255, 0.7);
}

.features-toggle.down {
    background: none;
}

.features-toggle.down .svg-container {
    transform: rotate(180deg);
}

.features-toggle .svg-container {
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-toggle svg {
    width: 60%;
    height: 60%;
}

.features-header {
    color: var(--header_text_color);
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s;
    cursor: pointer;
}

.features-header.big.image-left {
    left: calc(44% + 0.56%);
}

.features-header.big {
    font-size: 44px;
    font-weight: 700;
    line-height: 90px;
}

.features-header.small {
    font-size: 33px;
    line-height: 74px;
    font-weight: 700;
}

.features-bar {
    color: var(--header_text_color);
    max-width: 1440px;
    margin: 0 auto;
    height: 74px;
    cursor: pointer;
}

.features-bar.closed-start {
    display: none;
}

.features-contents-inner.image-present {
    display: flex;
}

.features-contents-inner.reverse-order {
    flex-direction: row-reverse;
}

.features-contents.closed-start {
    display: none;
}

.features-text-container {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 40px;
}

.features-text-container.image-present {
    width: 56%;
}

.features-text-container-inner.image-present {
    max-width: calc(100% - ((100vw - 1440px) / 2));
    padding-right: 20px;
    margin-left: auto;
    margin-right: 0;
}

.features-text-container-inner.image-present.image-left {
    margin-left: unset;
    margin-right: unset;
    padding-right: 0;
}

.features-separator {
    background-color: var(--header_text_color);
    width: 70px;
    height: 8px;
    margin-bottom: 20px;
}

.features-text {
    color: var(--body_text_color);
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
}

.features-text.image-present.image-left {
    margin-left: 0;
}

.features-text ul li {
    position: relative;
    padding-left: 16px;
}

.features-text ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Fix for bullets appearing too large on iOS devices */
@supports (-webkit-touch-callout: none) {
    .features-text ul li::before {
        font-size: 10px;
    }
}

.features-image {
    width: 44%;
}

.features-image.blend img {
    mix-blend-mode: multiply;
}

.features-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: var(--image_max_height);
    object-fit: cover;
}

.features-image.contain-img img {
    object-fit: contain;
}

.features-toggle:focus,
.features-bar:focus,
.features-header:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--arrow_color);
}

@media screen and (min-width: 1471px) {
    .features-text-container.image-present.image-left {
        margin-left: 1%;
    }
}

@media screen and (max-width: 1470px) {
    .features-top-container,
    .features-top-container-header,
    .features-bar,
    .features-text-container {
        padding-left: 3%;
        padding-right: 3%;
    }

    .features-header {
        left: 3%;
    }

    .features-header.big.image-left {
        left: calc(44% + 2.56%);
    }
}

@media screen and (max-width: 767px) {
    .features-text-container.image-present,
    .features-image {
        width: 100%;
    }

    .features-contents-inner.image-present {
        flex-direction: column;
    }

    .features-header.big.image-left {
        left: 3%;
    }
}

@media screen and (max-width: 450px) {
    .features-toggle.up {
        top: 17px;
    }

    .features-text-container {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .features-header.big {
        font-size: 40px;
        line-height: 80px;
    }

    .features-header.small {
        font-size: 33px;
        line-height: 74px;
    }
}
