.lists_component_module {
    padding-bottom: 24px;
    max-width: 66.66666667%;
    margin: 0 auto;
}

.lists_component_module .lists_wrapper .list_block {
    padding-bottom: 50px;
}

.lists_component_module .lists_wrapper .list_block:last-child {
    padding-bottom: 0;
}

.lists_component_module .list_block {
    margin: 0 auto;
}

.lists_component_module .list_block.no_bg {
    padding: 0 !important;
}

/* Accordion start */

.lists_component_module .accordion {
    color: var(--soltech-color--violet);
}

.lists_component_module .accordion .list_content .list_item {
    background: var(--soltech-color--light-beige);
    margin-bottom: 1px;
    transition: background-color ease-in-out 0.2s;
}

.lists_component_module .accordion .list_content .list_item:nth-child(even) {
    background: #fde3c9;
}

.lists_component_module .accordion .list_content .list_item.open {
    background: transparent;
}

.lists_component_module .accordion .list_content .item_title {
    position: relative;
    font-size: 18px;
    padding: 18px 48px 18px 24px;
    cursor: pointer;
}

.lists_component_module .accordion .list_content .plus {
    position: absolute;
    content: '';
    width: 13px;
    height: 13px;
    margin-top: -6.5px;
    top: 50%;
    right: 17px;
}

.lists_component_module .accordion .list_content .plus::before {
    position: absolute;
    content: '';
    background: var(--soltech-color--violet);
    width: 100%;
    height: 1px;
    margin-top: -0.5px;
    top: 50%;
    left: 0;
}

.lists_component_module .accordion .list_content .plus::after {
    position: absolute;
    content: '';
    background: var(--soltech-color--violet);
    width: 1px;
    height: 100%;
    margin-left: -0.5px;
    top: 0;
    left: 50%;
    transition: transform ease-in-out 0.2s;
}

.lists_component_module .accordion .list_item.open .plus::after {
    transform: rotate(90deg);
}

.lists_component_module .accordion .list_content .item_text {
    line-height: 1.5;
    padding: 0 24px 18px 24px;
    display: none;
}

/* Accordion end */

/* Icons start */

.lists_component_module .icons {
    color: var(--soltech-color--violet);
}

.lists_component_module .icons .list_block {
    padding: 24px;
}

.lists_component_module .icons .list_block:not(.no_bg) {
    background: var(--soltech-color--light-beige);
}

.lists_component_module .icons .list_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.lists_component_module .icons .list_item:last-child {
    margin-bottom: 0;
}

.lists_component_module .icons .item_icon {
    padding: 0 24px 0 12px;
}

.lists_component_module .icons .item_icon img {
    max-width: 36px;
    width: 100%;
}

.lists_component_module .icons .item_content {
    flex: 1;
}

.lists_component_module .icons .item_title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.33;
}

.lists_component_module .icons .item_text {
    line-height: 1.5;
}

/* Icons end */

/* Downloads start */

.lists_component_module .downloads .list_title {
    color: var(--soltech-color--violet);
}

.lists_component_module .downloads .list_item {
    position: relative;
    display: block;
    padding: 18px 48px 18px 24px;
    text-decoration: none;
    color: var(--soltech-color--violet);
    border-top: 1px solid;
    border-left: 1px solid;
    border-right: 1px solid;
    border-color: var(--soltech-color--violet);
    transition: all ease-in-out 0.2s;
}

.lists_component_module .downloads .list_item:hover {
    background: var(--soltech-color--violet);
    color: var(--soltech-color--bright-beige);
}

.lists_component_module .downloads .list_item:last-child {
    border-bottom: 1px solid;
}

.lists_component_module .downloads .download_icon {
    position: absolute;
    width: 13px;
    margin-top: -6.5px;
    top: 50%;
    right: 17px;
}

.lists_component_module .downloads .url_icon {
    position: absolute;
    width: 30px;
    transform: translateY(-50%);
    top: 50%;
    right: 17px;
}

.lists_component_module .downloads .download_icon svg, .lists_component_module .downloads .url_icon svg {
    width: 100%;
    height: 100%;
}

.lists_component_module .downloads .item_title {
    font-size: 18px;
    line-height: 1.33;
}

/* Downloads end */

@media (max-width: 1200px) {
    .lists_component_module .list_block.col-4 {
        width: 50%;
    }

    .lists_component_module.col-md-4 {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .lists_component_module.col-md-4 {
        width: 50%;
    }

    .lists_component_module {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .lists_component_module .list_block.col-4,
    .lists_component_module .list_block.col-6 {
        width: 100%;
    }

    .lists_component_module.col-md-4 {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .lists_component_module .list_block.col-4,
    .lists_component_module .list_block.col-6 {
        width: 100%;
    }

    .lists_component_module .icons .item_icon {
        padding: 0 24px 0 2px;
    }
}