html {
    font-size: 16px;
    font-family: "Helvetica", Sans-serif;
    color: #3a3a3a;
    scroll-behavior: smooth;
    background-color: #F1F4F8;
}

* {
    box-sizing: border-box;
}

.container {
    padding: 0;
    min-width: 320px;
}


.bg-white {
    background-color: #fff;
}

.w-100 {
    width: 100%;
}

.w-80 {
    width: 80%;
}

.d-flex {
    display: flex;
}

.m-auto {
    margin: auto;
}

.p-10 {
    padding: 10px 0;
}

.p-20 {
    padding: 20px 0;
}

.font-12 {
    font-size: .75rem;
}

.font-bold {
    font-weight: 700;
}

.wrap-block {
    padding: 0 10px;
    padding: 25px 20px 0 20px;
}

.group {
    display: flex;
    flex-direction: column;
}

.group>label {
    font-weight: 700;
    padding: 10px 0;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    border-radius: 5px;
    background: transparent;
}

input,
select {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    padding: 12px 18px;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(130, 137, 150, 0.23), 0 1px 0 rgba(255, 255, 255, 0.95);
}

.form-groupe-item label,
.submit-form {
    cursor: pointer;
}

.weight-700 {
    font-weight: 700;
}

.hide {
    display: none;
}



.expiry-section,
.state-zip {
    display: flex;
    justify-content: space-between;
}

.expiry-section>div {
    width: 45%;
}

.address-block>input {
    margin-bottom: 20px;
}

.block p {
    font-weight: 700;
}

.form-groupe-item {
    display: flex;
    justify-content: space-between;
}

.items>div {
    padding: 5px 0;
}

.submit-form {
    color: rgb(255, 255, 255);
    background: rgb(1, 116, 199);
    font-size: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-bottom: 4px solid rgba(0, 0, 0, 0.13);
    display: block;
    width: 100%;
}

.img-fluid {
    display: flex;
}

.img-fluid>img {
    width: 100%;
}


div.additional-info p {
    text-align: center;
    font-weight: 500;
    font-size: .875rem;
}

.discount {
    display: flex;
    margin: auto;

}

.save50 {
    width: 84%;
    padding: 15px 10px;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: rgba(47, 47, 47, 0.541176);
}

.quardsave {
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #3c763d;
    border-color: #3c763d;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    background-color: #dff0d8;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-left: 0;
}

.down-save {
    color: #3c763d;
    text-align: right;
    font-size: .875rem;
    padding: 5px 0;
}


.title-details {
    display: none;
}

.right-section-top {
    display: flex;
    flex-direction: column;
}

.top-left {
    order: 1;
    text-align: center;
}

.top-right {
    order: 2;
}

.top-right img {
    max-width: 300px;
    margin: auto;
}

.right-section-top p:not(.font-bold) {
    font-weight: normal;
}

hr.dotted {
    width: 60%;
    border: none;
    border-top: 2px dotted #000;
    color: #000;
    background-color: transparent;
    height: 1px;
    margin: 20px auto;
}

.testimonials img {
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.testimonials>div {
    padding: 15px 0;
}

.terms-block {
    padding: 15px 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.terms-block p::before {
    content: "→";
    margin-right: 10px;
    font-size: 1.2rem;
    color: #000;
}


@media screen and (min-width: 1024px) {

    .wrap-block {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        padding: 25px 20px 0 20px;
    }

    .wrap-block>div {
        width: 48%;
    }

    .title-details {
        display: block;
    }

    .right-section-top {
        flex-direction: row;
    }

    .top-right {
        width: 25%;
        order: 1;
    }

    .top-left {
        width: 73%;
        order: 2;
        text-align: left;
    }

    hr.dotted {
        margin: 20px 0;
    }

}

@media screen and (min-width: 1366px) {

    .container {
        width: 80%;
        max-width: 1200px;
        margin: auto;
    }
}