/* 

-- 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;

    --red-color: #bb2b24;
    --darkred-color: darkred;
    --green-color: #2a4a17;
    --light-green-color: #00B050;
    --orange-color: #f15415;
    --yellow-color: gold;


}

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

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

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

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

/* Background Image/Color */
.background-fixed {
    background: url('https://www.thestockpilesavior.com/tsl/img/lead/background-cellar.png');
    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://www.thestockpilesavior.com/tsl/img/lead/background-cellar.png');
    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: #ffe763;
    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-custom.no-paralax-bgr {
    background-color: none;
}

.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;
}

.text-underline-red {
    text-decoration: underline !important;
    text-decoration-color: var(--red-color) !important;
}

.text-underline-orange {
    text-decoration: underline !important;
    text-decoration-color: var(--orange-color) !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(28px + 24 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: georgia;
    margin-bottom: 40px;
    line-height: 1.25;
}

.headline-2 {
    font-size: calc(18px + 14 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 600;
    letter-spacing: 0.5px;
    /* line-height: 70px; */
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .headline-2 {
        line-height: 28px;
    }
}

.headline-3 {
    font-size: calc(17px + 14*((100vw - 350px) /(1920 - 350)));
    font-weight: 500;
    line-height: 40px;
}

@media (max-width: 575px) {
    .headline-3 {
        line-height: 25px;
    }
}

.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(28px + 22 * ((100vw - 350px) / (1920 - 350)));
    font-weight: 600 !important;
    margin: 15px 0;
}

.subhead,
.subhead span {
    font-size: calc(35px + 17 * ((100vw - 350px) / (1920 - 350))) !important;
    margin: 20px 0 5px;
    font-family: 'Fira Sans Condensed', sans-serif;
    letter-spacing: -2px;
    text-align: center;
    font-weight: 600 !important;
    line-height: 60px;
}

@media (max-width: 575px) {

    .subhead,
    .subhead span {
        /* font-size: calc(27px + 20 * ((100vw - 350px) / (1920 - 350))) !important; */
        margin: 5px 0 0px !important;
        letter-spacing: -0.5px;
        font-weight: 600 !important;
        line-height: 35px;
    }
}


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

.headline-section {
    color: white;
    padding: 20px 25px 20px 25px;
    /* max-width: 1300px; */
    text-shadow: 2px 4px 10px black;
}

.gradient-background {
    background: linear-gradient(to bottom, #000 10%, #fff 50%);
    background-position: top;
}

.gradient-background.hidden {
    background: linear-gradient(to bottom, #000 30%, #fff 93%);
    background-position: top;
    height: 1100px;
}

@media (max-width: 575px) {
    .gradient-background.hidden {
        background: linear-gradient(to bottom, #000 30%, #fff 93%);
        background-position: top;
        height: 2000px;
    }
}

/* .headline-background {
    background:
        linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 20%),
        linear-gradient(to right, rgba(0, 0, 0, 0) 40%, black 84%),
        url(https://mypocketfarm.com/tgp/resources/img/tsl/top-bgr.webp);
    background-repeat: no-repeat;
    background-position: -1470px center;
    background-size: 190%;
    width: -webkit-fill-available;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 50px;
} */

/* .headline-background {
    background:
        linear-gradient(to top, black 10%, rgba(0, 0, 0, 0) 30%),
        linear-gradient(to right, rgba(0, 0, 0, 0) 20%, black 50%),
        url(https://mypocketfarm.com/tgp/resources/img/tsl/top-bgr.webp);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    width: -webkit-fill-available;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 50px;
} */

.headline-background-l1 {
    /* background: url(https://mypocketfarm.com/tgp/resources/img/tsl/new_assets/PF_TSL_L1_background-swat.png); */
    /* background: linear-gradient(to top, black 10%, rgba(0, 0, 0, 0) 30%), linear-gradient(to right, rgba(0, 0, 0, 0) 10%, black 50%), url(https://mypocketfarm.com/tgp/resources/img/tsl/new_assets/PF_TSL_L1_background-swat.png); */
    background: linear-gradient(to top, black 62%, rgba(0, 0, 0, 0) 65%), linear-gradient(to right, rgba(0, 0, 0, 0) 40%, black 50%), url(https://mypocketfarm.com/tgp/resources/img/tsl/new_assets/PF_TSL_L1_background-swat_v3_1.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: 0 0, 0 0, -50px -40px;
    background-size: 100% 100%, 100% 100%, 105%;
    width: -webkit-fill-available;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 50px;
    background-color: black;
    padding-bottom: 50px;
}

.headline-background-l2 {
    /* background: url(https://mypocketfarm.com/tgp/resources/img/tsl/new_assets/PF_TSL_L1_background-swat.png); */
    /* background: linear-gradient(to top, black 10%, rgba(0, 0, 0, 0) 30%), linear-gradient(to right, rgba(0, 0, 0, 0) 10%, black 50%), url(https://mypocketfarm.com/tgp/resources/img/tsl/new_assets/PF_TSL_L1_background-swat.png); */
    background: linear-gradient(to top, black 62%, rgba(0, 0, 0, 0) 65%), linear-gradient(to right, rgba(0, 0, 0, 0) 40%, black 60%), url(https://mypocketfarm.com/tgp/resources/img/tsl/new_assets_l2/PF_TSL_L2_background-cows_v7.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: 0px 0, 0 0, -30px -40px;
    background-size: 100% 100%, 100% 100%, 105%;
    width: -webkit-fill-available;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 50px;
    background-color: black;
    padding-bottom: 50px;
}

@media (max-width: 575px) {
    .headline-background-l1 {
        background: linear-gradient(to top, black 61%, rgba(0, 0, 0, 0) 70%), linear-gradient(to right, rgba(0, 0, 0, 0) 100%, black 100%), url(https://mypocketfarm.com/tgp/resources/img/tsl/new_assets/PF_TSL_L1_background-swat_v3_1.png);
        background-repeat: no-repeat;
        min-height: 235px;
        background-position: 0 0, 0 0, -40px -80px;
        background-size: 100% 100%, 100% 100%, 500%;
        background-color: black;
    }

    .headline-background-l2 {
        background: linear-gradient(to top, black 60%, rgba(0, 0, 0, 0) 70%), linear-gradient(to right, rgba(0, 0, 0, 0) 100%, black 100%), url(https://mypocketfarm.com/tgp/resources/img/tsl/new_assets/PF_TSL_L2_background-cows_v5_1.png);
        background-repeat: no-repeat;
        min-height: 235px;
        background-position: 0 0, 0 0, -240px -80px;
        background-size: 100% 100%, 100% 100%, 500%;
        background-color: black;
    }
}

.vsl-section {
    max-width: 1170px;
    min-width: 240px;
    width: 100%;
    height: auto;
    /* border-radius: 20px; */
    box-shadow: 0px 2px 14px -3px #292929;
    overflow: hidden;
}

@media (max-width: 575px) {

    .headline-background {
        background: linear-gradient(to top, black 10%, rgba(0, 0, 0, 0) 20%), linear-gradient(to right, rgba(0, 0, 0, 0) 70%, black 90%), url(https://mypocketfarm.com/tgp/resources/img/tsl/top-bgr.webp);
        background-repeat: no-repeat;
        background-position: center -700px;
        background-size: auto 100%;
        width: -webkit-fill-available;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding-top: 50px;
    }
}

.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);
    border-top: 5px solid #8f8f8f;
}

.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 100px;
}

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

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

.simple-list,
.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,
.tsl-paragraphs.bonus-section p,
.simple-list,
.custom-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;
    color: #000;
}

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

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


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

@media (max-width: 768px) {
    ul {
        margin: 0px 30px 0px;
    }

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

@media (max-width: 425px) {
    ul {
        margin: 0px 10px 0px;
    }

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

.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: #f15922;
    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 10px 10px;
    }

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

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

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

/* 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%);
}

/* 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%);
    }
}

/* 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 7px 13px -3px, var(--red-2-color) 0px -3px 0px inset;
}

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

/* Buy Buttons */
@media (min-width: 576px) {
    .big-btn {}

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

@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 10px;
    margin: 0;
    color: white;
    font-weight: 500;
    text-align: center;
}

.faq-subtitle {
    font-size: calc(25px + 3*((100vw - 350px) /(1920 - 350)));
    padding: 0px 0 20px;
    margin: 0;
    color: white;
    font-weight: 400;
    text-align: center;
}

.accordion-faq {
    background-color: #195637;
    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-button-ref {
    /* background: #ebebeb; */
    /* border-top-left-radius: 2.1875rem !important;
    border-top-right-radius: 2.1875rem !important; */
    border-radius: 5px !important;
    border: none !important;
    box-shadow: none !important;
}

.accordion-button-ref: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;
    }
}


/* Testimonial Carousel */
.testimonial-carousel {
    display: block !important;
    background: url('https://www.thestockpilesavior.com/product_pages/img/cm/carousel.png') repeat-x 0 0;
    height: 200px;
    background-size: cover;
    padding-right: 0 !important;
    padding-left: 0 !important;
    overflow: hidden;
    animation: ourCustomers 60s linear 0s infinite normal forwards;
    animation-play-state: running;
    margin-top: 15px;
    width: 100% !important;
    border-radius: 10px;
    border: 3px solid #B1300D;
}

@media (max-width: 768px) {
    .testimonial-carousel {
        height: 130px;
    }

}

@keyframes ourCustomers {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -1500px 0;
    }
}

.no-buy-btn {
    display: block;
    text-align: center;
    font-size: 18px;
    margin: 0 0 30px;
}


p.no-buy-btn {
    display: block;
    text-align: center;
    font-size: 18px !important;
    margin: 0 0 30px !important;
    color: #0d6efd;
    text-decoration: underline;
    cursor: pointer;
}

p.no-buy-btn:hover {
    color: #0a58ca;
}

.prices p {
    margin-bottom: 0;
}


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

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

        row-gap: 30px;

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

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

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

/* Start Order Link */

#delayed-link,
#delayed-link:link,
#delayed-link:visited {
    display: none;
    text-decoration-color: #0a58ca;
    margin: 55px auto 180px !important;
    width: fit-content;
    border-radius: 10px;
    color: #0a58ca;
    line-height: 1.1;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}


/* Picture Shadows */
.tsl_paragraphs_inner--figure:not(.no-shadow) {
    filter: drop-shadow(0 5px 5px rgba(50, 90, 110, .075)) drop-shadow(0 4px 5px rgba(50, 90, 110, .15)) drop-shadow(0 2px 3px rgba(50, 90, 110, .2));
}

/* Ingredients */
.supplement-ingredient-list {}

.supplement-ingredient-list--1,
.supplement-ingredient-list--2,
.supplement-ingredient-list--3,
.supplement-ingredient-list--4 {}

.supplement-ingredient-header--background {
    background-color: #135232;
    text-align: center;
    text-transform: uppercase;
    width: -webkit-fill-available;
    margin: 0 auto 20px;
    padding: 5px 15px;
    border-radius: 15px;
    display: block;
}

.supplement-ingredient-header {
    font-size: calc(20px + 15 * ((100vw - 350px) / (1920 - 350)));
    background: linear-gradient(to top, #e4eada 0%, #FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.supplement-ingredient-p {
    text-align: center;
    text-transform: uppercase;
    color: #195637;
    font-weight: bold
}

.supplement-ingredient-p--special {
    text-align: center;
    text-transform: uppercase;
    color: #FFF;
    background-color: #135232;
    font-weight: bold;
    padding: 15px 100px;
    width: fit-content;
    margin: 0 auto;
    font-size: 20px;
    border-radius: 10px;
}

.supplement-ingredient-p--more {
    font-weight: bold;
    text-align: center;
    max-width: 800px;
}

.supplement-ingredient-list--container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #e0ede0;
}

@media (max-width: 575px) {
    .supplement-ingredient-list--container {
        flex-direction: column;
        background-color: #e0ede0;
        padding: 10px;
        border-radius: 10px;

    }

    .supplement-ingredient-list--benefits {
        width: 100%;
        background-color: transparent !important;
        margin: 0 !important;
        padding: 0 0 0 0 !important;

    }

    .supplement-ingredient-list--benefits li {
        margin-bottom: 10px;
    }

    .supplement-ingredient-list--benefits:last-of-type li:last-of-type {
        margin-bottom: 0;
    }
}

.supplement-ingredient-list--benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #e0ede0;
    padding: 10px;
    border-radius: 10px;
    flex: 1;
    margin: 10px;
    color: #135232;
}

@media (min-width: 578px) {
    .supplement-ingredient-list--benefits {
        gap: 10px;
    }
}

.supplement-ingredient-list--benefits li::before {
    display: inline-block;
    content: url(../img/ep/latest/checkmark.svg);
    margin-left: 0.5em;
    margin-right: 0.3em;
}

/* Guarantee */
.guarantee-component {
    border: 2px solid #007300;
    border-radius: 15px;
    background-color: #e0ede0;
}

.guarantee-component--header {
    text-align: center;
    text-transform: uppercase;
    color: #195637;
    font-weight: bold;
    font-size: calc(20px + 20 * ((100vw - 350px) / (1920 - 350)));
}

.guarantee-component--inner {}

.guarantee-component--inner img {
    width: 250px;
    margin: 20px 0 0 0;
}

.guarantee-component--badges {
    margin: 15px 0;
}

.guarantee-component--badges img {
    width: 140px;
}

@media (max-width: 425px) {
    .guarantee-component--badges img {
        width: 100px;
    }
}

.circle-picture {
    box-shadow: 0px 2px 10px 0px #bbb;
    border: 3px solid white;
    border-radius: 100%;
    margin-bottom: 10px;
}

.circle-picture-no-shadow {
    border-radius: 100%;
    margin-bottom: 10px;
}

/* Bonuses */
.bonus-section {
    background-color: #e0ede0;
}

.bonus-container {}

.bonus-image {}

.bonus-image-p--1,
.bonus-image-p--2 {
    text-align: center;
}

.bonus-image-p--1 {
    font-weight: bold;
}

.bonus-image-img {}

/* Modal Styles */
.modal-header {
    border-bottom: none;
    padding-bottom: 0px;
}

@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1400px;
    }
}

