.box-pricing-calculator .pricing-grid {
    display: flex;
    align-items: stretch;
    position: relative;
}

.box-pricing-calculator .pricing-form-col {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background: #fff;
    border-radius: 36px;
    padding: 15px;
    box-sizing: border-box;
    align-self: stretch;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        min-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.box-pricing-calculator .pricing-summary-col {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: calc(37% - 12px);
    max-width: calc(37% - 12px);
    min-width: 0;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    pointer-events: none;
    transition: opacity 0.25s ease,
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0s linear 0.4s;
}

.box-pricing-calculator[data-summary-open="true"] .pricing-form-col {
    width: calc(63% - 12px);
    max-width: calc(63% - 12px);
}

.box-pricing-calculator[data-summary-open="true"] .pricing-summary-col {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    transition: opacity 0.3s ease 0.35s,
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.35s,
        visibility 0s linear;
}

.box-service-pricing .info-right .service-pricing-summary {
    display: none;
    margin-top: 20px;
    background: #0972CE1A;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(5, 54, 96, 0.06);
}

.box-service-pricing .info-right[data-summary-open="true"] .service-pricing-summary {
    display: block;
}

.box-service-pricing .info-right[data-summary-open="true"] .btn-bg-text {
    display: none;
}

.box-service-pricing .info-right .service-pricing-summary .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #0972CE1A;
    font-size: 18px;
    color: var(--color-text);
}

.box-service-pricing .info-right .service-pricing-summary .summary-row:last-of-type {
    border-bottom: none;
}

