/* blog table start */
.blog-table {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d4def1;
    background: #fff;
    box-shadow: 4px 4px 14px 0px rgba(12, 63, 90, 0.08);
    box-sizing: border-box;
    color: #1d1e1f;
}

.blog-table * {
    box-sizing: border-box;
}

.blog-table .blog-table-item {
    width: 100%;
}

.blog-table .blog-table-item-header {
    height: 34px;
    display: flex;
    background: #d4def1;
    padding: 5px 0;
}

.blog-table .blog-table-item:first-of-type .blog-table-item-header {
    border-radius: 10px 10px 0px 0px;
}

.blog-table .blog-table-item__title {
    font-size: 18px;
    font-weight: 500;
    padding: 0 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-table .blog-table-item__pos {
    position: relative;
    right: 4px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px 0;
    background: #0b5e8a;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 156%;
}

.blog-table .blog-table-item:nth-of-type(1) .blog-table-item__pos,
.blog-table .blog-table-item:nth-of-type(2) .blog-table-item__pos,
.blog-table .blog-table-item:nth-of-type(3) .blog-table-item__pos {
    background: #fc1e2b;
}

.blog-table .blog-table-item-body {
    display: flex;
}

.blog-table .blog-table-item-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 16px;
}

.blog-table .blog-table-item-col:not(:last-of-type) {
    box-shadow: 4px 4px 8px 0px rgba(12, 63, 90, 0.04);
}

.blog-table .blog-table-item-col:first-of-type {
    max-width: 145px;
    align-items: center;
}

.blog-table .blog-table-item-col:last-of-type {
    max-width: 181px;
    align-items: center;
}

.blog-table .blog-table-item__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 113px;
    height: 65px;
    border-radius: 6px;
    border: 1px solid #d4def1;
    margin-bottom: 8px;
}

.blog-table .blog-table-item__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-table .blog-table-item-rating {
    display: flex;
    align-items: center;
}

.blog-table .blog-table-item-rating__value {
    font-size: 14px;
    color: #8e9baf;
}

.blog-table .blog-table-item-rating__value::before {
    content: url("/local/templates/directline_2020/images/blog/blog_table_star.svg");
    position: relative;
    top: 3px;
    margin-right: 5px;
}

.blog-table .blog-table-item-rating__value span {
    color: #1d1e1f;
    font-size: 16px;
    font-weight: 500;
}

.blog-table .blog-table-item-tooltip {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 6px;
}

.blog-table .blog-table-item-tooltip__icon {
    width: 16px;
    height: 16px;
    background: url("/local/templates/directline_2020/images/blog/blog_table_tooltip.svg") 0 0 no-repeat;
    margin-top: 2px;
    cursor: pointer;
}

.blog-table .blog-table-item-tooltip__content {
    display: none;
    width: max-content;
    max-width: 500px;
    position: absolute;
    bottom: 20px;
    left: -30px;
    border-radius: 4px;
    border: 1px solid #d4def1;
    background: #f3f6fb;
    box-shadow: 2px 4px 4px 0px rgba(12, 63, 90, 0.08);
    padding: 8px 12px;
    font-size: 14px;
    line-height: 156%;
    z-index: 1;
}

.blog-table .blog-table-item-tooltip__icon:hover + .blog-table-item-tooltip__content,
.blog-table .blog-table-item-tooltip__content:hover {
    display: block;
}

.blog-table .blog-table-item__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #fc1e2b;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
}

.blog-table .blog-table-item__link {
    font-size: 14px;
    font-weight: 500;
    color: #0b5e8a;
    margin-top: 12px;
    background: none;
    border-bottom: 1px dashed #0b5e8a;
    line-height: 1;
}

.blog-table .blog-table-item-col:first-of-type .blog-table-item__link {
    display: none;
}

.blog-table .blog-table-item__text {
    font-size: 14px;
    line-height: 144%;
}

.blog-table .blog-table-item__text:not(:last-of-type) {
    margin-bottom: 12px;
}

.blog-table .blog-table-item__prop {
    color: #8e9baf;
}

.blog-table .blog-table-item__value {
    font-size: 16px;
    font-weight: 500;
}

.blog-table .blog-table-item__list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-table .blog-table-item__list li {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 136%;
    padding-left: 17px;
    margin: 0;
}

.blog-table .blog-table-item__list li:not(:last-of-type) {
    margin-bottom: 8px;
}

.blog-table .blog-table-item__list li::before {
    position: absolute;
    left: -5px;
}

.blog-table .blog-table-item__list_check li::before {
    content: url("/local/templates/directline_2020/images/blog/blog_table_check.svg");
}

.blog-table .blog-table-item__list_pros li::before {
    content: url("/local/templates/directline_2020/images/blog/blog_table_plus.svg");
}

.blog-table .blog-table-item__list_cons li::before {
    content: url("/local/templates/directline_2020/images/blog/blog_table_minus.svg");
}

.blog-table .blog-table-item__list_plus li {
    width: max-content;
    padding-left: 0;
    padding-right: 20px;
}

.blog-table .blog-table-item__list_plus li::before {
    content: url("/local/templates/directline_2020/images/blog/blog_table_big_plus.svg");
    top: -6px;
    left: auto;
    right: -15px;
}

@media (max-width: 768px) {
    .blog-table {
        border: none;
    }

    .blog-table .blog-table-item-body {
        flex-direction: column;
    }

    .blog-table .blog-table-item-col {
        position: relative;
        width: 100%;
        max-width: none !important;
    }

    .blog-table .blog-table-item-col:first-of-type {
        flex-direction: row;
        gap: 20px;
    }

    .blog-table .blog-table-item__button {
        width: 90%;
    }

    .blog-table .blog-table-item__logo {
        margin-bottom: 0;
    }

    .blog-table .blog-table-item__link {
        margin-top: 0;
    }

    .blog-table .blog-table-item-col:first-of-type .blog-table-item__link {
        display: block;
    }

    .blog-table .blog-table-item-col:last-of-type .blog-table-item__link {
        display: none;
    }

    .blog-table .blog-table-item-tooltip {
        position: static;
    }

    .blog-table .blog-table-item-tooltip__content {
        width: 100%;
        left: 0;
        bottom: calc(100% - 15px);
    }
}

@media (max-width: 576px) {
    .blog-table .blog-table-item-header {
        height: 54px;
    }

    .blog-table .blog-table-item-col {
        padding: 12px;
    }

    .blog-table .blog-table-item-col:first-of-type {
        justify-content: space-between;
        gap: 4px;
    }

    .blog-table .blog-table-item__title {
        display: flex;
        align-items: center;
        font-size: 14px;
        line-height: 132%;
        overflow: visible;
        white-space: normal;
    }

    .blog-table .blog-table-item__pos {
        height: 58px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .blog-table .blog-table-item__logo {
        width: 67px;
        height: 39px;
    }
}
/* blog table end */