@media (min-width: 992px) {
    .modal-xl {
        --bs-modal-width: 90%;
    }
}

@media (max-width: 991px) {
    .modal-dialog {
        max-width: fit-content !important;
    }
}

.modal-custom--img {
    overflow: hidden;
    /* Ensure the overflow from the zoomed image is hidden */
}

.modal-custom--img img {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;

    transition: transform 0.25s ease;
    /* Smooth transformation */
    cursor: zoom-in;
    /* Indicate that the image can be zoomed */
}

.modal-custom p {
    display: none;
}

@media (max-width: 768px) {
    .modal-custom--img {
        overflow: auto;
    }

    .modal-custom--img img {
        max-width: unset;
    }

    .modal-custom p {
        text-align: center;
        font-weight: bold;
        margin-top: 15px;
        display: block;
    }
}

.show-modal-p {
    color: var(--orange-color);
    text-decoration-color: var(--orange-color) !important;
}

.show-modal-p:hover {
    color: #fb6c32;
    text-decoration-color: var(--orange-color) !important;
    cursor: pointer;
}

.show-modal-button {
    text-align: center;
    font-size: calc(16px + 3 * ((100vw - 350px) / (1920 - 350))) !important;
    font-style: italic;
    margin-top: 5px;
    color: #6e6e6e;

    cursor: pointer
}

