body {
    margin: 0;
}

.container {
    max-width: 1318px;
    margin: 0 auto;
}

.table {
    display: flex;
    flex-direction: column;
    gap: 8px 0;
    padding: 0 20px;
    overflow-x: scroll;
    padding-bottom: 8px;
}

@media (max-width: 767px) {
    .table {
        padding: 0 10px;
        padding-bottom: 8px;
    }
}

.table::-webkit-scrollbar {
  height: 8px; /* controls scrollbar thickness */
  background: transparent; /* removes track background */
}

.table::-webkit-scrollbar-track {
  background: transparent; /* hides the track */
  margin-right: 20px;
  margin-left: 20px;
}

@media (max-width: 767px) {
    .table::-webkit-scrollbar-track {
        margin-right: 10px;
        margin-left: 10px;
    }
}

.table::-webkit-scrollbar-thumb {
    background-color: #D8D8D8; /* optional thumb color */
    border-radius: 4px;
}

.table::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.table-header {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

.table-row:hover {
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.14);
}

.table-header,
.table-row {
    min-width: 1137px;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: background .3s, border .3s, box-shadow .3s, transform .3s;
}

.table-row {
    cursor: pointer;
}

.table-row.active {
    border-color: rgb(245, 130, 32);  
    box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.14);
}

.table-row.active::before {
    background: #FEF9F5;
}

@media (max-width: 1024px) {
    .table-header,
    .table-row {
        border-radius: 12px;
    }
}

@media (max-width: 767px) {
    .table-header,
    .table-row {
        border-radius: 8px;
    }
}

.table-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: white;
    border: none;
    transition: background-color 0.3s ease 0.3s;
}

.table-row:hover::before { 
    background: #FEF9F5;
}

.table-cell {
    padding-right: 8px;
    width: 100%;
}

.table-cell:first-child,
.table-cell:last-child {
    padding-left: 20px;
}

.table-cell:nth-child(1) {
    min-width: clamp(108px, 2vw, 100px);
    max-width: 108px;
}

.table-cell:nth-child(2) {
    min-width: clamp(90px, 2vw, 90px);
    max-width: 90px;
}

.table-cell:nth-child(3) {
    min-width: clamp(90px, 2vw, 90px);
    max-width: 90px;
}

.table-cell:nth-child(4) {
    min-width: clamp(138px, 2vw, 128px);
}

.table-cell:nth-child(5) {
    min-width: clamp(135px, 9vw, 145px);
}

.table-cell:nth-child(6) {
    min-width: clamp(102px, 9vw, 138px);
}

.table-cell:nth-child(7) {
    min-width: clamp(131px, 9vw, 131px);
}

.table-cell:nth-child(8) {
    min-width: clamp(106px, 9vw, 131px);
}

.table-cell:nth-child(9) {
    min-width: clamp(186px, 28vw, 277px);
}

.table-cell:nth-child(2) {
    display: flex;
    justify-content: center;
}

.table-cell span {
    font-family: "Archivo", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 80px;
    color: #394153; 
    display: flex;
    align-items: center;
}

.table-row .table-cell span {
    font-size: 20px;
    font-weight: 400;
    position: relative;
    z-index: 1;   
}

@media (max-width: 1024px) {
    .table-cell span {
        font-size: 16px;
        line-height: 60px;
        font-weight: 400;
    }
}

@media (max-width: 767px) {
    .table-cell span {        
        line-height: 48px;
    }

    .table-row .table-cell span {
        font-size: 16px;
    }
}

.table-row .tba {
    font-family: "Archivo", Sans-serif;
    font-size: 15px !important;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 34px;
    letter-spacing: -0.23px;
    color: #394153;
    padding: 0 30px;
    background-color: rgba(57, 65, 83, 0.08);
    border-radius: 50px;
    display: inline-block;
}

@media (max-width: 767px) {
    .table-row .tba {       
        line-height: 26px;
        padding: 0 20px;
    }
}

.table-cell span .discount {
    color: rgb(245, 130, 32);
    font-size: 15px;
    font-weight: 400;
    text-decoration-line: line-through;
    margin-right: 12px;
    text-transform: uppercase;
}

.stw-tooltip {
    position: relative;
    top: 50%;
    right: -2px;
    display: inline-block;
    cursor: pointer;
    width: 12px;
    height: 12px;
    background-color: #394153;
    margin-top: -4px;
    line-height: 12px;
    font-size: 10px;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 50px;
    font-weight: 700;
    color:#fff;
}

.table-header {
    overflow: visible;
}

.table-header .table-cell {
    display: flex;
    align-items: center;
    position: relative;
}

.stw-tooltiptext {
    visibility: hidden;
    width: 220px;
    background-color: #E8F3DA;
    text-align: center;
    border-radius: 6px;
    padding: 12px 16px;
    position: absolute;
    z-index: 1;
    top: calc(50% + 20px);
    left: 6px;
    margin-left: -110px;
    z-index: 2;
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
}

.stw-tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #E8F3DA transparent;
}

.stw-tooltip:hover .stw-tooltiptext {
    visibility: visible;
}

.stw-tooltiptext ul,
.stw-tooltiptext p {
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 140%;
    text-align: left;
    list-style: none; 
    padding-left: 10px;
    color: #394153;
}

.stw-tooltiptext p {
    padding: 0;
}

.stw-tooltiptext ul li:not(:last-child) {
    margin-bottom: 2px;
}

.stw-tooltiptext ul li::before {
    content: "•";
    position: absolute;
    left: 10px;
}

/* .stw-tb-plan-btn:not(.active) .elementor-button {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.6;
    text-decoration: none;
} */