table, tr, th, td{
    margin: 0;
    padding: 0;
    border: 0;
}

.table{
    display: inline;
    width: 100%;
    overflow-x: scroll;
}

.table-tariffs{
    width: 100%;
    border-collapse: collapse;
    position: relative;
}

.t-t-tr:hover{
    background-color: #f5f5f5;
    transition: all 100ms ease-in;
}

.t-t-th{
    background-color: #3F74FF;
    color: #fff;
    font-weight: 600;

    padding: 15px;
    border: 1px solid #ccc;
    width: 250px;
    text-align: center;
}

.t-t-td{
    padding: 15px;
    border: 1px solid #ccc;
    width: 250px;
}

.icon-table{
    background-image: url(../img/check-green.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 25px;
    height: 25px;
    margin: 0 auto;
}

.icon-table-none{
    background-image: url(../img/remove-red.svg) !important;
}

.question{
    width: 25px;
    height: 25px;
    background-image: url(../img/question.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.flex-row-table-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}



.question {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip {
    visibility: hidden;
    width: 275px;
    background-color: #626468;
    color: #fff;
    border-radius: 10px;
    padding: 15px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -135px;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.question:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.margin-top-70{
    margin-top: 70px;
}