.show-modal-button:hover {
    color: #5a5a5a;
    text-decoration: underline;
}

.overlay-nonblur {}

.overlay-blur::before {
    content: '';
    width: 100vw;
    position: fixed;
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.6);
    height: 100vh;
    z-index: -1;
    -webkit-backdrop-filter: blur(20px);
}

.overlay-blur-body::before {
    content: '';
    width: 100vw;
    position: fixed;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 100vh;
    z-index: 3;
}

.null-padding {
    padding: 0 !important;
}

.modal-body {
    padding: var(--bs-modal-padding) 12px 0 12px !important;
}

.downsell-body p {
    font-size: calc(20px + 25 * ((100vw - 350px) / (1920 - 350))) !important;
    text-align: center;
}

.main-headline>* {
    width: auto;
    font-size: calc(16px + 40 * ((100vw - 350px) / (1920 - 350)));
    font-weight: bold !important;
    margin-bottom: 0;
}

/* Logos */
.logos img {
    height: auto;
    width: 130px;
}

/* 1-2-3 steps */
.one-two-three img {
    height: auto;
    width: 230px;
    margin: 0 auto 20px;
}

.one-two-three-p {
    text-align: center;
    text-transform: uppercase;
    color: #195637;
    font-weight: bold;
    font-size: calc(20px + 8*((100vw - 350px) /(1920 - 350)));
}