.box-service-pricing .info-right .service-pricing-summary .summary-row-label {
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.box-service-pricing .info-right .service-pricing-summary .summary-row-value {
    font-weight: 600;
    color: var(--color-text);
}

.box-service-pricing .info-right .service-pricing-summary .summary-info-icon {
    display: inline-flex;
    align-items: center;
    cursor: help;
}

.box-service-pricing .info-right .service-pricing-summary .summary-action {
    margin-top: 16px;
}

.title-left-cart .title-optional {
    font-size: 16px;
    font-weight: 500;
    color: #6c7a89;
    margin-left: 6px;
}

.addons-grid {
    /* margin-bottom: 24px; */
}

.addons-grid .row {
    margin-left: -8px;
    margin-right: -8px;
}

.addons-grid .row>div {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 12px;
}

.addon-card {
    position: relative;
    display: flex;
    gap: 12px;
    border: 1px solid #EEEEEE;
    background: #fff;
    border-radius: 16px;
    padding: 19px;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
    margin: 0;
    min-height: 64px;
    height: 100%;
}

.addon-card:hover {
    border-color: #43A3F7;
}

.addon-card .addon-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.addon-card .addon-check-box {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 1.5px solid #b9c4d3;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, border-color .15s ease;
}

.addon-card .addon-check-box svg {
    width: 12px;
    height: 12px;
    opacity: 0;
}

.addon-card.is-checked,
.addon-card:has(.addon-check:checked) {
    border-color: #0972CE1A;
    background: #0972CE1A;
}

.addon-card.is-checked .addon-check-box,
.addon-card:has(.addon-check:checked) .addon-check-box {
    background: var(--bg-highlight-light);
    border-color: #1A77D4;
}

.addon-card.is-checked .addon-check-box svg,
.addon-card:has(.addon-check:checked) .addon-check-box svg {
    opacity: 1;
}

.addon-card .addon-body {
    flex: 1 1 auto;
    min-width: 0;
}

.addon-card .addon-title {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.addon-card .addon-icon-mini {
    color: #053660;
    display: inline-flex;
}

.addon-card .addon-icon-mini .addon-icon-img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.addon-card .addon-info {
    color: #a0adbf;
    display: inline-flex;
    cursor: help;
}

.addon-card .addon-desc {
    display: block;
    color: #3A464F;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 400;
}

.addon-card .addon-price {
    color: var(--color-text);
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
    margin-left: 6px;
}

.addon-card .addon-popular {
    position: absolute;
    top: -8px;
    right: 12px;
    background: linear-gradient(90deg, #5B5BFF 0%, #7A4CFF 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 999px;
    line-height: 1.4;
}

.estimate-action {
    margin-top: 24px;
}

.pricing-summary-inner {
    background: #0972CE1A;
    border-radius: 32px;
    padding: 0;
    overflow: hidden;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.summary-top {
    position: relative;
    padding: 20px;
    color: #fff;
    background: linear-gradient(93.79deg, #0972CE 1.77%, #43A3F7 97.2%);
    border-radius: 24px;
}

.summary-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: none;
    overflow: hidden;
}

.summary-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    opacity: .85;
    margin-bottom: 4px;
}

.summary-total {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 6px;
}

.summary-note {
    font-size: 12px;
    margin-bottom: 12px;
}

.summary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.summary-tag {
    background: #FFFFFF1A;
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 999px;
}

.summary-section {
    padding: 16px 22px;
    background: #fff;
    border-radius: 24px;
}

.summary-section:first-of-type {
    border-top: 0;
}

.summary-section-title {
    font-size: 12px;
    font-weight: 600;
    color: #9FAEB9;
    margin-bottom: 0;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    font-size: 16px;
    color: var(--color-text);
    border-bottom: 1px solid #edf5fc;
}

.summary-row-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.summary-info-icon {
    color: #b9c4d3;
    display: inline-flex;
    cursor: help;
    align-items: center;
    position: relative;
    top: -1px;
}

.summary-row-value {
    color: #053660;
    font-weight: 600;
    text-align: right;
}

.box-pricing-calculator .top-pricing-calculator .item {
    margin-bottom: 15px;
}

.box-pricing-calculator .top-pricing-calculator .input-group input {
    border-radius: 16px;
    background: #FAFAFA;
    font-size: 16px;
    border: 0;
    height: 56px;
    padding: 15px;
}

.box-pricing-calculator .top-pricing-calculator .input-group input.error-validation {
    /* border: 1px solid #dc3545 !important; */
    box-shadow: 0 0 0 0.1rem #dc3545;
}

.box-faq-pricing {
    padding: 80px 0;
}

.box-faq-pricing .before img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.box-faq-pricing .after img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.box-faq-pricing .section-home-faq {
    position: relative;
    z-index: 2;
    padding: 0;
}

.box-pricing-calculator .top-pricing-calculator .item>.row {
    display: flex;
    align-items: center;
}

.bottom-pricing-calculator .label-value {
    color: var(--color-text);
}

.bottom-pricing-calculator .dsc {
    margin-bottom: 15px;
}

.modal-in-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: #c3e3ff;
    padding: 10px;
    border-radius: 16px;
}

.modal-in-cart .warp-cart .inter-cart .inter-content {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #fff;
    cursor: pointer;
}

.modal-in-cart .warp-cart .inter-cart .inter-content .icon {
    margin-right: 15px;
}

.modal-in-cart .warp-cart .inter-cart .inter-content .icon img {
    width: 30px;
    height: 30px;
}

.service-selection .title {
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.service-radio-group .form-check {
    border: 0;
    border-radius: 32px;
    margin-bottom: 10px;
    transition: all 0.3s;
    cursor: pointer;
    padding: 0;
}

.service-radio-group .form-check:hover {
    /* border-color: #007bff; */
    /* background: #f0f8ff; */
}

.service-radio-group .form-check-input {
    margin-top: 0.4rem;
    cursor: pointer;
    opacity: 0;
}

.service-radio-group .form-check-input:checked~.form-check-label {
    color: #fff;
    background: var(--color-text);
}

.service-radio-group .form-check-label {
    cursor: pointer;
    width: 100%;
    padding-left: 0;
    text-align: center;
    color: rgba(5, 54, 96, 1);
    padding: 12px 15px;
    background: rgba(9, 114, 206, 0.1);
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-direction: column;
}

.service-radio-group .service-price {
    margin-left: auto;
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
}

.box-pricing-calculator {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 40px;
}

.modal-in-cart .warp-cart {
    flex-basis: calc(50% - 40px);
    max-width: calc(50% - 40px);
}

.modal-in-cart .warp-cart .inter-cart .name {
    font-size: 18px;
    color: var(--color-text);
    font-weight: 600;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.title-left-cart {
    font-size: 24px;
    color: var(--color-text);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-selection {
    margin-bottom: 30px;
}

.top-pricing-calculator>.row {
    margin-left: -15px;
    margin-right: -15px;
}

.top-pricing-calculator>.row>div {
    padding-left: 15px;
    padding-right: 15px;
}

.box-pricing-calculator .top-pricing-calculator .item .title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.box-pricing-calculator .calculate-right {
    background: #e2ecf6;
    padding: 25px;
    border-radius: 24px;
    height: calc(100% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box-pricing-calculator .calculate-right .cart-select {
    background: #fff;
    padding: 15px;
    border-radius: 24px;
    margin-bottom: 40px;
}

.box-pricing-calculator .calculate-right .cart-select .item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.box-pricing-calculator .calculate-right .cart-select .item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.box-pricing-calculator .calculate-right .cart-select .item .title {
    color: var(--color-text);
}

.box-pricing-calculator .calculate-right .cart-select .item .value {
    color: var(--color-text);
    font-weight: 600;
}

.content-pricing-calculator .item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #0972CE1A;
    font-size: 18px;
}

.modal-in-cart .warp-cart .inter-cart .inter-content .warp-name-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-basis: calc(100% - 35px);
    max-width: calc(100% - 35px);
}

.box-banner-pricing {
    background: #DEEFFF;
    padding: 40px 0 80px;
}

.box-banner-pricing .info form .form-group {
    max-width: 640px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.box-banner-pricing .info form .form-group .form-control {
    height: 56px;
    border-radius: 52px;
    padding-left: 55px;
    padding-right: 150px;
    font-size: 16px;
}

.box-banner-pricing .info form .form-group svg {
    position: absolute;
    top: 16px;
    left: 20px;
}

.box-banner-pricing .info form .form-group .btn {
    height: 48px;
    border-radius: 25px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    position: absolute;
    right: 5px;
    top: 4px;
    font-size: 16px;
}

.warp-section-calculator {
    padding: 80px 0;
}

.warp-section-calculator .title-section {
    margin-bottom: 30px;
}

.content-pricing-calculator .item .value {
    font-weight: 600;
    color: var(--color-text);
}

.content-pricing-calculator .item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.box-pricing-calculator .calculate-right .button-calculate .btn {
    width: 100%;
    height: 58px;
    font-size: 18px;
    font-weight: 600;
}

.section-pricing-01 {
    background: aliceblue;
    padding: 0px 0 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(240, 248, 255, 0.5) 100%);
    overflow: hidden;
}

.box-how-entity .title-section {
    margin-bottom: 30px;
}

.box-how-entity .info-how-entity {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.box-how-entity .info-how-entity .info-left {
    border: 1.5px solid rgba(9, 114, 206, 0.1);
    background: #e7f1fb;
    padding: 30px;
    border-radius: 30px;
    height: 100%;
}

.box-how-entity .info-how-entity .info-left .title-left,
.box-how-entity .info-how-entity .info-right .title-right {
    background: var(--bg-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
}

.box-how-entity .info-how-entity .info-left .info-conten-left {
    background: rgba(250, 250, 250, 1);
    padding: 15px;
    border-radius: 16px;
}

.box-how-entity .info-how-entity .info-left .info-conten-left .item>span {
    flex: 0 0 50%;
}

.box-how-entity .info-how-entity .info-left .info-conten-left .item {
    display: flex;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    color: var(--color-text);
    font-size: 18px;
}

.box-how-entity .info-how-entity .info-left .info-conten-left .item>span.title {
    text-align: right;
    display: block;
}

.box-how-entity .info-how-entity .info-left .info-conten-left .item>span.value {
    padding-left: 5px;
    font-weight: 600;
}

.box-how-entity .info-how-entity .info-left .info-conten-left .item:last-child,
.box-how-entity .info-how-entity .info-right .content-right .item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.box-how-entity .info-how-entity .info-right {
    background: #fff;
    height: 100%;
    border-radius: 32px;
    padding: 30px;
    border: 1.5px solid rgba(9, 114, 206, 0.1);
}

.box-how-entity .info-how-entity .info-right .content-right {
    background: rgba(250, 250, 250, 1);
    padding: 15px;
    border-radius: 16px;
}

.box-how-entity .info-how-entity .info-right .content-right .item {
    display: flex;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    color: var(--color-text);
    font-size: 18px;
    justify-content: space-between;
    align-content: center;
}

.box-how-entity .info-how-entity .info-right .content-right .item.item-total .value {
    font-size: 24px;
    font-weight: 700;
}

.box-each-service .top {
    margin-bottom: 50px;
}

.box-each-service .top .title-section span {
    margin-left: 0;
    margin-right: 10px;
}

.section-pricing-02 {
    background: rgba(240, 248, 255, 0.5);
    padding-bottom: 100px;
    padding-top: 100px;
    overflow: hidden;
}

.box-each-service .info .item {
    border: 1px solid rgba(238, 238, 238, 1);
    background: rgba(255, 255, 255, 1);
    padding: 30px;
    border-radius: 32px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    transition: 1s;
}

.box-each-service .info .item:hover {
    border-color: var(--bg-border-hover);
}

.box-each-service .info .item .top-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.box-each-service .info .item .top-item .left .name {
    color: var(--color-text);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

.box-each-service .info .item .top-item .right .btn-item a {
    background: linear-gradient(93.79deg, #0972CE 1.77%, #43A3F7 97.2%);
    height: 40px;
    display: inline-flex;
    padding: 0 20px;
    border-radius: 8px;
    color: #fff;
    align-items: center;
    font-size: 14px;
}

.box-each-service .info .item .bottom-item {
    margin-bottom: 20px;
}

.box-each-service .info .item .bottom-item .name-bottom {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
}

.box-each-service .info .item .bottom-item .option .item-op {
    color: #3A464F;
    margin-bottom: 15px;
    display: flex;
}

.box-each-service .info .item .btn-item-mid a {
    border: 1px solid var(--color-text);
    height: 48px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-weight: 600;
}

.box-each-service {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.box-each-service .info .item .bottom-item .option .item-op svg {
    margin-right: 10px;
    flex: 0 0 20px;
    margin-top: 2px;
}

.box-each-service>.info>.row {
    margin-left: -20px;
    margin-right: -20px;
}

.box-each-service>.info>.row>div {
    padding-left: 20px;
    padding-right: 20px;
}

.box-section-service-faq-pricing {
    position: relative;
    overflow: hidden;
}

.section-pricing-03 {
    /* background: aliceblue; */
    background-image: linear-gradient(181deg, rgba(240, 248, 255, 0.5), #ffffff);
    padding-bottom: 60px;
}

.box-pricing-plan .item {
    text-align: center;
    background: radial-gradient(100% 100% at 0% 100%, rgba(255, 255, 255, 0.1) 0%, rgba(65, 154, 218, 0) 100%);
    padding: 40px;
}

.box-pricing-plan .info {
    max-width: 936px;
    margin-left: auto;
    margin-right: auto;
    background-position: center;
    position: relative;
}

.box-pricing-plan .item .icon img {
    width: 40px;
    height: 40px;
}

.box-pricing-plan .item .icon {
    margin-bottom: 15px;
}

.box-pricing-plan .item .name {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
    font-size: 18px;
}

.box-pricing-plan .item .description {
    color: #3A464F;
}

.section-pricing-05 {
    background: rgba(240, 248, 255, 0.5);
}

.pricing-table .title {
    background: var(--bg-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 42px;
    font-weight: 800;
    text-align: left;
}

.pricing-table {
    padding: 30px;
    background: #fff;
    border-radius: 32px;
}

.pricing-table table {
    width: 100%;
    text-align: center;
}

.pricing-table .warrp-pricing-tb {
    background: #fafcfe;
    overflow: hidden;
    border-radius: 20px;
}

th.plan.standard .plan-head {
    background: linear-gradient(93.79deg, #0972CE 1.77%, #43A3F7 97.2%);
}

th.plan.managed .plan-head {
    background: linear-gradient(93.07deg, #6C54FF -16.41%, #0972CE 99.41%);
}

th.plan.custom .plan-head {
    background: linear-gradient(104.94deg, #3618FF -9.48%, #1C00D7 50.71%, #0972CE 116.55%);
}

th.plan.standard,
th.plan.managed,
th.plan.custom {
    color: #fff;
    text-align: center;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border: 0;
    font-size: 24px;
}

.pricing-table table thead {
    background: #fff;
}

.pricing-table table .sub-head td:nth-child(1),
.pricing-table table tr.sub-head td:nth-child(2) {
    width: 16%;
    background: #fafcfe;
}

.pricing-table table thead tr.sub-head th {
    height: 56px;
    width: 22.66%;
}

.pricing-table table tbody tr:last-child td:nth-child(1),
.pricing-table table tbody tr:last-child td:nth-child(2) {
    border-bottom: 0;
}

.pricing-table .warrp-pricing-tb tbody {
    border-bottom: 1px solid rgba(9, 114, 206, 0.1);
}

.pricing-table table thead tr.sub-head th:nth-child(1) {
    border-top-left-radius: 20px;
    overflow: hidden;
}

.pricing-table table thead tr.sub-head th:nth-child(3),
.pricing-table .warrp-pricing-tb tbody tr td:nth-child(3) {
    background: #edf5fb;
}

.pricing-table table tbody tr td {
    border-bottom: 1px solid rgba(9, 114, 206, 0.1);
}

.pricing-table table thead tr.sub-head th {
    border-bottom: 1px solid rgba(9, 114, 206, 0.2);
}

.pricing-table table thead tr.sub-head th:nth-child(4),
.pricing-table .warrp-pricing-tb tbody tr td:nth-child(4) {
    background: #e2eefa;
}

.pricing-table table thead tr.sub-head th:nth-child(5),
.pricing-table .warrp-pricing-tb tbody tr td:nth-child(5) {
    background: #d6e8f7;
}

.box-how-entity .info-how-entity>.row {
    margin-left: -20px;
    margin-right: -20px;
}

.box-how-entity .info-how-entity>.row>div {
    padding-left: 20px;
    padding-right: 20px;
}

.box-how-entity .info-how-entity .icon-right {
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
}

.box-how-entity .info-how-entity .icon-right img {
    width: 48px;
    height: 48px;
}

.box-pricing-plan .top {
    margin-bottom: 30px;
}

.box-pricing-plan .info>.row>div:nth-child(1) .item {
    background: radial-gradient(151.34% 151.34% at 100% 100%, rgba(255, 255, 255, 0.1) 0%, rgba(65, 154, 218, 0.03) 100%);
}

.box-pricing-plan .info>.row>div:nth-child(4) .item {
    background: radial-gradient(154.35% 154.35% at 0% 0%, rgba(255, 255, 255, 0.1) 0%, rgba(65, 154, 218, 0.03) 100%);
}

th.plan.standard,
th.plan.managed,
.pricing-table table thead tr.sub-head th:nth-child(3),
.pricing-table table thead tr.sub-head th:nth-child(4),
.pricing-table .warrp-pricing-tb tbody tr td:nth-child(3),
.pricing-table .warrp-pricing-tb tbody tr td:nth-child(4) {
    border-right: 6px solid #fff;
}

th.plan .plan-head {
    display: flex;
    width: 100%;
    height: 65px;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 32px;
    border-top-left-radius: 32px;
    position: relative;
}

.pricing-table .warrp-pricing-tb tbody tr td {
    border: 0;
    border-bottom: 1px solid rgba(9, 114, 206, 0.1);
}

.pricing-table .warrp-pricing-tb tbody tr td .cell {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(58, 70, 79, 1);
}

.pricing-table .warrp-pricing-tb tbody tr td:first-child .cell {
    border-left: 1px solid rgba(9, 114, 206, 0.1);
}

.pricing-table .warrp-pricing-tb tbody tr:first-child td:nth-child(1) .cell,
.pricing-table .warrp-pricing-tb tbody tr:first-child td:nth-child(2) .cell {
    border-top: 1px solid rgba(9, 114, 206, 0.1);
}

.pricing-table .warrp-pricing-tb tbody tr:first-child td:first-child .cell {
    border-top-left-radius: 20px;
}

.pricing-table .warrp-pricing-tb tbody tr:first-child td .cell {
    height: 74px;
    color: var(--color-text);
}

th.plan .plan-head svg {
    position: absolute;
    bottom: -14px;
    pointer-events: none;
    z-index: 0;
}

.box-pricing-calculator>.row {
    margin-left: -20px;
    margin-right: -20px;
}

.box-pricing-calculator>.row>div {
    padding-left: 20px;
    padding-right: 20px;
}

.service-radio-group .form-check-label span.description {
    font-size: 12px;
    font-weight: 400;
}

.top-pricing-calculator .item-custom-job>.row {
    margin-left: -15px;
    margin-right: -15px;
}

.top-pricing-calculator .item-custom-job>.row>div {
    padding-left: 15px;
    padding-right: 15px;
}

.top-pricing-calculator .item-custom-job .input-price-custom-job.input-group .form-control.disabled {
    pointer-events: none;
    background: #EEEEEE;
}

.input-price-custom-job .price-custom-job-label {
    height: 56px;
    background: #eeeeee;
    width: 100%;
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    color: rgba(58, 70, 79, 1);
}

.box-pricing-calculator .top-pricing-calculator .input-group input::placeholder {
    color: #c9c9c9;
}

.modal-in-cart .warp-cart .inter-cart .inter-content:hover {
    border-color: var(--bg-border-hover);
}

.pricing-table .warrp-pricing-tb tbody tr.sub-head td {
    color: var(--color-text);
    font-weight: 600;
    font-size: 18px;
}

.pricing-table .warrp-pricing-tb tbody tr td:first-child {
    font-weight: 600;
    color: rgba(58, 70, 79, 1);
}

.pricing-table .warrp-pricing-tb tbody tr td .price-box {
    color: var(--color-text);
}

.box-each-service .info .item .btn-item-mid a:hover {
    background: var(--color-text);
    color: #fff;
}

.box-pricing-lets-move {
    background-color: #001a35;
    padding: 80px 0;
    position: relative;
}

.box-pricing-lets-move .content-info .img-center {
    text-align: center;
}

.box-pricing-lets-move .top .title-section {
    color: #fff;
}

.box-pricing-lets-move .top .dsc-section {
    color: #fff;
}

.box-pricing-lets-move .top {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

div#source_cart .button-calculate {
    text-align: center;
}

.warp-select-cart .select-cart .item-cart .info-content .name-cart {
    line-height: 1.2;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.box-service-pricing .name {
    display: -webkit-box;
    max-width: 100%;
    font-size: 16px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

[nh-warp-pricing-calculator] .summary-label .customs-note {
    display: none;
}

.section-pricing-tab-block {
    padding: 80px 0;
    background: rgba(240, 248, 255, 0.5);
    overflow: hidden;
}

.section-pricing-tab-block .pricing-tab-head {
    margin-bottom: 40px;
}

.section-pricing-tab-block .pricing-tab-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 999px;
    background: #DEEFFF;
    color: #0972CE;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-pricing-tab-block .title-section span {
    background: var(--bg-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-pricing-tab-block .dsc-section {
    color: #3A464F;
    font-size: 16px;
}

.section-pricing-tab-block .pricing-tab-list {
    gap: 20px;
}

.section-pricing-tab-block .nav-pills .nav-link.pricing-tab-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    padding: 24px 24px;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
    text-align: left;
    color: var(--color-text);
}

.section-pricing-tab-block .nav-pills .nav-link.pricing-tab-item:hover {
    border-color: #43A3F7;
}

.section-pricing-tab-block .nav-pills .nav-link.pricing-tab-item.active,
.section-pricing-tab-block .nav-pills .show>.nav-link.pricing-tab-item {
    background: #0972CE1A;
    border-color: #0972CE1A;
    color: var(--color-text);
}

.section-pricing-tab-block .pricing-tab-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-pricing-tab-block .pricing-tab-name {
    color: var(--color-text);
    font-weight: 700;
    font-size: 18px;
}

.section-pricing-tab-block .pricing-tab-best {
    color: #3A464F;
    font-size: 14px;
}

.section-pricing-tab-block .pricing-tab-price {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
}

.section-pricing-tab-block .pricing-tab-from {
    font-size: 14px;
    font-weight: 600;
    background: var(--bg-gradient-text-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-pricing-tab-block .pricing-tab-amount {
    font-size: 32px;
    font-weight: 700;
    background: var(--bg-gradient-text-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-pricing-tab-block .pricing-tab-panels {
    position: relative;
    background: #0972CE1A;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.section-pricing-tab-block .pricing-tab-panel {
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.section-pricing-tab-block .pricing-tab-panel.active {
    display: flex;
}

.section-pricing-tab-block .pricing-tab-features {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    padding: 8px 20px;
}

.section-pricing-tab-block .pricing-tab-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: #3A464F;
    font-size: 16px;
}

.section-pricing-tab-block .pricing-tab-features li:last-child {
    border-bottom: 0;
}

.section-pricing-tab-block .pricing-tab-check {
    display: inline-flex;
    flex-shrink: 0;
}

.section-pricing-tab-block .pricing-tab-more {
    margin-top: 40px;
}

[nh-warp-pricing-calculator][data-service-selected="custom"] .summary-label .standard-managed {
    display: none;
}

[nh-warp-pricing-calculator][data-service-selected="custom"] .summary-label .customs-note {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pricing-tab-wrap>.row {
    margin-left: -20px;
    margin-right: -20px;
}

.pricing-tab-wrap>.row>div {
    padding-left: 20px;
    padding-right: 20px;
}

.pricing-summary-inner .top-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-row:last-child {
    border-bottom: 0;
    padding-bottom: 5px;
}

.summary-row-label span.addon-icon-mini {
    display: flex;
}

.addon-card:has(.addon-check:checked) span.addon-price {
    background: var(--bg-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-form-col .pricing-form-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-grid.grid-migration-calculator .service-radio-group.service-tab-list {
    display: flex;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-grid.grid-migration-calculator .service-tab-indicator {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--bg-highlight-light);
    border-radius: 99px !important;
    transition: width 0.35s ease, height 0.35s ease, top 0.35s ease, left 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.pricing-grid.grid-migration-calculator .service-selection.service-selection-tabs {
    border: 1px solid #0972CE1A;
    border-radius: 99px;
    padding: 10px;
    margin-bottom: 25px;
}

.pricing-grid.grid-migration-calculator .service-radio-group.service-tab-list .form-check.service-tab-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    margin-bottom: 0;
}

.pricing-grid.grid-migration-calculator .service-radio-group.service-tab-list .form-check.service-tab-item label.form-check-label {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: none;
    border-radius: 99px;
    font-size: 20px;
    transition: color 0.35s ease, transform 0.35s ease;
}

.pricing-grid.grid-migration-calculator .service-radio-group.service-tab-list .form-check.service-tab-item label.form-check-label>* {
    position: relative;
    z-index: 1;
}

.pricing-grid.grid-migration-calculator .service-radio-group .form-check-input:checked~.form-check-label {
    background: none !important;
}

.pricing-grid.grid-migration-calculator .service-radio-group.service-tab-list .form-check.service-tab-item label.form-check-label:hover {
    background: none !important;
}

.pricing-grid.grid-migration-calculator .top-pricing-calculator .input-group .nh-cart-display {
    background: #EEEEEE;
    height: 56px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    font-size: 16px;
    color: #3A464F;
}

.section-cart-dt-04 .warp-section-calculator .title-section {
    margin-bottom: 15px;
}

.section-cart-dt-04 .warp-section-calculator .dsc-section {
    margin-bottom: 40px;
}

.input-price-custom-job.input-group {
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 15px;
}

.box-service-pricing .info-right .service-pricing-summary .info-pricing-summary {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
}

.box-service-pricing .info-right .service-pricing-summary .summary-row:first-child {
    padding-top: 0;
}

.box-service-pricing .info-right .service-pricing-summary .summary-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pricing-grid.grid-migration-calculator .service-radio-group.service-tab-list .form-check.service-tab-item:hover label.form-check-label {
    background: var(--bg-light-hover) !important;
    border-color: #007bff;
}

.pricing-grid.grid-migration-calculator .service-radio-group.service-tab-list .form-check.service-tab-item label.form-check-label.disabled,
.pricing-grid.grid-migration-calculator .service-radio-group.service-tab-list .form-check.service-tab-item:hover label.form-check-label.disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.45;
    color: rgba(5, 54, 96, 0.65);
    background: none !important;
    border-color: transparent;
    transform: none;
}

.section-pricing-tab-block .pricing-tab-item.disabled,
.section-pricing-tab-block .pricing-tab-item.disabled:hover {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.45;
    background: transparent;
}

.btn-hover--svg svg {
    transition: transform 0.3s ease;
}

.box-pricing-lets-move .img-bf img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.box-pricing-lets-move .content-info {
    position: relative;
    z-index: 2;
}
.box-each-service .info .item .top-item .btn-item span, .box-each-service.box-each-service-help .info .item .top-item .top-right .btn-item .link-top {
    background: linear-gradient(93.79deg, #0972CE 1.77%, #43A3F7 97.2%);
    display: inline-flex;
    color: #fff;
    padding: 8px 10px;
    align-items: center;
    border-radius: 8px;
    text-align: center;
    height: auto;
}
@media (min-width: 992px) {
    .box-service-pricing .content-pricing .info-right .input-pricing>.row {
        margin-left: -40px;
        margin-right: -40px;
    }

    .box-service-pricing .content-pricing .info-right .input-pricing>.row>div {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1299.98px) {

    .box-how-entity .info-how-entity .info-right,
    .box-how-entity .info-how-entity .info-left {
        padding: 15px;
    }

    .box-section-service-faq-pricing .section-home-faq {
        padding: 0;
    }

    .pricing-grid.grid-migration-calculator .service-radio-group.service-tab-list .form-check.service-tab-item:hover label.form-check-label {
        background: none !important;
    }

    .box-banner-pricing {
        padding: 10px 0 60px !important;
    }

    .box-each-service .top {
        margin-bottom: 30px !important;
    }
}

@media (min-width: 576px) and (max-width: 1299.98px) {
    .btn-more-cart a {
        display: inline-flex;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .box-banner-pricing .info form .form-group .btn {
        font-size: 15px;
    }

    .box-banner-pricing .info form .form-group .form-control {
        font-size: 15px;
    }

    .title-left-cart {
        font-size: 20px;
    }

    .modal-in-cart .warp-cart .inter-cart .name {
        font-size: 16px;
    }

    .modal-in-cart .warp-cart .inter-cart .inter-content .icon {
        margin-right: 11px;
    }

    .service-radio-group .form-check-label span.description {
        font-size: 14px;
    }

    .service-radio-group .form-check-label {
        font-size: 18px;
    }

    .content-pricing-calculator .item {
        font-size: 15px;
    }

    .box-pricing-calculator .calculate-right .button-calculate .btn {
        font-size: 16px;
    }

    .box-how-entity .info-how-entity .info-left .title-left,
    .box-how-entity .info-how-entity .info-right .title-right {
        font-size: 20px;
    }

    .box-how-entity .info-how-entity .info-right .content-right .item {
        font-size: 15px;
    }

    .box-how-entity .info-how-entity .info-left .info-conten-left .item {
        font-size: 16px;
    }

    .box-how-entity .info-how-entity .info-right .content-right .item.item-total .value {
        font-size: 18px;
    }

    .pricing-table .title {
        font-size: 30px !important;
    }

    th.plan.standard,
    th.plan.managed,
    th.plan.custom {
        font-size: 18px;
    }

    .pricing-table .warrp-pricing-tb tbody tr:first-child td .cell {
        height: 60px;
    }

    .pricing-table .warrp-pricing-tb tbody tr td .cell {
        height: 50px;
    }

    .pricing-table .warrp-pricing-tb tbody tr.sub-head td {
        font-size: 15px;
    }

    .box-each-service .info .item .top-item .left .name {
        font-size: 20px;
    }

    .box-each-service .info .item .top-item .right .btn-item a {
        padding: 0 15px;
    }

    .box-each-service .info .item .bottom-item .name-bottom {
        font-size: 15px;
    }

    .box-each-service>.info>.row>div {
        padding-left: 15px;
        padding-right: 15px;
    }

    .box-each-service>.info>.row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .box-each-service .info .item {
        padding: 25px;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .box-banner-pricing {
        padding: 60px 0;
    }

    .box-banner-pricing .info form .form-group .btn {
        font-size: 14px;
    }

    .box-banner-pricing .info form .form-group .form-control {
        font-size: 14px;
    }

    .warp-section-calculator {
        padding: 60px 0;
    }

    .title-left-cart {
        font-size: 18px;
    }

    .modal-in-cart .warp-cart .inter-cart .name {
        font-size: 14px;
    }

    .modal-in-cart .warp-cart .inter-cart .inter-content {
        padding: 10px 15px;
        height: 50px;
    }

    .modal-in-cart .warp-cart {
        flex-basis: calc(50% - 25px);
        max-width: calc(50% - 25px);
    }

    .modal-in-cart .warp-cart .inter-cart .inter-content .icon img {
        width: 25px;
        height: 25px;
    }

    .modal-in-cart .warp-cart .inter-cart .inter-content .icon {
        margin-right: 10px;
    }

    .service-radio-group .form-check-label {
        font-size: 16px;
        gap: 5px;
    }

    .service-radio-group .form-check-label span.description {
        font-size: 12px;
    }

    .top-pricing-calculator>.row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .top-pricing-calculator>.row>div {
        padding-left: 15px;
        padding-right: 15px;
    }

    .box-pricing-calculator .top-pricing-calculator .item .title {
        flex: 0 0 75px;
        max-width: 75px;
        font-size: 13px;
    }

    .box-pricing-calculator>.row>div {
        padding-left: 10px;
        padding-right: 10px;
    }

    .box-pricing-calculator>.row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .box-pricing-calculator .top-pricing-calculator .input-group input {
        height: 50px;
    }

    .box-pricing-calculator .calculate-right {
        padding: 15px;
        border-radius: 20px;
    }

    .content-pricing-calculator .item {
        font-size: 13px;
    }

    .box-pricing-calculator .calculate-right .cart-select .item {
        font-size: 12px;
    }

    .box-pricing-calculator .calculate-right .cart-select {
        border-radius: 15px;
    }

    .box-pricing-calculator .calculate-right .button-calculate .btn {
        font-size: 14px;
    }

    .box-how-entity .info-how-entity .info-left .info-conten-left .item {
        font-size: 14px;
    }

    .box-how-entity .info-how-entity .info-right .content-right .item {
        font-size: 14px;
    }

    .box-how-entity .info-how-entity .info-left {
        padding: 15px;
        border-radius: 20px;
    }

    .box-how-entity .info-how-entity .info-left .title-left,
    .box-how-entity .info-how-entity .info-right .title-right {
        font-size: 20px;
    }

    .box-how-entity .info-how-entity .info-right .content-right .item.item-total .value {
        font-size: 14px;
    }

    .section-pricing-01 {
        padding: 0px 0 80px;
    }

    .pricing-table .title {
        font-size: 18px;
    }

    .pricing-table {
        padding: 15px;
        border-radius: 20px;
    }

    th.plan .plan-head {
        height: 50px;
        border-top-right-radius: 25px;
        border-top-left-radius: 25px;
    }

    th.plan.standard,
    th.plan.managed,
    th.plan.custom {
        font-size: 16px;
    }

    .pricing-table .warrp-pricing-tb tbody tr.sub-head td {
        font-size: 14px;
    }

    .pricing-table .warrp-pricing-tb tbody tr:first-child td .cell {
        height: 55px;
    }

    .pricing-table .warrp-pricing-tb tbody tr td .cell {
        height: auto;
        min-height: 40px;
        white-space: nowrap;
        padding: 0 10px;
    }

    .section-pricing-02 {
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .box-each-service>.info>.row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .box-each-service>.info>.row>div {
        padding-left: 10px;
        padding-right: 10px;
    }

    .box-each-service .info .item .top-item .left .name {
        font-size: 20px;
    }

    .box-each-service .info .item .top-item .right .btn-item a {
        display: none;
    }

    .box-each-service .info .item .top-item {
        padding-bottom: 15px;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .box-each-service .info .item .btn-item-mid a {
        height: 45px;
    }

    .box-pricing-lets-move {
        padding: 60px 0;
    }

    .box-each-service .info .item {
        padding: 15px;
    }

    .section-pricing-03 {
        padding-bottom: 0;
    }
}

@media (max-width: 1024px) {
    .box-pricing-calculator .pricing-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .box-pricing-calculator .pricing-form-col {
        width: 100%;
        min-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .box-pricing-calculator .pricing-summary-col {
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        width: 100%;
        max-width: 100%;
        max-height: 0;
        overflow: hidden;
        transform: translateY(-10px);
        transition: max-height 0s linear 0.4s,
            opacity 0.25s ease,
            transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 0s linear 0.4s;
    }

    .box-pricing-calculator[data-summary-open="true"] .pricing-form-col {
        width: 100%;
        max-width: 100%;
        min-height: 0 !important;
    }

    .box-pricing-calculator[data-summary-open="true"] .pricing-summary-col {
        width: 100%;
        max-width: 100%;
        max-height: none;
        margin-top: 24px;
        transform: translateY(0);
        transition: max-height 0s linear,
            opacity 0.3s ease 0.15s,
            transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
            visibility 0s linear;
    }

    .section-pricing-tab-block .pricing-tab-row>div+div {
        margin-top: 20px;
    }

    .pricing-grid.grid-migration-calculator .service-radio-group.service-tab-list .form-check.service-tab-item label.form-check-label {
        font-size: 14px;
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .box-section-service-faq-pricing .box-faq-pricing {
        padding: 60px 0;
    }
    .section-cart-dt-04.box-section-toll-05 {
        padding-bottom: 60px;
    }

    .box-how-entity .info-how-entity .wore {
        position: relative;
    }

    .box-how-entity .info-how-entity .icon-right {
        top: inherit;
        left: 50%;
        right: inherit;
        bottom: -22px;
        transform: translateX(-50%) rotate(90deg);
    }

    .section-pricing-tab-block .nav-pills .nav-link.pricing-tab-item {
        padding: 15px;
    }

    .box-banner-pricing .info form .form-group .form-control {
        padding-left: 45px;
        font-size: 16px;
        height: 49px;
    }

    .box-banner-pricing .info form .form-group svg {
        top: 13px;
        left: 14px;
    }

    .box-banner-pricing .info form .form-group .btn {
        height: 41px;
        font-size: 14px;
    }

    .warp-section-calculator {
        padding: 60px 0 0;
    }

    .warp-section-calculator .title-section {
        margin-bottom: 15px;
    }

    .modal-in-cart .warp-cart .inter-cart .inter-content {
        height: 42px;
        padding: 8px;
        border-radius: 12px;
    }

    .modal-in-cart .warp-cart .inter-cart .name {
        font-size: 14px;
        line-height: 1.2;
    }

    .modal-in-cart .warp-cart .inter-cart .inter-content .icon {
        margin-right: 10px;
    }

    .modal-in-cart .warp-cart .inter-cart .inter-content .icon img {
        width: 25px;
        height: 25px;
    }

    .modal-in-cart .warp-cart .inter-cart .inter-content .warp-name-icon svg {
        display: none;
    }

    .modal-in-cart .warp-cart {
        flex-basis: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .modal-in-cart .warp-cart-center svg {
        width: 30px;
        height: 30px;
    }

    .modal-in-cart {
        padding: 5px;
        margin-bottom: 20px;
    }

    .title-left-cart {
        font-size: 20px;
    }

    .service-radio-group .form-check-label {
        height: 40px;
        font-size: 14px;
    }

    .row {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

    .row>div {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }

    .row.no-gutters {
        margin-right: 0;
        margin-left: 0;
    }

    .box-pricing-calculator .calculate-right {
        padding: 12px;
        border-radius: 12px;
        height: 100%;
    }

    .box-pricing-calculator .calculate-right .cart-select {
        padding: 10px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .content-pricing-calculator .item {
        font-size: 14px;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .box-pricing-calculator .calculate-right .button-calculate .btn {
        height: 50px;
        font-size: 16px;
    }

    .box-pricing-calculator .top-pricing-calculator .input-group input {
        height: 45px;
        font-size: 14px;
    }

    .section-pricing-01 {
        padding: 60px 0 40px;
    }

    .box-how-entity .info-how-entity .info-left .title-left,
    .box-how-entity .info-how-entity .info-right .title-right {
        font-size: 18px;
    }

    .box-how-entity .info-how-entity>.row>div {
        margin-bottom: 25px;
    }

    .box-how-entity .info-how-entity .info-left .info-conten-left .item {
        font-size: 16px;
    }

    .box-how-entity .info-how-entity .info-right .content-right .item {
        font-size: 16px;
    }

    .box-how-entity .info-how-entity .info-right .content-right .item.item-total .value {
        font-size: 16px;
    }

    .pricing-table {
        padding: 15px;
        border-radius: 16px;
    }

    .pricing-table .warrp-pricing-tb table {
        width: 680px;
    }

    .pricing-table .warrp-pricing-tb {
        border-radius: 12px;
        overflow-x: scroll;
    }

    .pricing-table .title {
        font-size: 18px;
    }

    .section-pricing-02 {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .box-each-service .top {
        margin-bottom: 30px;
    }

    .box-each-service .info .item .top-item .left .name {
        font-size: 24px;
    }

    .box-each-service>.info>.row>div {
        margin-bottom: 25px;
    }

    .box-section-service-faq-pricing {
        padding: 40px 0 0;
    }

    .service-radio-group .form-check-label span.description {
        display: none;
    }

    .service-selection {
        margin-bottom: 20px;
    }

    .input-price-custom-job .price-custom-job-label {
        height: 45px;
        padding: 10px;
    }

    .box-how-entity .title-section {
        margin-bottom: 20px;
    }

    th.plan.standard,
    th.plan.managed,
    th.plan.custom {
        font-size: 14px;
    }

    th.plan .plan-head {
        height: 45px;
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
    }

    .pricing-table .warrp-pricing-tb tbody tr:first-child td .cell {
        height: 50px;
        font-size: 14px;
    }

    .pricing-table .warrp-pricing-tb tbody tr td .cell {
        font-size: 14px;
        height: auto;
        line-height: 1.2;
        padding: 5px;
        min-height: 40px;
    }

    .pricing-table .warrp-pricing-tb tbody tr td .price-box {
        font-size: 14px;
    }

    .box-pricing-plan .item {
        padding: 5px;
        margin-top: 15px;
    }

    .box-pricing-plan .item .name {
        font-size: 16px;
    }

    .box-pricing-plan .item .description {
        font-size: 16px;
    }

    .section-pricing-03 {
        padding-bottom: 40px;
    }

    .box-pricing-lets-move {
        padding: 60px 0;
    }

    .box-pricing-lets-move .top {
        margin-bottom: 40px;
    }

    th.plan .plan-head svg {
        width: 30px;
        height: 19px;
    }

    .section-pricing-tab-block {
        padding: 60px 0;
    }

    .section-pricing-tab-block .title-section {
        font-size: 26px;
    }

    .section-pricing-tab-block .pricing-tab-item {
        padding: 14px 16px;
        border-radius: 12px;
    }

    .section-pricing-tab-block .pricing-tab-name {
        font-size: 16px;
    }

    .section-pricing-tab-block .pricing-tab-amount {
        font-size: 20px;
    }

    .section-pricing-tab-block .pricing-tab-panels {
        padding: 16px;
    }

    .section-pricing-tab-block .pricing-tab-features li {
        font-size: 14px;
    }

    .box-service-pricing .info-right .service-pricing-summary {
        padding: 15px;
    }

    .box-service-pricing .info-right .service-pricing-summary .info-pricing-summary {
        padding: 15px;
    }

    .box-service-pricing .info-right .service-pricing-summary .summary-row {
        font-size: 14px;
    }

    .box-service-pricing .content-pricing .info-right span.icon-right {
        display: none;
    }

    .section-home-faq .item-title-process:not(.collapsed) span:first-child {
        font-size: 16px;
    }

    .box-service-banner-01 .content-banner .info-left {
        padding-right: 0;
    }

    .box-each-service .info .item .bottom-item .name-bottom {
        font-size: 16px;
    }

    .box-pricing-calculator .pricing-grid {
        flex-wrap: wrap;
    }
}
