.w41-comparison-table-static__wrapper {
    max-width: 100vw;
    max-height: 80vh;
    overflow: hidden;
}

.w41-comparison-table-static__wrapper [role="region"][aria-labelledby][tabindex] {
    max-width: 100%;
    max-height: 80vh;
    overflow: auto;
    position: relative;
}

.w41-comparison-table-static__wrapper [role="region"][aria-labelledby][tabindex]:focus #scroll-hint {
    -webkit-animation: fadeInOut 3s ease-out;
    -moz-animation: fadeInOut 3s ease-out;
    -o-animation: fadeInOut 3s ease-out;
    animation: fadeInOut 3s ease-out;
}

.w41-comparison-table-static__wrapper [role="region"][aria-labelledby][tabindex]:hover,
.w41-comparison-table-static__wrapper [role="region"][aria-labelledby][tabindex]:focus {
    outline: none;
}

.w41-comparison-table-static__wrapper table {
    margin: 0;
    border: none;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    justify-content: space-between;
    font-family: "Work Sans";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #001d18;
    border: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.w41-comparison-table-static__wrapper table td,
.w41-comparison-table-static__wrapper table th {
    padding: 5px 10px;
    vertical-align: top;
    text-align: left;
    border-bottom: 2px solid rgba(11, 64, 55, 0.5);
}

.w41-comparison-table-static__wrapper table thead {
    position: sticky;
    top: 0;
    z-index: 3;
    background: white;
}

.w41-comparison-table-static__wrapper table thead th {
    width: 120px;
    vertical-align: bottom;
    border-right: 2px solid rgba(11, 64, 55, 0.5);
    background: white;
}

.w41-comparison-table-static__wrapper table thead th:first-child {
    position: sticky;
    left: 0;
    padding-left: 0;
}

.w41-comparison-table-static__wrapper table thead tr:nth-child(2) th:first-child {
    vertical-align: top;
    font-weight: 400;
}

.w41-comparison-table-static__wrapper table tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
    padding-left: 0;
    font-weight: 400;
    background-color: white;
    border-right: 2px solid rgba(11, 64, 55, 0.5);
}

.w41-comparison-table-static__wrapper table tbody td,
.w41-comparison-table-static__wrapper table thead td {
    border-right: 2px dashed rgba(11, 64, 55, .5);
}

.w41-comparison-table-static__wrapper table tbody td:nth-child(6),
.w41-comparison-table-static__wrapper table thead td:nth-child(6) {
    background-color: rgba(143, 0, 10, .2);
}

.w41-comparison-table-static__wrapper table thead th p,
.w41-comparison-table-static__wrapper table tbody th p {
    display: block;
    margin-bottom: 4px;
    font-size: 0.75em;
    line-height: 130%;
}

.w41-comparison-table-static__wrapper #scroll-hint {
    font-family: "Work Sans";
    position: fixed;
    display: block;
    width: 240px;
    height: auto;
    left: calc(50vw - 135px);
    top: 25%;
    padding: 15px;
    background-color: #f5f5f5;
    color: rgba(11, 64, 55, 0.8);
    box-shadow: 0 0 100px #bbb;
    /*rgba(11, 64, 55, 0.6);*/
    border-radius: 15px;
    z-index: 10;
    text-align: center;
    opacity: 0;
}

@-webkit-keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}