/* Green Light Table */
.custom-table tr:nth-child(odd) {
    background-color: #E2EFD9;
}

.custom-table tr:nth-child(even) {
    background-color: #A8D08D;
}

.custom-table td {
    padding: 15px;
    vertical-align: middle;
    border: 1px solid #009e21;
}

.custom-table img {
    max-width: 100%;
    height: auto;
}

.custom-table td.text h2 {
    font-size: calc(20px + 8 * ((100vw - 350px) / (1920 - 350)));
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-table td.text p {
    font-size: calc(20px + 8 * ((100vw - 350px) / (1920 - 350)));
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .custom-table tr {
        display: flex;
        flex-direction: column;
    }

    .custom-table td {
        width: 100%;
        border: none;
    }

    .custom-table td.text h2,
    .custom-table td.text p {
        text-align: center;
    }

    .custom-table img {
        margin-bottom: 15px;
    }
}

/* References */

.accordion input {
    display: none;
}

.box {
    position: relative;
    background: white;
    height: 64px;
    transition: all .15s ease-in-out;
}

.box::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px rgba(0, 0, 0, .12), 0 2px 4px rgba(0, 0, 0, .24);
}

header.box {
    background: #00BCD4;
    z-index: 100;
    cursor: initial;
    box-shadow: 0 -1px 0 #e5e5e5, 0 0 2px -2px rgba(0, 0, 0, .12), 0 2px 4px -4px rgba(0, 0, 0, .24);
}

