.options {
    margin-top: 30px;
}
.options .item {
    box-shadow: 0px 0px 25px 0px #DBEAFE80;
    border-radius: 35px;
    overflow-x: hidden;
    margin-bottom: 40px;
}
.options .item .name {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 68px;
    border-radius: 68px;
    background: linear-gradient(180deg, #003EF5 0%, #002FB9 100%);
}
.options .item:nth-child(2n + 2) .name {
    background: linear-gradient(180deg, #66DAF4 0%, #19B5D0 100%);
}
.options .item:nth-child(3n + 3) .name {
    background: linear-gradient(180deg, #7166F4 0%, #1940D0 100%);
}
.options .item .table {
    margin-top: 10px;
}
.options .item .table .td {
    padding: 20px 40px 20px 20px;
    font-size: 18px;
    color: #1F2937;
}
.options .item .table .td-h {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}
.options .item .table .td-h:nth-child(3) {
    padding-right: 58px;
}
.options .item .table .tr:nth-child(2n + 2) .td {
    background: #F1F9FF;
}
.options .item .table .price {
    display: inline-block;
    font-size: 16px;
    color: #000;
    line-height: 35px;
    background: #DBEAFE;
    border-radius: 35px;
    padding: 0 20px;
}
.options .title {
    display: none;
}
@media (max-width: 840px) {
    .options {
        margin-top: 60px;
        padding: 0 16px;
    }
    .options .title {
        display: block;
        font-size: 25px;
        font-weight: 600;
        text-align: center;
    }
    .options .items {
        margin-top: 14px;
    }
    .options .item {
        display: none;
        border-radius: 17px;
        margin-bottom: 0;
    }
    .options .item:nth-child(1) {
        display: block;
    }
    .options .item .name {
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        text-align: center;
        line-height: 34px;
        border-radius: 34px;
    }
    .options .item .table {
        display: block;
    }
    .options .item .table .price {
        padding: 0 10px;
    }
    .options .item .table .td {
        padding: 0;
        font-size: 17px;
    }
    .options .item .table .td-h {
        font-size: 16px;
        font-weight: 400;
    }
    .options .item .table .td-h:nth-child(2) {
        display: none;
    }
    .options .item .tr-h {
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
    }
    .options div.tr-line {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 0;
    }
    .options div.tr-line .td:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
        padding: 12px 14px 8px 0;
        font-size: 17px;
    }
    .options div.tr-line .td:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        padding: 0 14px 12px 0;
        font-size: 14px;
    }
    .options div.tr-line .td:nth-child(3) {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
        padding: 13px;
    }
    .options .item .table .tr .td {
        background: #F1F9FF;
    }
    .options .item .table .tr:nth-child(2n + 2) .td {
        background: #fff;
    }
    .options .item .table .tr:nth-child(1) .td {
        background: #fff;
    }
}