/* 

-- 01 - TYPOGRAPHY SYSTEM
  - FONT SIZE SYSTEM (px)
  10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

*/


/* GLOBAL VARIABLES */
:root {
    --white-color: #FFF;
    --black-color: #000;
    --gray-color: #424242;

    --primary-color: #437991;
    --secondary-color: #8EC63F;
    --tertiary-color: #FFCA00;
    --yellow-color: #ffff00;
    --red-color: #ca002c;
    --red-2-color: #ae2e0c;
    --darkred-color: darkred;

    /* --background-color-1: #E8E6EB; */
    --background-color-1: #f5f5f5;
    /* --background-color-2: #D5C2AB; */
    --background-color-2: #fff6ec;
    --background-color-3: #555938
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "IBM Plex Sans", sans-serif;
}

/* GLOBAL STYLES */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Bootstrap 5 overwriting */
.container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Background Image/Color */
.background-fixed {
    background: url('https://products.thegoodprepper.org/vsl_tsl/img/tgp_bgr_1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* background-color: var(--background-color-2); */
}

.background-fixed:after {
    content: ' ';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    opacity: 0.6;
    z-index: -1;
}

.background-viewheight {
    background: url('https://products.thegoodprepper.org/vsl_tsl/img/tgp_bgr_1.webp');
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background-size: cover;
    position: absolute;
    background-repeat: no-repeat;
    z-index: -2;
}

.tinted-bgr {
    background: var(--black-color);
    opacity: 50%;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    background-size: cover;
    position: absolute;
    background-repeat: no-repeat;
    z-index: -1;
}

.highlighted {
    background-color: var(--yellow-color);
    border-radius: 4px;
    padding: 1px 5px;
}

/* Banners, Paralax */
.paralax {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.prepperliberty.com/tsl/img/paralax.png');
    min-height: 130px;
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 0px 10px -5px var(--black-color);
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
    padding: 10px 15px;
}

.paralax-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(90deg, #000, #3c3c3c, #000); */
    background-color: var(--red-2-color);
    min-height: 130px;
    box-shadow: 0px 0px 10px -5px var(--black-color);
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
    padding: 10px 15px;
}

.paralax p,
.paralax-custom p {
    /* font-family: "IBM Plex Sans", sans-serif; */

    margin: 0;
    padding: 0;
    font-size: 30px;
    text-align: center;
    font-weight: 600;
}

/* Coloring */
.white-text {
    color: #FFF;
}

.text-red {
    color: #cd0000 !important;
}

/* Background Colors */
.bgr-white {
    background-color: var(--white-color);
}

.bgr-black {
    background-color: var(--black-color);
}

/* Text Formats */
.text-bold {
    font-weight: 600 !important;
}

.text-italic {
    font-style: italic !important;
}

.text-underline {
    text-decoration: underline !important;
}

/* TODO Placeholder */
.todo {
    color: #555;
    border: 1px solid #000;
}

.todo p {
    margin: 0;
    font-size: 24px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

/* Headlines */
.headline-1 {
    font-size: calc(30px + 45 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.headline-2 {
    font-size: calc(20px + 18* ((100vw - 350px) / (1920 - 350)));
    font-weight: 600;
    letter-spacing: 0.5px;
}

.headline-3 {
    font-size: calc(20px + 8*((100vw - 350px) /(1920 - 350)));
    font-weight: 600;
    font-style: italic;
}

.headline-1--disc {
    font-size: calc(30px + 30*((100vw - 350px) /(1920 - 350)));
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.headline-2--disc {
    font-size: calc(22px + 25*((100vw - 350px) /(1920 - 350)));
    font-weight: 600;
    letter-spacing: 0.5px;
}

.headline-3--disc {
    font-size: calc(25px + 25*((100vw - 350px) /(1920 - 350)));
    font-weight: 600;
    letter-spacing: 0.5px;
}

.headline-bonus--upper {
    font-size: calc(20px + 4 * ((100vw - 350px) / (1920 - 350)));
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}

.headline-bonus {
    font-size: calc(30px + 18 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 700;
    text-align: center;
    color: darkred;
    margin-bottom: 0;
}

.headline-bonus--subhead {
    font-size: calc(22px + 8 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.headline-bonus--pages {
    font-size: calc(22px + 8 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 600;
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

.headline-banners {
    font-size: 40px;
    font-size: calc(25px + 22 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 600 !important;
    margin: 15px 0;
}


/* Sections, Containers, Boxes */
.headline-section>*,
.headline-section--tsl>* {
    /* font-family: 'nobel' !important; */
}

.headline-section {
    color: #FFF;
    padding: 20px 25px 20px 25px;
    max-width: 1300px
}

.tsl-section {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 0px 10px -5px var(--black-color);
    background-color: var(--white-color);
}

.tsl-section:nth-child(1) {
    margin-top: 20px;
}

.tsl-section:nth-child(2) {
    margin-top: 20px;
}

.tsl-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 50px;
}

.tsl-paragraphs.reset {
    padding: 0 10px;
}

.vsl-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 50px;
}

.custom-list,
.custom-list--alarm-bell {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tsl_paragraphs_inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tsl_paragraphs_inner--figure {
    margin-bottom: 0;
}

@media (max-width: 769px) {
    .tsl_paragraphs_inner--figure.bottom {
        margin-bottom: 20px !important;
    }

    .tsl_paragraphs_inner--figure.top {
        margin-top: 20px !important;
    }
}

.vsl-paragraphs>p,
.tsl_paragraphs_inner>p,
.tsl-paragraphs>p,
.custom-list,
.simple-list,
.custom-list--check-p,
.custom-list--x-p,
.custom-list--alarm-bell {
    font-size: calc(20px + 8 * ((100vw - 350px) / (1920 - 350)));
    /* font-family: Arial, Helvetica, sans-serif; */
    margin: 0;
}

.custom-list--check-bullet {
    display: inline;
    max-width: 30px !important;
}

.custom-list--check-p,
.custom-list--x-p {
    display: inline;
}

.simple-list {
    margin: 0px 0px 0px 40px;
}

.custom-list,
.custom-list--alarm-bell,
.custom-list--x-p {
    list-style: none;
    margin: 0px 60px 0px;
}

@media (max-width: 768px) {

    .custom-list,
    .custom-list--alarm-bell,
    .custom-list--x-p {
        list-style: none;
        margin: 0px 30px 0px;
    }

    .simple-list {
        margin: 0px 0px 0px 16px;
    }
}

@media (max-width: 425px) {

    .custom-list,
    .custom-list--alarm-bell,
    .custom-list--x-p {
        list-style: none;
        margin: 0px 10px 0px;
    }

    .simple-list {
        margin: 0px 0px 0px 5px;
    }
}

.custom-list li,
.custom-list--alarm-bell li,
.custom-list--x-p li {
    position: relative;
}

.custom-list--x-p li {
    padding-bottom: 10px;
}

.custom-list--x-p li:last-child {
    padding-bottom: 0px;
}

.custom-list li:before {
    content: "\2713";
    color: darkred;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
}

.custom-list--alarm-bell li:before {
    content: url('../img/alarm-filled.svg');
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1.2em;
    position: absolute;
    line-height: 1.9;
}

.custom-list--x-p li:before {
    content: "❌";
    display: inline-block;
    margin-left: -1.5em;
    position: absolute;
}

/* Specials */
.special-container {
    border: 2px solid #584f47;
    padding: 20px 25px;
    box-shadow: 15px 15px #584f47;
    margin-bottom: 20px;
}

/* Special Banner for Guarantee */
.special-banner {
    max-width: 1170px;
    padding: 30px 70px;
    margin-left: auto;
    margin-right: auto;
    background-color: #6b6b6e;
}

.special-banner .special-header:first-child {
    font-size: calc(24px + 16 * ((100vw - 350px) / (1920 - 350)));
}

.special-banner .special-header:last-child {
    font-size: calc(18px + 12 * ((100vw - 350px) / (1920 - 350)));
}

/* Miscelaneous */
.delimiter {
    margin: 30px 0;
    border-top: 1px solid #333;
}

figcaption {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
}

figcaption.special-caption {
    text-align: center;
    font-size: calc(16px + 3 * ((100vw - 350px) / (1920 - 350)));
    font-style: italic;
    margin-top: 5px;
    color: #6e6e6e;
}

/* QUERIES */
@media (max-width: 575px) {
    .tsl-section:nth-child(1) {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .headline-section {
        padding: 10px 22px 10px;
    }

    .vsl-paragraphs {
        padding: 0px 10px 30px;
    }

    .vsl-paragraphs:first-child {
        display: none;
    }

    .tsl-paragraphs {
        padding: 48px 30px;
    }

    .video_container {
        min-height: calc(177.778vw) !important
    }
}

@media screen and (max-width: 767px) {
    .video_vimeo {
        height: calc(177.778vw) !important
    }
}

/* Break (<br />) for desktop only */
@media (min-width: 1025px) {
    .line-break_mobile br {
        /* display: none !important; */
    }

    .line-break_mobile::after {
        /* content: ' '; */
        /* display: inline; */
    }
}

@media (max-width: 1024px) {
    br:not(.line-break br) {
        display: none
    }

    .responsive-br::after {
        content: ' ';
        display: inline;
    }

    .line-break_mobile br {
        display: inline !important;
    }
}

/* References Custom Styling */
.ref-text p {
    color: #9C9C9C !important;
    font-size: 13px !important;
}

.ref-link {
    word-break: break-all;
}

.accordion-button {
    font-size: 1.2em !important;
    font-weight: bold;
    border: 1px solid #7f1619 !important;
}

.accordion-button:focus {
    border-color: #7f1619 !important;
    box-shadow: none !important;
}

.accordion-button:hover,
.accordion-button:not(.collapsed) {
    color: black !important;
    background-color: white !important;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

/* Vimeo Video Container overwriting */
/* Vimeo_video */
.video_container {
    max-width: 1170px !important;
    min-width: 240px !important;
    margin: 0 auto !important;
}

.video {
    align-self: center;
    justify-self: center;
}

.video iframe {
    height: 300px;
}

/* for TTB BUTTONS */
#action_div {
    display: none;
}

/* VSL Sound Icon-Text */
.sound-icon {
    background: url('https://www.prepperliberty.com/statics/images/Audio_Icon.png');
    background-repeat: no-repeat;
    background-size: contain;
    height: auto;
    width: 25px;
    padding-right: 30px;
}

.sound-on p {
    color: rgb(0, 0, 0);
    margin: 0px !important;
    font-size: 18px;
}

/* Bootstrap iframe custom ratios - Vertical */
.ratio-16x9-custom {
    --bs-aspect-ratio: calc(9/16 * 180%);
}

@media(max-width: 575px) {
    .ratio-16x9-custom {
        --bs-aspect-ratio: calc(9/16 * 300%);
    }
}

/* Testimonial Videos */
.video-testimonial--box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: -webkit-fill-available;
}

.video-testimonials--name {
    color: gray;
    text-align: center;
}

/* Second tesimonial style */
.testimonial-2-box {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #000;
    display: inline-block;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    margin: 35px 10px 10px;
    position: relative;
    text-align: center;
    background-color: #ffffff;
    border-radius: 5px;
    border-top: 10px solid var(--red-2-color);
}

.testimonial-2-box *,
.testimonial-2-box *:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

.testimonial-2-box--inner {
    padding: 2rem 1rem;
}

.testimonial-2-box--inner:before {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    color: var(--red-2-color);
    content: "\f10e";
    font-family: 'FontAwesome';
    font-size: 32px;
    font-style: normal;
    left: 50%;
    line-height: 60px;
    position: absolute;
    top: -35px;
    width: 60px;
}

.testimonial-2-box .testimonial-2-author {
    color: #3c3c3c;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0 5px;
}

.testimonial-2-box .testimonial-2-quote {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px;
}

.testimonial-2-quote {
    font-size: calc(15px + 6*((100vw - 350px) /(1920 - 350)));
}

.testimonial-2-rating {
    font-size: 20px;
    margin: 10px 0 10px;
}

.standout-testimonial {
    box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px -2px 4px, rgba(0, 0, 0, 0.3) 0px 0px 13px -3px, var(--red-2-color) 0px -3px 0px;
}

.standout-testimonial p {
    font-size: calc(20px + 6 * ((100vw - 350px) / (1920 - 350)));
}

.standout-testimonial-author {
    color: #3c3c3c;
    font-size: calc(20px + 6 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0 5px;
    text-align: right;
    font-weight: bold;
}

.standout-testimonial-rating {
    font-size: calc(20px + 6 * ((100vw - 350px) / (1920 - 350)));
    margin: 10px 0 10px;
    text-align: center;
}

/* Buy Buttons */
.cart-button:link,
.cart-button:visited {
    text-decoration: none !important;
    font-size: calc(14px + 4 * ((100vw - 350px) / (1920 - 350)));
    text-align: center;
    color: #212539;
}

.cart-button:active,
.cart-button:hosver {
    text-decoration: none !important;
    color: #212539;
}

.cart-button p {
    margin-top: 10px;
}

@media (min-width: 576px) {
    .big-btn {}

    .small-btn {
        /* padding: 0 24px; */
    }

    .small-btn a,
    .big-btn a {
        transition: transform 0.5s ease;
    }

    .small-btn a:hover,
    .big-btn a:hover {
        transform: scale(1.02);
    }
}

/* @media (max-width: 575px) {

    .big-btn,
    .small-btn:not(:last-of-type) {
        padding-bottom: 20px;
    }
} */

/* CTA BUTTON */
.cta-btn,
.cta-btn:link,
.cta-btn:visited {
    display: block;

    color: var(--white-color);
    font-size: calc(25px + 15 * ((100vw - 350px) / (1920 - 350)));
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;

    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #000;
    background-color: #ffd814;
    border-radius: 5px;

    /* width: 80%; */
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 10px;
    height: auto;

    transform: scale(1);
    animation: pulsing 1s infinite;

    cursor: pointer;
}

.cta-btn:active,
.cta-btn:hover {
    color: #000;
    background-color: #f7ca00;
}

@keyframes pulsing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .3);
    }

    70% {
        transform: scale(1.01);
        box-shadow: 0 0 0 10px transparent;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent;
    }
}

.our-customers-say {
    font-size: calc(16px + 2*((100vw - 350px) /(1920 - 350))) !important;
    text-align: center;
}

/* FAQ */
.faq-title {
    font-size: calc(30px + 8*((100vw - 350px) /(1920 - 350)));
    padding: 20px 0;
    margin: 0;
    color: white;
    font-weight: 500;
    text-align: center;
}

.accordion-faq {
    background-color: var(--red-2-color);
    padding: 0px 75px 40px;
    border-radius: 15px !important;
}

.accordion-item-faq {
    background: transparent;
    margin-bottom: 15px;
    border: none;
}

.accordion-button-faq {
    /* background: #ebebeb; */
    /* border-top-left-radius: 2.1875rem !important;
    border-top-right-radius: 2.1875rem !important; */
    border-radius: 15px 15px 15px 15px !important;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button-faq:not(.collapsed) {
    background-color: #ececec !important;
}

.accordion-body-faq {
    color: black;
    background: white;
    border-radius: 0 0 15px 15px !important;
    /* border-bottom-right-radius: 2.1875rem;
    border-bottom-left-radius: 2.1875rem; */
    padding-top: 40px;
    margin-top: -30px;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
    padding-top: 30px;
    margin-top: -30px;
    border-radius: 0 0 15px 15px !important;
    /* border-bottom-right-radius: 50% !important;
    border-bottom-left-radius: 50% !important; */
}

.outside-tsl {
    padding: 0 50px 40px;
}

.outside-tsl figcaption.special-caption {
    margin-top: 20px;
    margin-left: 40px;
    margin-right: 40px;
}

@media (max-width: 768px) {
    .outside-tsl {
        padding: 0 0 40px;
    }

    .outside-tsl .delimiter {
        margin-left: 40px;
        margin-right: 40px;
    }

    .accordion-faq {
        border-radius: 0 !important;
        padding: 0px 30px 40px;
    }

    .accordion-ref {
        margin-left: 30px;
        margin-right: 30px;
    }

    .outside-tsl figcaption.special-caption {
        margin-left: 30px;
        margin-right: 30px;
    }
}

@media (max-width: 425px) {
    .accordion-faq {
        padding: 0px 20px 40px;
    }

    .accordion-ref {
        margin-left: 20px;
        margin-right: 20px;
    }

    .outside-tsl figcaption.special-caption {
        margin-left: 20px;
        margin-right: 20px;
    }
}


/* Video Testimonials Stuff */
.video-testimonial--box-inner {
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.video-overlay.active {
    display: flex;
}

.video-overlay-bgr {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://products.thegoodprepper.org/vsl_tsl/img/tgp_bgr_1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    object-fit: cover;
    object-position: center center;
    z-index: -2;
}

.overlay-darken {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.video-overlay.active {
    display: flex;
    /* show when the video ends */
}

.video-overlay h2 {
    margin: 20px;
    color: white;
    text-align: center;
}

.video-overlay p {
    margin: 10px;
    color: white;
    text-align: center;
}

.video-overlay a {
    padding: 10px 20px;
    /* background-color: #009578; */
    color: black;
    text-decoration: none;
    border-radius: 5px;
}


.video-control-bar {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    bottom: .8em;
    left: .8em;
    right: .8em;
    height: 3.2em;
}

.replay-btn-container {
    width: 5.6em;
    height: 3.2em;
    margin: 0 .8em 0 0;
}

.video-testimonial--box-replay-btn:hover,
.video-testimonial--box-replay-btn:focus {
    background-color: #00adef;
}

.video-testimonial--box-replay-btn {
    font-family: inherit;
    border-radius: 4px;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    background-color: rgba(0, 0, 0, .9);
    width: 5.6em;
    height: 3.2em;
    color: #fff;
    position: relative;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    border: none;
    appearance: none;
    z-index: 19;
    background-color: #454545;
    transform: translateZ(0);
    transition: opacity .25s ease-out, background-color 40ms, color 40ms;
}

.video-testimonial--box-replay-btn-svg {
    width: 2em;
    height: 2em;
    transform: scaleX(-1);
    fill: #FFF;
}

.video-testimonial--box-replay-btn-tag {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.video-testimonial--box-button-play-btn-tag-text {
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .9);
    font-size: 12px;
    letter-spacing: 0;
    bottom: 2.66667em;
    padding: .66667em 1em;
    height: 2.66667em;
    line-height: 1.25em;
    border-radius: 4px;
    transition: opacity .15s ease-out;
    position: absolute;
    font-weight: 700;
    white-space: pre;
    transform: translateX(-50%);
    cursor: default;
}

@media (max-width: 575px) {
    .video-overlay h2 {
        margin: 0px 30px 10px 30px;
        font-size: 20px;
    }

    .video-overlay p {
        margin: 0px 10px 10px 10px;
        font-size: 13px;
    }

    .video-overlay a {
        padding: 3px;
        font-size: calc(20px + 20 * ((100vw - 350px) / (1920 - 350)));
    }

    .video-overlay .cta-btn,
    .video-overlay .cta-btn:link,
    .video-overlay .cta-btn:visited {
        max-width: 280px;
    }

    .video-control-bar {
        position: absolute;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        bottom: 0;
        left: 0;
        right: unset;
        height: 3.2em;
    }

    .replay-btn-container {
        width: 5.6em;
        height: 1.3em;
        margin: 0 0 0 3px;
    }

    .video-testimonial--box-replay-btn {
        width: 56px;
        height: 32px;
    }

    .video-testimonial--box-replay-btn-svg {
        width: 1.3em;
        height: 1.3em;
        transform: scaleX(-1);
    }
}

.newspaper {
    background-image: url(https://products.thegoodprepper.org/vsl_tsl/img/textures/beige-paper.png);
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
    background-color: var(--beige-color);
    position: relative;
}

@media (max-width: 757px) {
    .newspaper {
        gap: 5px;
        padding: 25px;
    }
}

.newspaper:before {
    position: absolute;
    content: '';
    background: url("https://products.thegoodprepper.org/vsl_tsl/img/textures/usa-flag.png");
    background-repeat: no-repeat;
    width: 100%;
    height: 435px;
    top: 0;
    left: 0;
    z-index: 1;
    background-size: cover;
    background-position: top;
    opacity: 0.2;
}

.newspaper h3 {
    font-family: inherit
}

.newspaper p,
.newspaper span {
    font-family: inherit;
    font-size: calc(18px + 8*((100vw - 350px) /(1920 - 350)));
    line-height: 30px;
    margin: 0;
    font-weight: 400;
    color: black;
}

/* Buy Buttons Grid System */
.buy-btns-grid {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
}

@media(max-width: 575px) {
    .buy-btns-grid {
        grid-template-rows: repeat(3, auto);
        grid-template-columns: 1fr;

        row-gap: 30px;

        justify-items: center;
        align-items: center;
    }

    .buy-btns-grid .grid-item-1 {
        grid-row: 3 / -1;
        grid-column: 1 / 2;


    }

    .buy-btns-grid .grid-item-6 {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }

    .buy-btns-grid .grid-item-3 {
        grid-row: 2 / 3;
        grid-column: 1 / 2;
    }
}

.mini-title-dr {
    font-weight: 700;
    color: #000;
    margin: 1rem 0 0.5rem;
    padding-bottom: 2px;
    border-bottom: 4px solid #9c2729;
    display: inline-block;
    max-width: max-content
}

@media (max-width: 575px) {
    .mini-title-dr {
        margin: 1rem 0 0.5rem;
    }
}

.pricing-intro {
    text-align: center;
    margin: 0 0 25px !important;
    font-weight: 700;
    font-size: calc(24px + 12 * ((100vw - 350px) / (1920 - 350))) !important;
    color: var(--darkred-color);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    width: 100%;
    margin: 0 auto 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--white-color);
    border: 2px solid #ddd;
    border-radius: 14px;
    padding: 1.75rem 0.5rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 18px -8px rgba(0, 0, 0, 0.18);
}

.pricing-card.featured {
    border-color: var(--darkred-color);
    border-width: 3px;
    background: #fffaf3;
    transform: scale(1.04);
    box-shadow: 0 8px 28px -10px rgba(139, 0, 0, 0.35);
}

.pricing-card--body {
    display: flex;
    flex-direction: column;
}

.ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--darkred-color);
    color: var(--white-color);
    font-size: calc(12px + 2 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 6px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.ribbon.popular {
    background: var(--tertiary-color);
    color: var(--darkred-color);
}

.case-qty {
    font-size: calc(42px + 28 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 800;
    color: var(--darkred-color);
    line-height: 1;
    margin: 0.75rem 0 0.5rem;
}

.case-qty .unit {
    font-size: calc(16px + 6 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 600;
    color: #555;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

.servings-line {
    font-size: calc(15px + 4 * ((100vw - 350px) / (1920 - 350)));
    color: #666;
    margin: 0.4rem 0 1rem;
}

.pricing-divider {
    height: 1px;
    background: #eee;
    margin: 0.8rem auto;
    width: 70%;
}

.save-or-free {
    font-size: calc(20px + 8 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 700;
    color: #1a7a3d;
    margin: 0.5rem 0 0.3rem;
}

.save-or-free.shipping {
    color: var(--darkred-color);
}

.price {
    font-size: calc(28px + 18 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 800;
    color: #222;
    margin: 0.3rem 0 0.4rem;
}

.bonus-line {
    font-size: calc(15px + 2 * ((100vw - 350px) / (1920 - 350)));
    color: var(--darkred-color);
    font-weight: 600;
    margin-top: 0.6rem;
    line-height: 1.4;
}

@media (max-width: 720px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pricing-card.featured {
        transform: none;
    }
}

.pricing-intro--secondary {
    margin-top: 35px !important;
}

.pricing-row--single {
    grid-template-columns: minmax(280px, 420px);
    justify-content: center;
}

.pricing-row:not(.pricing-row--single):not(.pricing-row--3) {
    grid-template-columns: 1fr 1fr;
}

.pricing-row--3 {
    grid-template-columns: 1fr 1.15fr 1fr;
}

.pricing-row--3> :nth-child(1) {
    order: 2;
}

.pricing-row--3> :nth-child(2) {
    order: 1;
}

.pricing-row--3> :nth-child(3) {
    order: 3;
}

@media (max-width: 960px) {
    .pricing-row--3 {
        grid-template-columns: 1fr;
    }

    .pricing-row--3> :nth-child(1) {
        order: 1;
    }

    .pricing-row--3> :nth-child(2) {
        order: 2;
    }

    .pricing-row--3> :nth-child(3) {
        order: 3;
    }
}

p.pricing-card--caption {
    margin-top: 12px;
    font-size: calc(18px + 2 * ((100vw - 350px) / (1920 - 350)));
}

.section-break {
    width: 100%;
    border: 1px solid var(--outline);
    display: block;
}

/* DR Comparison Table */
.dr-comparison-table {
    width: 100%;
    border: 2px solid #e0ddd8;
    border-radius: 4px;
    overflow: hidden;
}

.dr-comparison-table--row {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    border-bottom: 1px solid #e0ddd8;
}

.dr-comparison-table--row:last-child {
    border-bottom: none;
}

.dr-comparison-table--header {
    background: #2b2b2b;
    color: #fff;
    font-weight: 700;
    font-size: calc(13px + 3 * ((100vw - 350px) / (1920 - 350)));
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dr-comparison-table--cell {
    padding: 0.75rem 1rem;
    font-size: calc(20px + 4 * ((100vw - 350px) / (1920 - 350)));
    display: flex;
    align-items: center;
}

.dr-comparison-table--row:not(.dr-comparison-table--header):not(.dr-comparison-table--winner):nth-child(odd) {
    background: #f9f7f4;
}

.dr-comparison-table--row:not(.dr-comparison-table--header):not(.dr-comparison-table--winner):nth-child(even) {
    background: #fff;
}

.dr-comparison-table--winner {
    background: var(--darkred-color);
    color: #fff;
    font-weight: 700;
    font-size: calc(15px + 3 * ((100vw - 350px) / (1920 - 350)));
}

.dr-comparison-table--winner .dr-comparison-table--cell {
    padding: 1rem;
}

/* Mobile: stack cells */
@media (max-width: 575px) {
    .dr-comparison-table--header {
        display: none;
    }

    .dr-comparison-table--row {
        display: block;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e0ddd8;
    }

    .dr-comparison-table--cell {
        display: block;
        padding: 0.2rem 0;
        font-size: calc(14px + 2 * ((100vw - 350px) / (1920 - 350)));
    }

    .dr-comparison-table--cell::before {
        content: attr(data-label) ": ";
        font-weight: 700;
        color: var(--gray-color);
    }

    .dr-comparison-table--winner .dr-comparison-table--cell::before {
        color: rgba(255, 255, 255, 0.7);
    }

    .dr-comparison-table--row:first-child .dr-comparison-table--cell::before {
        content: none;
    }

    .dr-comparison-table--winner .dr-comparison-table--cell {
        padding: 0.2rem 0;
    }

    .dr-comparison-table--winner {
        padding: 1rem;
    }
}

/* Buy Button Captions */
.buy-btns-grid .cart-button {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.buy-btns-grid .cart-button img {
    position: relative;
    z-index: 1;
}

.buy-btns-grid .cart-button p {
    margin: -22px 0 0 0;
    padding: 36px 14px 12px;
    background: #faf8f5;
    border: 1px solid #cecece;
    border-top: none;
    border-radius: 0 0 6px 6px;
    font-size: calc(12px + 5 * ((100vw - 350px) / (1920 - 350)));
    line-height: 1.45;
    color: #000000;
    text-align: center;
}

.buy-btns-grid .grid-item-6 .cart-button p {
    background: #fff9f0;
    border-color: #9c0c0c;
    border-width: 3px;
    color: var(--black-color);
    font-weight: 500;
}

/* Buy Button */
.btn--container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
}

.btn--sml,
.btn--big {
    border-radius: 30px;
}

.btn--sml {
    border: 1px solid #cecece;
    max-width: 335px;
}

.btn--big {
    border: 3px solid #9c0c0c;
    min-width: 330px;
}

.btn--5x {
    position: relative;
}

.btn--label {
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 200px;
    background-color: #9c0c0c;
    padding: 5px 40px 2.5px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.btn--label p {
    color: white;
    font-weight: 800;
    margin: 0 !important;
    text-align: center;
    font-size: 18px;
}

.btn--body-title {
    text-align: center;
    font-weight: bold;
    font-size: 23px;
    margin: 10px 0 0 0;
}

.btn--body-subtitle {
    text-align: center;
    font-weight: normal;
    font-size: 17px;
    margin: 0 0 0 0;
}

.btn--body-img {
    position: relative;
    padding: 0 10px;
    margin: 0;
    width: -webkit-fill-available;
}

.btn--body-img-quantity {
    position: absolute;
    top: 10%;
    left: 40px;
    background: #f5c518;
    width: 62px;
    height: 70px;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transform: rotate(-10deg);
}

.btn--body-img-quantity p {
    margin: 0;
    font-family: Impact, sans-serif;
    font-weight: 600;
    font-size: 38px;
    color: #1a1a1a;
}

.btn--body-prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn--body-prices .price-old,
.btn--body-prices .price-new {
    margin: 0;
    line-height: 60px;
}

.btn--body-prices .price-old {
    font-size: 35px;
    color: gray;
    text-decoration: line-through;
    text-decoration-color: red;
}

.btn--body-prices .price-new {
    font-size: 60px;
    font-weight: bold
}

.btn--body-shipping {
    text-align: center;
    font-weight: 600;
    margin: 2px 0;
}

.btn--body-button,
.btn--body-button:link,
.btn--body-button:visited {
    text-decoration: none;
    color: black;
    background: linear-gradient(to bottom, #ffcf00, #ffbe00);
    display: block;
    max-width: 90%;
    margin: 10px auto 5px;
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0px 1px 4px #cbcbcb;

}

.btn--body-button:active,
.btn--body-button:hover {
    text-decoration: none;
    color: black;
}

figure.btn--body-payment-methods {
    margin: 0;
}

figure.btn--body-payment-methods.btn--body-payment-methods--mobile {
    display: none;
}

@media (max-width: 768px) {
    .btn--container {
        flex-wrap: wrap;
    }

    .btn--body-payment-methods--desktop {
        display: none !important;
    }

    figure.btn--body-payment-methods.btn--body-payment-methods--mobile {
        display: block !important;
        max-width: 150px;
        margin: 0 auto;
    }

    .btn--body-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .btn--body-right {
        width: 400px !important;
    }

    .btn--body-prices {
        flex-direction: column;
        gap: 0;
    }

    .btn--body-prices .price-old {
        font-size: 25px;
        color: gray;
        text-decoration: line-through;
        text-decoration-color: red;
    }

    .btn--body-prices .price-new {
        font-size: 50px;
        font-weight: bold;
    }

    .btn--body-prices .price-old,
    .btn--body-prices .price-new {
        margin: 0;
        line-height: 40px;
    }

    .btn--body-button {
        font-size: 25px !important;
    }

    .btn--body-img {
        padding: 0 !important;
    }

    .btn--body-guarantee,
    .btn--body-save {
        display: none !important;
    }

    .btn--container {
        gap: 30px;
    }

    .btn--1x {
        order: 3
    }

    .btn--5x {
        order: 1
    }

    .btn--3x {
        order: 2
    }

    .btn--body-img-quantity {
        position: absolute;
        top: 20%;
        left: 10px;
        background: #f5c518;
        width: 62px;
        height: 70px;
        clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transform: rotate(-10deg);
    }

    .btn--sml {
        max-width: fit-content;
    }
}

.btn--body-guarantee,
.btn--body-save {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 10px auto;
}

.btn--body-guarantee-text,
.btn--body-save-text {
    flex: 0 0 auto;
    white-space: nowrap;
}

.btn--body-guarantee-text {
    color: #9c0c0c;
    font-weight: 500;
    font-size: 16px;
}

.btn--body-save-text {
    color: #9c0c0c;
    font-weight: 600;
    font-size: 22px;
}

.btn--body-guarantee-hl,
.btn--body-save-hl {
    flex: 1 1 0;
    border-top: 1px solid black;
}

/* Card-level clickable link wrapper */
.btn--card-link,
.btn--card-link:link,
.btn--card-link:visited {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;

}

@media (min-width: 578px) {

    .btn--card-link,
    .btn--card-link:link,
    .btn--card-link:visited {
        transition: transform 0.5s ease;
    }

    .btn--card-link:hover,
    .btn--card-link:active {
        text-decoration: none;
        color: inherit;
        transform: scale(1.02);
    }
}

/* 5x card taller than 1x and 3x */

.btn--card-link {}

.btn--sml .btn--p-under-card {
    background-color: #faf8f5;
    margin: 0;
    padding: 4px;
    border-top: 1px solid #cecece;
    text-align: center;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.btn--big .btn--p-under-card {
    background-color: #fff9f0;
    margin: 0;
    padding: 4px;
    border-top: 3px solid #9c0c0c;
    text-align: center;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    color: black;
    font-weight: 500;
}

.btn--tsl-paragraphs-fix {
    padding: 50px 50px;
}

@media (max-width: 768px) {
    .btn--tsl-paragraphs-fix {
        padding: 0px;
    }

}