header .box-title {
    margin: 0;
    font-weight: normal;
    font-size: 16pt;
    color: white;
    cursor: initial;
}

.box-title {
    width: calc(100%);
    height: 64px;
    line-height: 64px;
    padding: 0 20px;
    display: inline-block;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.box-content {
    width: calc(100%);
    padding: 0px 20px 10px;
    font-size: 11pt;
    color: rgba(0, 0, 0, .54);
    display: none;
}

.box-close {
    position: absolute;
    height: 64px;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
}

input:checked+.box {
    height: auto;
    margin: 16px 0;
    box-shadow: 0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);
}

input:checked+.box .box-title {
    border-bottom: 1px solid rgba(0, 0, 0, .18);
}

input:checked+.box .box-content,
input:checked+.box .box-close {
    display: inline-block;
}

.arrows section .box-title {
    padding-left: 44px;
    width: calc(100%);
    font-size: calc(18px + 0*((100vw - 350px) /(1920 - 350))) !important;
}

.arrows section .box-title:before {
    position: absolute;
    display: block;
    content: '+';
    font-size: 18pt;
    left: 20px;
    top: 0px;
    transition: transform .15s ease-in-out;
    color: rgba(0, 0, 0, .54);
}

input:checked+section.box .box-title:before {
    transform: rotate(180deg);
    content: '-';
}

.footnotes p {
    font-size: 13px !important;
}

/* ARR */
.arr-2 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    margin: -1px auto 0px;
}

.arr--red {
    border-top: 40px solid #c00000;
}

.hr-arr hr {
    margin: 0;
    border: 1.5px solid #000;
    opacity: 1;
}

.arr--black {
    border-top: 20px solid #000;
}

.btn-text-1 {
    color: #C00000;
    font-size: calc(40px + 45 * ((100vw - 350px) / (1920 - 350))) !important;
    font-weight: bold;
    font-family: Helvetica;
}

.btn-text-2 {
    background-color: #ff0;
    font-size: calc(30px + 33 * ((100vw - 350px) / (1920 - 350))) !important;
    font-weight: bold;
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 20px;
}

.btn-text-3 {
    font-size: calc(25px + 15 * ((100vw - 350px) / (1920 - 350))) !important;
}

.btn-text-4 {
    font-weight: bold;
    font-size: calc(45px + 25 * ((100vw - 350px) / (1920 - 350))) !important;
    font-family: Calibri;
}

@media (max-width: 575px) {
    .mobile-hidden {
        display: none !important;
    }
}

/* CTA BUTTON */
.checkbox {
    max-width: 35px;
}

.price-box p {
    margin: 0;
    padding: 0;
}

.price-box--big-price {
    font-size: 61px;
    font-weight: 900;
    line-height: 1em;
}

.price-box--sml-price {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15em;
}

.price-box--text {
    font-size: 12px;
    font-weight: 700;
}

.cta-btn,
.cta-btn:link,
.cta-btn:visited {
    font-size: calc(25px + 15 * ((100vw - 350px) / (1920 - 350)));
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #000;
    background-color: gold;
    border-radius: 15px;
    max-width: 600px;
    margin: 23px auto;
    padding: 20px 40px;
    height: auto;
    animation: pulsing 1s infinite;
    cursor: pointer;
}

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

.cta-btn--no-animation {
    font-size: calc(25px + 15 * ((100vw - 350px) / (1920 - 350)));
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #000;
    background-color: gold;
    border-radius: 15px;
    max-width: 600px;
    margin: 20px auto;
    padding: 15px 32.5px;
    height: auto;
    cursor: pointer;
}

