* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

ul,
li {
    list-style: none;
}


select,
input,
select:focus,
input:focus,
select:active,
input:active {
    outline: none;
}

html {
    font-size: 10px;
}

:root {
    --black: #000;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 1.8rem;
    line-height: normal;
    scroll-behavior: smooth;
    color: var(--black);

}

button,
input {
    font-family: "Roboto", sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


.tex_center {
    text-align: center;
}

.container {
    max-width: 119rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.row-main-section {
    display: flex;
    flex-direction: row-reverse;
}

.row-main-section {
    flex-wrap: wrap;
}

h1,
h2,
h3 {
    font-weight: bold;
    color: var(--black);
}

.sec_left,
.sec_right {
    width: calc((100% / 2) - 1.5rem);
    padding: 40px 0;
}
.sec_left.left-content {
    padding-right: 30px;
    margin-top: 10px;
}

.heading01 {
    font-size: 2.8rem;
    line-height: normal;
}

.heading02 {
    font-size: 3.6rem;
    line-height: normal;
}


.section_row {
    display: flex;
    column-gap: 3rem;
    flex-wrap: wrap;
}

.logo img {
    max-width: 18.4rem;
}

.sec_full {
    width: 100%;
}

.topbar {
    background-color: #000000ff;
    color: white;
    padding: 6px 10px;
    margin-bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.topbar:before {
    content: "50% OFF!";
    background-color: #ffa41b;
    z-index: 999;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    text-transform: uppercase;
    font-weight: 600;
    padding: 12px 30px 8px;
    letter-spacing: 1px;
}

.topbar:after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    top: 22%;
    left: 137px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 15px solid #ffa41b;
}

.topbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: scroll-left 30s linear infinite;
    flex-wrap: nowrap;
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.topbar ul li {
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    line-height: 3rem;
    white-space: nowrap;
    letter-spacing: .1rem;
    padding: 0 1.6rem;
}

.topbar ul li span.dvdr {
    width: .5rem;
    height: .5rem;
    display: block;
    margin: 0 3rem 0 1rem;
    background-color: #D9D9D9;
    border-radius: 50%;
}

/* top-bar end */
.logosec {
    padding-top: 20px;
    padding-bottom: 20px;
}

.logosec img {
    max-width: 200px;
    margin: 0 auto;
}

section.section1 {
    background: linear-gradient(90deg, #00000000 50%, #fafafa 50%);
    padding-bottom: 60px;
}

.demand_alert {
    padding: 14px 14px;
    text-align: center;
    border: 1px dashed #fed598;
    width: 100%;
    font-size: 14px;
    margin: 0 0 25px;
    background-color: #fff3e2;
}

ol.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0 0 0 0;
    color: #000;
    font-size: 12px;
    line-height: 1;
    display: flex;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 12px;
}

.breadcrumb-item.active {
    color: #333333;
}

.form_left {
    border: 1px solid #ddd;
    margin: 16px 0;
    border-radius: 5px;
}

/* form */

.form-group {
    position: relative;
    margin-bottom: 20px;
    width: 100%;    
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    line-height: 22px;
    background-color: #FFFFFF;
    transition: border 0.3s ease-in-out;
    color: #777;
}
.form-group input.has-error, 
.form-group select.has-error {
    border-color: #e3342f;
}
span.cb-inline-error {
    width: 100%;
    margin-top: 4px;
    font-size: 12px;
    color: #e3342f;
    font-weight: 400;
}
.form-group label {
    position: absolute;
    top: 25px;
    left: 7px;
    transform: translateY(-50%);
    font-size: 16px;
    line-height: 22px;
    color: #777;
    background-color: transparent;
    padding: 0 5px;
    transition: all 0.3s ease-in-out;
}

.form-group input:focus,
.form-group input:not(:placeholder-shown) {
    border-color: rgb(220, 226, 255);

}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    top: 20%;
    font-size: 12px;
    color: #7a7a7a;

}

.form_left h5 {
    font-size: 18px;
    color: #333333;
    padding: 14px;
    border-bottom: 1px solid #cacaca;
}

.form-c {

    padding: 10px;
    background-color: #fafafa;
    border-radius: 0 0 5px 5px;
    padding: 14px;

}

.form-group-flex {
    display: flex;
    column-gap: 1.5rem;
    justify-content: space-between;
}

.bill_address {
    font-size: 18px;
    color: #333333;
    padding: 14px 0;
}

.payment_option {
    color: #545454;
    font-size: 14px;

}

input[type="radio"] {
    accent-color: orange;
    border: 2px solid orange;
    /* Custom border color */
    width: 16px;
    height: 16px;
    appearance: none;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    font-size: 14px;
}

input[type="radio"]:checked::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: orange;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.lbt {
    padding: 8px 16px;
    border-bottom: 1px solid #cacaca;
}

.lbt label {
    margin: 14px 0;
    font-size: 14px;
    color: #333333;
    display: flex;
    align-items: center;
    column-gap: 9px;
}

.form-f {
    border: 1px solid #ddd;
    margin: 16px 0;
    border-radius: 5px;

}

.uni-theme-cc-icons {
    display: flex;
    column-gap: 8px;
}

.uni-theme-cc-icons img {
    border-radius: 6px;
}

.lbt-flex {
    display: flex;
    justify-content: space-between;
}

.credit_num,
.cvv {
    position: relative;
}

.icon-cvv {
    cursor: pointer;
}

.form-group .icon {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #919191;
}

.cvv-q-cll-pop {
    position: absolute;
    display: none;
    width: 422px;
    left: 22%;
    margin-left: -211px;
    top: 85%;
    background-color: #fff;
    border: 1px solid #d3d8e0;
    border-radius: 4px;
    padding: 15px;
    margin-top: 10px;
    z-index: 22;
}

.cvv-q-cll:hover .cvv-q-cll-pop {
    display: block;
}

.cvv-q-cll-pop-col p {
    color: #5e6473;
    font-size: 13px;
    margin: 0;
}

.cvv-q-cll-pop-in {
    display: flex;
}

.cvv-q-cll-pop-col img {
    width: 127px;
    margin-bottom: 10px;
}

.cvv-q-cll-pop-col h4 {
    font-size: 14px;
    color: #212d3d;
    margin: 0 0 15px 0;
    font-weight: 600;
}

div#billingForm {
    display: none;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-color: #d5d5d5 !important;
    border-radius: 4px;
    margin-top: 3px;
}

