/* COMPARISON BLOCK  */

.comparison-element {
    font-family: "Open Sans", sans-serif;
}
@media (max-width: 1150px) {
    .comparison-element__container {
        padding: 96px 20px;
    }
}
@media (max-width: 992px) {
    .comparison-element__container {
        padding: 88px 20px;
    }
}

@media (max-width: 480px) {
    .comparison-element__container {
        padding: 88px 15px;
    }
}

.comparison-element__title {
    font-size: 48px;
    line-height: 60px;
    font-weight: 600;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media (max-width: 992px) {
    .comparison-element__title {
        font-size: 36px;
        line-height: 44px;
    }
}
@media (max-width: 480px) {
    .comparison-element__title {
        font-size: 24px;
        line-height: 32px;
    }
}
.comparison-element__table-wrapper {
    max-width: 1024px;
    width: 100%;
    margin: 64px auto 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.comparison-element__table-wrapper {
    max-width: 1024px;
    width: 100%;
    margin: 64px auto 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* background: #c2cfdd; */
    /* padding-bottom: 16px;  */
}

.comparison-element__table-wrapper {
    max-width: 1024px;
    width: 100%;
    margin: 64px auto 0 auto;
    overflow-x: scroll;
    /* -webkit-overflow-scrolling: touch; */
}

.comparison-element__table-wrapper {
    max-width: 1024px;
    width: 100%;
    margin: 64px auto 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-element__table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.comparison-element__table-wrapper::-webkit-scrollbar-track {
    background: #c0cddb;
    border-radius: 8px;
}

.comparison-element__table-wrapper::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 4px;
}

.comparison-element__table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #f0f0f0;
}

@media (max-width: 480px) {
    .comparison-element__table-wrapper {
        margin: 48px auto 0 auto;
    }
}
.comparison-element__table {
    border-collapse: collapse;
    border-radius: 4px;
    overflow: hidden;
    min-width: 700px;
}

.comparison-element__table thead tr {
    background: #007aff;
    color: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    font-weight: 600;
}
.comparison-element__table thead th:first-child {
    padding: 16px;
}
.comparison-element__table thead th:not(:first-child) {
    padding: 16px 50px;
}
.comparison-element__table thead th {
    font-size: 18px;
    line-height: 1.5;
    text-transform: unset;
    letter-spacing: -0.04em;
    min-width: 197px;
    white-space: nowrap;
}
.comparison-element__table tbody tr:nth-child(even) {
    background: #f8fafc;
}
.comparison-element__table tbody tr:nth-child(odd) {
    background: #ffffff;
}
.comparison-element__table tbody tr td {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #364152;
}
.comparison-element__table tbody tr td:not(:first-child) {
    padding: 16px 40px;
}
.comparison-element__table tbody tr td:first-child {
    font-weight: 600;
    color: #121926;
    padding: 16px;
}