.cta-btn--no-animation:active,
.cta-btn--no-animation:hover {
    color: #000;
    background-color: #d7b702
}

@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;
    }
}

.glow-wrapper,
.glow-wrapper-sml {
    max-width: 506px;
}

@property --a {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.glow-wrapper {
    position: relative;
    display: inline-block;
    padding: 6px;
    /* matches desired border thickness */
    border-radius: 18px;
    background: conic-gradient(from var(--a),
            #ffd700 0%,
            #ffb300 15%,
            #ffc107 30%,
            #f9a825 45%,
            #ffca28 60%,
            #ffa000 75%,
            #ffd700 100%);
    animation: borderRotate 2s linear infinite;
    filter: drop-shadow(0 0 6px #ffd70088);
    min-width: 300px;
}

.big-btn {
    position: relative;
    z-index: 1;
    background: #fffdf0;
    border-radius: 15px;
    padding: 16px;
    border: none;
    min-width: 300px;
}

@keyframes borderRotate {
    to {
        --a: 360deg;
    }
}


.sml-btn {
    border: 6px solid #225330;
    border-radius: 15px;
    padding: 16px;
    min-width: 300px;
    background-color: #FFF;
}

.big-btn .buy-btn--big-text {
    /* font-size: 39px !important; */
    font-size: calc(29px + 10 * ((100vw - 350px) / (1920 - 350))) !important;
    line-height: 1em !important;
    font-weight: 900 !important;
    font-style: italic !important;
    color: black !important;
    margin: 0 !important;
}

.big-btn p.buy-btn--sml-text {
    font-size: 15px !important;
    line-height: 1em !important;
    font-weight: 700 !important;
    color: black !important;
    margin: 0 !important;
}

.sml-btn .buy-btn--big-text {
    font-size: 30px !important;
    line-height: 1em !important;
    font-weight: 900 !important;
    font-style: italic !important;
    color: black !important;
    margin: 0 !important;
}

.sml-btn p.buy-btn--sml-text {
    font-size: 14px !important;
    line-height: 1em !important;
    font-weight: 700 !important;
    color: black !important;
    margin: 0 !important;
}

.btn-container {
    margin-top: 150px;
}

.list * p {
    font-size: calc(15px + 7 * ((100vw - 350px) / (1920 - 350))) !important;
}

p.price-box--big-price {
    font-size: 61px;
    font-weight: 900;
    line-height: 1em;
}

.price-box p {
    margin: 0;
    padding: 0;
}

p.price-box--sml-price {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15em;
}

p.price-box--text {
    font-size: 12px;
    font-weight: 700;
}

a.buy-btn--text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    text-align: center;
    display: block;
}

.btn-img {
    margin-top: -150px;
}

.btn-container {
    margin-top: 150px;
}

.price-box {
    margin-top: 10px;
    margin-bottom: 10px;
}

.btn-bullet {
    padding: 3px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.btn-bullet-d {
    margin-bottom: 5px;
}

.btn-bullet p {
    color: #FFF;
}

.btn-bullet p,
.btn-bullet-d p {
    font-size: calc(16px + 5 * ((100vw - 350px) / (1920 - 350))) !important;
}

.btn-bullet-d.d-bullet-d p {
    color: #4f8024;
}

.btn-bullet-d.b-bullet-d p {
    color: #283e6d;
}

.btn-bullet.p-bullet {
    background: #7a2819;
}

.btn-bullet.d-bullet {
    background: #4f8024;
}

.btn-bullet.b-bullet {
    background: #283e6d;
}

.checkbox-p path {
    stroke: #fff;
}

.checkbox-p rect {
    stroke: #ffffff;
    stroke-width: 50px;
}

.checkbox-d path {
    stroke: #4f8024;
}

.checkbox-d rect {
    stroke: #4f8024;
    stroke-width: 50px;
}

.checkbox-b path {
    stroke: #283e6d;
}

.checkbox-b rect {
    stroke: #283e6d;
    stroke-width: 50px;
}

.checkbox-bolder {
    font-weight: 800 !important;
}

.checkbox-bold {
    font-weight: 500 !important;
}

.digital-sml {
    display: none;
}

@media (max-width: 575px) {

    .big-btn,
    .sml-btn {
        padding: 7.5px;
    }

    .digital-sml {
        display: block;
        text-align: center;
        font-weight: 700;
        font-size: 28px !important;
        margin-bottom: 5px !important;
        color: white;
    }

    .sml-btn {
        margin-top: 200px !important;
    }
}