input[type="checkbox"]+p {
    font-size: 14px;
    line-height: 20px;
    color: #545454;
}

.form-group.disclaimer {
    display: flex;
    align-items: unset;
    margin-top: 24px;
    column-gap: 10px;
}

.invalid-feedback {
    display: none;
    margin-top: 10px;
    font-size: 12px;
    color: #e3342f;
}

#show-hide-term,
.accordion-content {
    font-size: 11px;
    color: var(--black);
    line-height: 18px;

}

.accordion-content p {
    padding: 4px 0;
}

.accordion-content {
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    max-height: 0;
    overflow: hidden;
}

.accordion.active .accordion-content {
    max-height: 500px;
    padding: 10px 0;
}

.new-c-button {
    background-color: #FFA41C;
    display: block;
    width: 100%;
    font-size: 23px;
    line-height: 33px;
    font-weight: 700;    
    box-shadow: rgba(37, 42, 50, .32) 0 1px 4px 1px;
    letter-spacing: 0.4px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    border-radius: 8px;
    padding: 14px 0;
    margin-top: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.new-c-button:hover {
    opacity: 0.85;
}
.checkout-badges {
    display: flex;
    align-items: center;
    column-gap: 14px;
    margin-top: 24px;
}

.cust-comment-sec {
    padding: 30px 0;
}

.cart-pro-list-new {
    padding-left: 0;
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cart-pro-list-new li {
    display: flex;
    align-items: center;
}

.list-pro-image-cell {
    width: 64px;
    height: 64px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    background-color: #fff;
}

.pro-q {
    position: absolute;
    right: -9px;
    top: -9px;
    width: 21px;
    height: 21px;
    background-color: #FFA41C;
    color: #fff;
    font-size: 13px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-pro-image-cell img {
    width: 40px;
}

.list-value-details {
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding-left: 15px;
    column-gap: 10px;
}


li .uni-cart-product-title {
    color: #333333;
    font-size: 14px;
    font-weight: normal;
}

.list-pro-price {
    position: relative;
}

.apply-code-button {
    padding: 14px 38px;
    background-color: #c8c8c8;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
}

.apply-active {
    background-color: #FFA41C;
    border: none;
}

.border {
    border-bottom: 1px solid #d5d5d5;
}

.grand-total-title {
    font-size: 16px;

}

.grand-total-price {
    font-size: 24px;

}

.text-muted {
    font-size: 12px;
    color: #737373;
    margin-bottom: 3px;
}

.subtotal {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.subtotal .uni-cart-product {
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 20px;

}

ul.cart-pro-list.cart-pro-list-new.subtotal {
    border: none;
}

.add-cross-sell {
    background: #ffffff;
    border: 1px solid #ffa41c;
    border-radius: 5px;
    margin-top: 20px;
}

.add-cross-sell-title {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 0 0 2rem 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding: 25px;
    background-color: #ffa41c;
    line-height: 1;
    border-radius: 5px 5px 0 0;
    width: 100%;
    letter-spacing: 0.6px;
}

.add-cross-sell-content {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 22px;
}

.right-side-section {
    z-index: 1;
    background-color: #fafafa;
    padding: 20px 40px;
    display: flex;
    justify-content: flex-start;
    flex-flow: column;

}

.logosec {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.footer {
    background-color: #343a40;
    padding: 40px 0;
}

.footer a {
    font-size: 16px;
}

.footer a:hover {
    text-decoration: underline;
}

.ft-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-list li {
    padding: 0 14px;
}



.detail-price {
    max-width: 418px;
    position: sticky;
    top: 0;
    z-index: 99;
    display: block;

}

@media only screen and (max-width: 991px) {
    .section_row {
        flex-direction: column-reverse;
    }

    .sec_left,
    .sec_right {
        width: 100%;
        padding: 16px 0;
    }
    .sec_left.left-content {
        padding-right: 0;
    }
    .form-group label {
        top: 22px;
        left: 0;
    }
    .form-group input:focus+label, 
    .form-group input:not(:placeholder-shown)+label {
        top: 23%;        
        padding: 5px 12px;
    }
    
    .form-group input:not(:placeholder-shown),
    .form-group input:focus {
        padding: 18px 12px 6px;
    }
    .form-group input, .form-group select {
        font-size: 14px;
    }

    .form-group-flex {
        flex-direction: column;
    }

    .form-group-row {
        flex-direction: row;
    }

    .checkout-badges {
        flex-wrap: wrap;
        row-gap: 22px;
        justify-content: center;
    }

    .add-cross-sell {
        display: none;
    }

    .cust-comment-sec {
        display: none;
    }

    .summery-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 7px 0 0 0;
        font-size: 14px;
        line-height: normal;
        margin-bottom: 7px;
    }

    .right-side-section {
        position: relative;
        top: 9px;
        padding: 11px;
    }

    .detail-price {
        display: none;
        padding: 10px;
        margin-top: 10px;
        max-width: 100%;
    }

    section.section1 {
        background: transparent;
        padding-bottom: 16px;
    }

    .accordion {
        display: none;
    }

    .form-group input,
    .form-group select,
    .form-group label {
        padding: 12px;
        font-size: 16px;
        line-height: normal;
    }


}

@media only screen and (max-width: 767px) {
    .uni-theme-cc-icons img {
        width: 24px;
    }

    .footer a {
        font-size: 12px;
    }

    .apply-code-button {
        padding: 11px 20px;
    }

    .form-group label {
        left: 0;
        font-size: 14px;
    }

    .topbar ul li {
        font-size: 1.4rem;
    }
}

/* Thankyou */
.topbar-t {
    background-color: #273043;
    color: white;
    padding: 6px 10px;
    margin-bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}


.topbar-t ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: scroll-left 30s linear infinite;
    flex-wrap: nowrap;
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.topbar-t ul li {
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 3rem;
    white-space: nowrap;
    letter-spacing: 2px;
    padding: 0 16px;
}

.topbar-t ul li span.dvdr {
    width: .5rem;
    height: .5rem;
    display: block;
    margin: 0 3rem;
    background-color: #D9D9D9;
    border-radius: 50%;
}

.upsell_body {
    padding-top: 30px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    margin-bottom: 60px;
}

.card_icon_area .gift_label .g_card_text {
    color: rgb(242, 202, 89);
    font-size: 29px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 2px;
}

.upsell_inner {
    display: flex;
    row-gap: 36px;
    column-gap: 36px;
    align-items: flex-start;
}

.card_icon_area {
    position: relative;
    margin-top: 15px;
    max-width: 600px;
    width: 100%;
}

.upsell_inner .card_area {
    width: 40%;
}

.upsell_inner .card_area img {
    width: 100%;
}

.card_icon_area .gift_card_ico {
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    display: block;
}

.card_info_area .price-tag-text {
    color: rgb(115, 126, 147);
    font-style: italic;
    font-weight: 500;
    border: 2px dashed rgb(224, 224, 224);
    padding-top: 14px;
    padding-right: 20px;
    padding-bottom: 14px;
    padding-left: 20px;
    border-radius: 5px;
    letter-spacing: 1px;
    display: table;
    width: 100%;
    font-size: 18px;
    line-height: 27px;

    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.gift_price .dollar_sign {
    font-weight: 400;

}

.btn_group_area .theme_btn:first-child {
    margin-bottom: 12px;
}

.card_info_inner {
    width: 60%;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    column-gap: 12px;
}

.card_info_desc {
    margin-top: 0px;
    margin-bottom: 12px;
}

.card_info_area .card_name {
    font-size: 50px;
    font-weight: 800;
    color: var(#273043);
    line-height: 60px;
    margin-bottom: 8px;
    letter-spacing: normal;

}

.card_info_desc .card_info_qustn {
    color: var(#273043);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;

    letter-spacing: normal;
}

.card_info_area .card_price {
    color: var(#273043);
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;

    letter-spacing: normal;
}

.badge_offer {
    background-color: rgb(236, 76, 60);
    width: auto;
    display: inline-flex;
    align-items: center;
    color: rgb(255, 255, 255);
    font-size: 12px;
    line-height: 21px;
    font-weight: 500;
    row-gap: 5px;
    column-gap: 5px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    padding-top: 4px;
    padding-right: 10px;
    padding-bottom: 4px;
    padding-left: 10px;
    position: relative;
    bottom: 5px;
}

.card_info_area .old_price {
    color: rgb(102, 102, 102);
    font-size: 20px;
    text-decoration-line: line-through;
    text-decoration-style: initial;
    text-decoration-color: initial;
    text-decoration-thickness: 1px;
    vertical-align: middle;
    font-weight: 500;

    margin-right: 4px;
}

.price-tag-text .price-tag {
    display: inline;
    vertical-align: middle;
    margin-right: 20px;
    margin-top: -4px;
}

.card_info_desc p {
    color: var(#273043);
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 10px;

    letter-spacing: normal;
}

.reserve_benefit_area .benefit_title {
    color: var(#273043);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 30px;

    letter-spacing: normal;
}

.reserve_benefit_area ul>li {
    min-height: 180px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.reserve_benefit_area ul>li:nth-child(2n+1) {
    background-image: radial-gradient(circle at 100% 100%, rgb(220, 238, 254) 0px, rgb(220, 238, 254) 9px, transparent 9px), radial-gradient(circle at 0px 100%, rgb(220, 238, 254) 0px, rgb(220, 238, 254) 9px, transparent 9px), radial-gradient(circle at 100% 0px, rgb(220, 238, 254) 0px, rgb(220, 238, 254) 9px, transparent 9px), radial-gradient(circle at 0px 0px, rgb(220, 238, 254) 0px, rgb(220, 238, 254) 9px, transparent 9px), linear-gradient(rgb(220, 238, 254), rgb(220, 238, 254)), linear-gradient(rgb(220, 238, 254), rgb(220, 238, 254)), linear-gradient(0deg, transparent 0%, rgb(0, 99, 181) 100%);
    background-color: initial;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 1px;
    padding-right: 1px;
    padding-bottom: 1px;
    padding-left: 1px;
    box-sizing: border-box;
}

.reserve_benefit_area ul>li:nth-child(2n+1) .benefit_content {


    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(220, 238, 254);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    height: 100%;
}

.reserve_benefit_area ul>li:nth-child(2n) {
    background-image: radial-gradient(circle at 100% 100%, rgb(255, 231, 227) 0px, rgb(255, 231, 227) 9px, transparent 9px), radial-gradient(circle at 0px 100%, rgb(255, 231, 227) 0px, rgb(255, 231, 227) 9px, transparent 9px), radial-gradient(circle at 100% 0px, rgb(255, 231, 227) 0px, rgb(255, 231, 227) 9px, transparent 9px), radial-gradient(circle at 0px 0px, rgb(255, 231, 227) 0px, rgb(255, 231, 227) 9px, transparent 9px), linear-gradient(rgb(255, 231, 227), rgb(255, 231, 227)), linear-gradient(rgb(255, 231, 227), rgb(255, 231, 227)), linear-gradient(182deg, transparent 0%, rgb(234, 67, 53) 100%);
    background-color: initial;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 1px;
    padding-right: 1px;
    padding-bottom: 1px;
    padding-left: 1px;
    box-sizing: border-box;
}

.reserve_benefit_area ul>li:nth-child(2n) .benefit_content {


    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 231, 227);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    height: 100%;
}

.reserve_benefit_area .benefit_listing_group {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    display: grid;
    row-gap: 20px;
    column-gap: 20px;
}

.benefit_content .content_top {
    color: var(#273043);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 600;

    letter-spacing: normal;
}

.benefit_listing_group .content_bottom {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: normal;
    font-weight: 400;
}

.benefit_listing_group .benefit_content img {
    display: inline-block;
    width: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.bottom_card_info_sec .btn_group_area .theme_btn {
    font-size: 24px;
    padding-top: 25px;
    padding-right: 35px;
    padding-bottom: 25px;
    padding-left: 35px;
    border-radius: 8px;

}

.theme_btn {
    background-color: #273043;

    font-size: 18px;
    color: rgb(255, 255, 255);
    padding-top: 20px;
    padding-right: 35px;
    padding-bottom: 20px;
    padding-left: 35px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.red_skip_btn {
    background-color: #ffdfdc;
    color: #ec4c3c;
}

.large_theme_btn {
    width: 100%;
    display: block;
}

.shipping_benefit_sec {
    padding-bottom: 400px;
}

.shipping_benefit_sec .heading_area {
    text-align: center;
    color: var(#273043);
    font-size: 28px;
    line-height: 44px;

}

.ship_benefit_items_row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    display: grid;
    row-gap: 20px;
    column-gap: 20px;
    position: relative;
}

.ship_benefit_items_row::before {
    content: "";
    position: absolute;
    width: 100%;
    top: -48px;
    left: 5px;
    right: 0px;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    max-width: 850px;
    height: 1px;
    background-image: linear-gradient(to right, rgb(137, 137, 137) 50%, rgba(255, 255, 255, 0) 0%);
    background-position-x: 50%;
    background-position-y: 100%;
    background-size: 12px 1px;
    background-repeat: repeat-x;
}

.ship_benefit_item_col {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    min-height: 315px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    position: relative;
}

.ship_benefit_item_col::after {
    content: "";
    width: 1px;
    height: 40px;
    background-image: linear-gradient(1800deg, transparent, transparent 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%), linear-gradient(rgb(137, 137, 137), rgb(137, 137, 137), rgb(137, 137, 137), rgb(137, 137, 137), rgb(137, 137, 137));
    background-size: 10px 10px, 100% 10px;
    border-top-width: initial;
    border-right-width: initial;
    border-bottom-width: initial;
    border-left-width: initial;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;





    position: absolute;
    top: -52px;
    left: 3px;
    right: 2px;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
}



.ship_benefit_item_col:nth-child(1) {

    background-color: rgb(236, 243, 255);
}

.ship_benefit_item_col:nth-child(1) .benefit_ico_area {

    background-color: rgb(243, 247, 255);
}

.ship_benefit_item_col:nth-child(2) {

    background-color: rgb(247, 244, 233);
}

.ship_benefit_item_col:nth-child(2) .benefit_ico_area {


    background-color: rgb(255, 250, 230);
}

.ship_benefit_item_col:nth-child(3) {


    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(233, 247, 238);
}

.ship_benefit_item_col:nth-child(3) .benefit_ico_area {


    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(242, 255, 242);
}

.ship_benefit_item_col:nth-child(4) {


    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(245, 236, 255);
}

.ship_benefit_item_col:nth-child(4) .benefit_ico_area {


    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(252, 242, 254);
}

.ship_benefit_item_col .benefit_ico_area {
    width: 110px;
    height: 110px;


    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 255, 255);
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
    margin-top: 20px;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    position: relative;
}

.ship_benefit_item_col .benefit_ico_area img {
    position: absolute;
    display: table;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    right: 0px;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
}

.ship_benefit_item_col .benefit_text_area h4 {
    font-size: 18px;
    text-align: center;
    color: var(#273043);
    margin-bottom: 10px;
    display: block;
    width: 100%;
}

.ship_benefit_item_col .benefit_text_area p {
    font-size: 14px;
    line-height: 21px;
    text-align: center;
    color: var(#273043);
    width: 85%;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
}

.ship_benefit_item_col .benefit_text_area {
    margin-top: 15px;
}

.shipping_benefit_sec .benefit_items_area {
    margin-top: 62px;
}

.skip_and_pay_area p {

    color: rgb(82, 88, 102);
    line-height: 25px;
    font-size: 20px;
    text-align: center;
    display: block;
}

.skip_and_pay_area .skip_link {
    color: rgb(189, 198, 219);
    text-decoration-line: underline;
    text-decoration-style: initial;
    text-decoration-color: initial;
    background-color: rgba(255, 255, 255, 0);
    border-top-width: initial;
    border-right-width: initial;
    border-bottom-width: initial;
    border-left-width: initial;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: initial;
    border-right-color: initial;
    border-bottom-color: initial;
    border-left-color: initial;





    cursor: pointer;
    font-size: 20px;
    text-decoration-thickness: 1px !important;
}

.skip_and_pay_area {
    display: table;
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
}

.bottom_card_info_sec {
    box-shadow: rgba(0, 0, 0, 0.1) 0px -16px 64px 0px;
    position: fixed;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 99;
    bottom: 0px;

    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 255, 255);
    padding-top: 40px;
    padding-bottom: 45px;
    display: none;
}

.bottom_card_info_row {
    display: flex;
    justify-content: center;
    align-items: center;
    row-gap: 50px;
    column-gap: 50px;
}

.bottom_card_info_row .bottom_left_area {
    width: 35%;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 35%;
}

.bottom_card_info_row .bottom_right_area {
    width: 65%;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: 65%;
}

.small_bottom_card_area .card_icon_area {
    max-width: 340px;
    margin-left: auto;
}

.small_bottom_card_area .card_price {
    font-size: 74px;
    text-align: right;
}

.small_bottom_card_area .old_price {
    font-size: 45px;
}

.small_bottom_card_area .gift_price {
    color: rgb(170, 170, 170);
    font-size: 48px;
    line-height: normal;
    bottom: 7%;
}

.small_bottom_card_area .gift_label .g_card_text {
    font-size: 18px;
}

.small_bottom_card_area .gift_label {
    position: absolute;
    top: 10%;
    right: 7%;
}

.small_bottom_card_area .card_info_area {
    margin-bottom: 25px;
}

.bottom_card_info_sec .btn_group_area .theme_btn {
    font-size: 24px;
    padding-top: 25px;
    padding-right: 35px;
    padding-bottom: 25px;
    padding-left: 35px;
    border-radius: 8px;
    border: none;


}

.bottom_card_info_sec .btn_group_area .theme_btn:first-child {
    margin-bottom: 25px;
    background-color: #273043;
    color: #fff;
}

.bottom_card_info_sec .btn_group_area {
    max-width: 648px;
    width: 100%;
    margin-top: auto;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
}


.bottom_discount_price {
    text-align: center;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 6px;
    column-gap: 6px;
}

.bottom_discount_price span {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    text-decoration-line: line-through;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
    color: rgb(102, 102, 102);
}

.return-store {
    font-size: 14px;
    background-color: #ffa41c;
    color: #ffff;
    padding: 18px 30px;
    border: none;
    border-radius: 5px;
    margin: 21px 0 0;
    text-align: right;
    margin-left: auto;
    display: inline-flex;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .card_icon_area .gift_label .g_card_text {
        font-size: 18px;
    }

    .card_info_desc p {
        line-height: 28px;
        font-size: 18px;
    }

    .card_info_area .price-tag-text {
        font-size: 16px;
        padding-top: 10px;
        padding-right: 15px;
        padding-bottom: 10px;
        padding-left: 15px;
    }

    .price-tag-text .price-tag {
        margin-right: 12px;
        max-width: 40px;
        width: 100%;
    }

    .theme_btn {
        font-size: 16px;
    }

    .announcement_item_text {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .ship_benefit_items_row {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }

    .ship_benefit_items_row::before {
        display: none;
    }

    .ship_benefit_item_col::before {
        display: none;
    }

    .ship_benefit_item_col::after {
        display: none;
    }

    .shipping_benefit_sec .benefit_items_area {
        margin-top: 40px;
    }

    .bottom_card_info_sec .btn_group_area .theme_btn {
        font-size: 16px;
        padding-top: 18px;
        padding-right: 35px;
        padding-bottom: 18px;
        padding-left: 35px;
    }

    .bottom_card_info_sec .btn_group_area .theme_btn:first-child {
        margin-bottom: 15px;
    }

    .small_bottom_card_area .card_price {
        font-size: 50px;
        line-height: normal;
    }

    .small_bottom_card_area .old_price {
        font-size: 32px;
    }

    .small_bottom_card_area .gift_price {
        font-size: 38px;
    }

    .small_bottom_card_area .card_info_area {
        margin-bottom: 10px;
    }

    .bottom_card_info_sec {
        padding-top: 20px;
        padding-bottom: 25px;
    }

    .small_bottom_card_area .card_icon_area {
        max-width: 250px;
    }

    .shipping_benefit_sec {
        padding-bottom: 100px;
    }
}

@media (min-width: 576px) {
    .main_content {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .main_content {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .main_content {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .main_content {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .main_content {
        max-width: 1140px;
    }
}

@media (max-width: 1199px) {
    .upsell-pro-details h5 {
        font-size: 24px;
    }

    .header-top p {
        font-size: 13px;
    }

    .upsell-panel-heading h2 {
        font-size: 28px;
    }

    .upsell-panel-heading h3 {
        font-size: 20px;
    }

    .sign-btn button {
        min-width: inherit;
        padding-top: 15px;
        padding-right: 30px;
        padding-bottom: 15px;
        padding-left: 30px;
    }

    .purchase-cont-banner h2 {
        font-size: 25px;
    }

    .purchase-cont-banner h3 {
        font-size: 18px;
    }

    .justify-content-md-center img {
        max-width: 100%;
    }

    .package-btn button {
        width: 100%;
        display: block;
        padding-top: 9px;
        padding-right: 21px;
        padding-bottom: 9px;
        padding-left: 21px;
    }

    .package-btn .ladda-button .ladda-label {
        line-height: 1.4;
    }

    .free-text button {
        margin-top: 30px;
    }

    #app section>.w-50 {
        width: 100% !important;
    }
}

@media only screen and (max-width: 992px) {
    .small_bottom_card_area .old_price {
        font-size: 20px;
    }

    .card_icon_area .gift_card_ico {
        max-width: 100%;
        width: 100%;
    }

    .card_icon_area {
        max-width: 550px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .upsell_inner {
        flex-direction: column;
    }

    .upsell_inner .card_area {
        width: 100%;
    }

    .upsell_inner .card_info_inner {
        width: 100%;
    }

    .upsell_body {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        margin-bottom: 40px;
    }

    .card_info_desc {
        margin-bottom: 20px;
    }

    .card_info_desc p {
        margin-bottom: 15px;
    }

    .shipping_benefit_sec .benefit_items_area {
        margin-top: 20px;
    }

    .skip_and_pay_area {
        margin-top: 30px;
        margin-right: auto;
        margin-bottom: auto;
        margin-left: auto;
    }

    .bottom_card_info_row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        row-gap: 10px;
        column-gap: 10px;
        flex-direction: column;
    }

    .small_bottom_card_area .card_icon_area {
        max-width: 80px;
        margin-top: 0px;
    }

    .small_bottom_card_area .gift_price {
        font-size: 11px;
    }

    .bottom_card_info_sec .btn_group_area .theme_btn {
        font-size: 13px;
        padding-top: 15px;
        padding-right: 35px;
        padding-bottom: 15px;
        padding-left: 35px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    .bottom_card_info_sec .btn_group_area .theme_btn:first-child {
        margin-bottom: 10px;
    }

    .small_bottom_card_area .card_price {
        font-size: 40px;
    }

    .bottom_card_info_row .small_bottom_card_area {
        display: flex;
        flex-direction: row;
        row-gap: 15px;
        column-gap: 15px;
        align-items: center;
        justify-content: center;
    }

    .small_bottom_card_area .card_info_area {
        order: 2;
        margin-bottom: 0px;
    }

    .small_bottom_card_area .card_area {
        order: 1;
    }

    .small_bottom_card_area .gift_label .g_card_text {
        font-size: 5px;
    }

    .bottom_card_info_sec {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .bottom_card_info_row .bottom_left_area {
        width: 100%;
        flex-grow: 0;
        flex-shrink: 1;
        flex-basis: 100%;
    }

    .bottom_card_info_row .bottom_right_area {
        width: 100%;
        flex-grow: 0;
        flex-shrink: 1;
        flex-basis: 100%;
    }

    .shipping_benefit_sec {
        padding-bottom: 250px;
    }
}

@media (max-width: 991px) {
    .upsell-panel-heading h2 {
        font-size: 25px;
    }

    .upsell-panel-heading h3 {
        font-size: 18px;
    }

    .upsell-pro-details h5 {
        font-size: 20px;
    }

    .pro-ben-list li+li {
        margin-top: 8px;
    }

    footer ul li a {
        padding-top: 0px;
        padding-right: 15px;
        padding-bottom: 0px;
        padding-left: 15px;
    }

    .subscribe-check,
    .product-details-table-col h4 {
        font-size: 16px;
    }

    .product-details-table-col h4 span {
        font-size: 12px;
    }

    .descip-in h2 {
        font-size: 24px;
    }

    .descip-in h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .descip-in p {
        font-size: 12px;
    }

    .client-feed p {
        font-size: 14px;
    }

    .upsell-feed li+li {
        margin-top: 20px;
    }

    .info-row-in h3 {
        font-size: 18px;
    }

    .thanks-to-call,
    .info-row-in p {
        font-size: 14px;
    }

    .info-row-in p small+img {
        width: 90px;
    }

    .pricing-price h1 {
        font-size: 25px;
    }

    .product-title h4 {
        font-size: 20px;
    }

    #app .uin-upsell-skip {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .upsell-panel-heading h2 {
        font-size: 22px;
    }

    .sign-btn button {
        font-size: 16px;
        padding-top: 10px;
        padding-right: 20px;
        padding-bottom: 10px;
        padding-left: 20px;
    }

    .descip-in h3 {
        font-size: 14px;
    }

    .descip-in h2 {
        font-size: 18px;
    }

    .client-img img {
        width: 100%;
    }

    .thank-you-wrapper .justify-content-md-center .col-sm-8 {
        max-width: 100%;
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: 100%;
    }

    .receipt-cell,
    .total-cell .details-table-col {
        font-size: 16px;
    }

    .info-row+.info-row {
        margin-top: 20px;
    }

    .info-row-in p {
        margin-bottom: 9px;
    }

    a.btn.btn-primary.btn-lg.send-to-signup-page {
        margin-top: 10px;
    }

    .prd-block .col-md-6 {
        text-align: center;
    }

    .prd-block .pass-text {
        max-width: 100%;
    }

    #app section>.w-50 .display-4 {
        font-size: 2.5rem;
    }

    .product+.product {
        margin-top: 30px;
    }

    .rem1 .justify-content-end,
    .rem1 .justify-content-end.text-right {
        text-align: center !important;
    }

    .thank-you-wrapper .row.justify-content-md-center.mt-25>.col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .upsell_inner {
        row-gap: 10px;
        column-gap: 10px;
    }

    .ship_benefit_items_row {
        grid-template-columns: repeat(1, minmax(250px, 1fr));
    }

    .skip_and_pay_area p {
        font-size: 18px;
    }

    .announcement_item_text {
        font-size: 12px;
    }

    .shipping_benefit_sec {
        padding-bottom: 220px;
    }
}

@media only screen and (max-width: 575px) {
    .card_icon_area .gift_label .g_card_text {
        font-size: 18px;
    }

    .card_info_area .card_price {
        font-size: 34px;
        line-height: normal;
        margin-bottom: 10px;
    }

    .small_bottom_card_area .gift_label .g_card_text {
        font-size: 5px;
    }

    .small_bottom_card_area .card_price {
        margin-bottom: 0px;
    }
}

@media only screen and (max-width: 480px) {
    .card_info_desc p {
        line-height: 25px;
        font-size: 14px;
    }

    .card_info_area .price-tag-text {
        font-size: 12px;
    }

    .price-tag-text .price-tag {
        margin-top: -2px;
        margin-right: 15px;
        max-width: 35px;
    }

    .theme_btn {
        font-size: 13px;
        padding-top: 15px;
        padding-right: 35px;
        padding-bottom: 15px;
        padding-left: 35px;
    }

    .ship_benefit_item_col .benefit_ico_area {
        width: 143px;
        height: 143px;
        margin-top: 30px;
        margin-right: auto;
        margin-bottom: auto;
        margin-left: auto;
    }

    .ship_benefit_item_col .benefit_ico_area img {
        max-width: 98px;
        width: 100%;
    }

    .ship_benefit_item_col .benefit_text_area h4 {
        font-size: 23px;
    }

    .ship_benefit_item_col .benefit_text_area p {
        font-size: 18px;
        line-height: 27px;
        width: 76%;
    }

    .ship_benefit_item_col {
        min-height: 411px;
    }

    .skip_and_pay_area p {
        font-size: 16px;
    }

    .skip_and_pay_area {
        margin-top: 20px;
        margin-right: auto;
        margin-bottom: auto;
        margin-left: auto;
    }

    .announcement_item_text {
        font-size: 10px;
    }

    .announcement_item {
        grid-auto-columns: auto 2rem;
    }
}

@media only screen and (max-width: 420px) {
    .circle_back .large_card_icon_area .gift_label {
        top: 17%;
    }

    .shipping_benefit_sec .heading_area {
        font-size: 24px;
        line-height: 44px;
    }
}

/* confirmation */
.thank-heading {
    margin-top: 35px;
}

.uni-logo img, .uni-logo-mob img {
    width: 250px;
}
.uni-logo-mob img{
    display: none;
}
.thank-heading {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.thank-heading {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.thank-heading-tick {
    width: 48px;
    height: 48px;
    border: 3px solid #3bc73f;
    color: #3bc73f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 18px;
    line-height: 1;
}

.thank-heading-details {
    padding-left: 15px;
}

.thank-heading-details p {
    margin: 0;
    color: #a0a4b1;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.thank-heading-details h4 {
    margin: 0;
    line-height: 1.1;
    color: #333333;

    font-size: 22px;
}

.good-news-cont {
    margin-bottom: 25px;
}

.good-news-cont h5 {
    color: #333333;
    font-size: 16px;

    margin: 0 0 10px 0;
}

.good-news-cont p {
    font-size: 14px;
    color: #5c5c73;
    padding-right: 65px;
    margin: 0;
}

.good-news-cont p a {
    font-weight: bold;
    color: #222354;
}

.map-img-panel {
    margin-bottom: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    overflow: hidden;
}

.map-img-panel img,
.map-img-panel iframe {
    width: 100%;
}

.need-class {
    color: #5c5c73;
    font-size: 14px;
}

.need-class i {
    color: #8c8c9a;
}

.need-class a {
    color: #5c79ff;
}
.uni-logo-mon{
    display: none;
}
.customer-details {
    margin-bottom: 0px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 15px;
}

.customer-details-row-wrap {
    color: #333333;
    font-size: 14px;
}

.customer-details-row-wrap .col-md-2 {
    color: #737373;
}

.customer-details-row-wrap+.customer-details-row-wrap {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #e6e6e6;
}

.right-side-section .logo-container {
    display: none;
}

.form-check input[type="checkbox"]+label,
.form-check input[type="radio"]+label {
    margin: 0;
}

.customer-details-row-wrap p {
    margin: 0;
}

.summery-nav {
    display: none;
}


@media only screen and (max-width: 991px) {
    .return-store {
        padding: 18px 30px;
        margin: 21px 0 0;
        text-align: right;
        margin-left: auto;
        display: flex;
        cursor: pointer;
        width: 100%;
        margin-right: auto;
        justify-content: center;
    }

    .ft-list li {
        padding: 0 2px;
    }    

    .summery-nav {
        display: flex;
    }
    .summery-nav-c {
        
        background-color: #fafafa;
        padding: 11px;
        margin-top: 12px;
    }
    .detail-price-c{
        background-color: #fafafa;
        margin-top: 0;
    }
    .uni-logo-mob img{
        display: block;
    }
    /* .uni-logo img{
        display: none;
    } */

    .thank-you-sec .sec_left .logo-container {
        display: none;
    }

    .thank-you-sec .sec_left .thank-heading {
        margin-top: 0px;
    }
}

