/* Fluid font-size formula */
/* font-size: calc([minimum size] + ([maximum size] - [minimum size]) * ((100vw - [minimum viewport width]) / ([maximum viewport width] - [minimum viewport width]))); */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

    --red-1-color: #ff0000;
    --red-2-color: #cc0000;
    --darkred-color: #8b0000;
    --darkred-2-color: #c00000;

    --yellow-color: #FFFF00;
    --yellow-2-color: #FFCC00;

    --orange-color: #ef6d00;

    --blue-color: #106deb;
}


html {
    overflow-x: hidden;
}


body {
    overflow: hidden;
    background-image: var(--white-color);
}

@media screen {

    /* Overwriting Bootstrap */
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1000px !important;
    }
}

/* Custom Styles */
.action_div_sibling {
    display: none;
}

/* Horizontal Line (HR) */
/* hr + arr component */
.hr-arr {
    padding: 0;
    margin-bottom: 20px;
}

.arr {
    position: relative;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 25px solid black;
    /* This is the outermost (border/margin) color */
    margin-bottom: 20px;
    margin: -1px auto 0px auto;
    z-index: 1;
}

.arr::after {
    content: "";
    position: absolute;
    top: -22px;
    left: -30px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 19px solid #495057;
    /* Inner color of the arrow */
    z-index: 2;
}

.special-hr {
    color: black;
    height: 2.5px;
    background: black;
    margin-bottom: 0;
    opacity: 1;
}

.special-hr2 {
    color: gray;
    height: 2px;
    background: gray;
    margin: 0px;
}

/* Banners */
.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    margin: 30px auto 0 auto;
    box-shadow: 0px 0px 10px -5px var(--black-color);
    padding: 10px 15px;
}

.banner-red {
    background-color: var(--darkred-2-color);
}

.banner-yellow {
    background-color: var(--yellow-color);
    box-shadow: none !important;
}

.banner-gray {
    background-color: #ececec;
    box-shadow: none !important;
}

.banner .banner-headline {
    /* Max: 40px, Min: 25px */
    font-size: calc(30px + 15 * ((100vw - 350px) / (1920 - 350)));
    font-family: 'Raleway', serif;
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.banner-arr {
    width: 0;
    height: 0;
    border-left: 38px solid transparent;
    border-right: 38px solid transparent;
    /* border-top: 20px solid var(--darkred-2-color); */
    margin: -1px auto 0px;
}

.banner-arr--red {
    border-top: 20px solid var(--darkred-2-color);
}

.banner-arr--yellow {
    border-top: 20px solid var(--yellow-color);
}

.banner-arr--gray {
    border-top: 20px solid #ececec;

}

/* Break (<br />) for desktop only */
@media (max-width: 1024px) {
    br:not(.not-break br) {
        display: none;
    }

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

figcaption {
    font-size: 10px;
    color: gray;
    text-align: center;
}

/* Font Styles */
.text-bold {
    font-weight: bold;
}

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

.text-strike {
    text-decoration: line-through;
}

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

/* Header Group */
.headline-1 {
    /* Max: 85px, Min: 40px */
    font-size: calc(35px + 50 * ((100vw - 350px) / (1920 - 350))) !important;
    font-family: 'Merriweather', serif;
}

.headline-2 {
    /* Max: 60px, Min: 35px */
    font-size: calc(35px + 25 * ((100vw - 350px) / (1920 - 350))) !important;
    font-family: 'Merriweather', serif;
}

.subheader-1 {
    /* Max: 47px, Min: 22px */
    font-size: calc(22px + 25 * ((100vw - 350px) / (1920 - 350)));
    font-family: 'Merriweather', serif;
}

.subheader-2 {
    /* Max: 35px, Min: 22px */
    font-size: calc(22px + 13 * ((100vw - 350px) / (1920 - 350)));
    font-family: 'Merriweather', serif;
}

.make-sure-sound {
    margin: 0 0 15px 0;
    padding: 0;
    text-align: center;
    font-size: calc(18px + 2 * ((100vw - 350px) / (1920 - 350)));
}

/* VSL Section */
.vsl-section {
    /* margin-top: 15px; */
}

/* TSL Section/Paragraphs */
.tsl-section {
    padding: 0px 40px 20px;
}

@media (max-width:450px) {
    .tsl-section {
        padding: 0px 20px 20px;
    }
}

.tsl-paragraphs *:last-child {
    margin-bottom: 0;
}



/* Purchase Button */
.purchase,
.purchase:link,
.purchase:visited {
    display: block;
    max-width: max-content;
    margin: 0 auto;
    padding: 5px 25px 10px;

    /* Max: 30px, Min: 20px */
    font-size: calc(25px + 5 * ((100vw - 350px) / (1920 - 350)));
    font-family: 'Ubuntu', sans-serif !important;
    font-weight: 700;
    color: var(--white-color);
    background-color: var(--orange-color);

    border: 1px solid rgba(0, 0, 0, 0.13);
    border-bottom: 4px solid rgba(0, 0, 0, 0.13);
    border-radius: 3px;

    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}

.purchase:active,
.purchase:hover {
    box-shadow:
        inset 0 2px 2px 0 rgba(255, 255, 255, 0.22),
        0 233px 233px 0 rgba(255, 255, 255, 0.12) inset;
    color: #ffffff;
}

@media (max-width: 450px) {
    .purchase {
        max-width: 330px !important;
    }
}

/* Paragrahps, Custom List */
.tsl-paragraphs p {
    margin-bottom: 20px;
}

.tsl-paragraphs p,
.tsl-paragraphs .custom-list li {
    /* Max: 22px, Min: 17px */
    font-size: calc(17px + 5 * ((100vw - 350px) / (1920 - 350)));
    font-family: 'Merriweather', serif;
    /* line-height: 1.2; */
    /* font-weight: 400; */
}

.tsl-paragraphs .custom-list li {
    margin-bottom: .5rem;
}

.custom-list {
    list-style: none;
    margin: 0 0 20px 10px;
    padding-left: 20px;
}

.list-details,
.list-details .custom-list,
.list-details .custom-list li {
    margin-bottom: 0;
}

.list-details .custom-list:not(:first-of-type) {
    margin-top: 20px;
}

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

.custom-list.custom-list--cross li:before {
    content: '❌' !important;
    margin-left: -1.4em !important;
    margin-top: 1px !important;
}

@media(max-width: 450px) {
    .custom-list {
        margin: 0 0 20px 5px;
    }
}

.list-details-container {
    padding: 0 0 20px 35px;
}

@media (max-width: 450px) {
    .list-details-container {
        padding: 0 0 20px 20px;
    }
}

/* Bundle Buy Set */
.bundle-buy-set {
    margin-bottom: 48px;
    margin-top: 48px;
}

.buy-buttons>* {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.buy-button-img {
    border: 1px solid black;
    border-radius: 31px;
    background-color: black;
}

@media (min-width: 578px) {
    .buy-buttons {
        margin: 20px 0;
    }

    /* .buy-buttons a:nth-child(2) {
        transform: scale(1.1);
    } */
}

@media(max-width:575px) {
    .buy-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .buy-buttons a {
        width: 90%;
    }
}

.best-deal {
    /* Max: 85px, Min: 60px */
    font-size: calc(60px + 25 * ((100vw - 350px) / (1920 - 350)));
    text-transform: uppercase;
    text-align: center;
    color: var(--red-1-color);
    font-weight: bold;
    line-height: 1.1;
    font-family: 'Raleway', sans-serif;
    margin: 0 auto;
}

.best-deal--off {
    /* Max: 44px, Min: 32px */
    font-size: calc(32px + 12 * ((100vw - 350px) / (1920 - 350)));
    background-color: #FFDD00;
    padding: 4px 30px;
    font-family: 'Merriweather', serif;
    margin: 0 auto;
}

.best-deal--was {
    /* Max: 24px, Min: 20px */
    font-size: calc(20px + 4 * ((100vw - 350px) / (1920 - 350)));
    text-decoration: line-through;
    margin: 0 auto;
}

/* Video Grid System */
.video-testimonials {
    display: grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0 20px;
}

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

.video-testimonials--name {
    color: gray;
}

@media(max-width:578px) {
    .video-testimonials {
        grid-template-columns: repeat(1, 1fr);
    }
}

.more-about-container {}

.more-about-box {
    background: ghostwhite;
    border-radius: 10px;
    height: 450px;
    border: 1px solid #ece0e0;
    padding: 20px;
    width: 370px;
}

.more-about-container h2 {
    color: black;
}

.more-about-container p {
    font-size: 18px !important;
    line-height: 1.8 !important;
}

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

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

.accordion-box {
    /* margin: 250px 4vw 0px; */
}

.accordion-button {
    font-size: 1em !important;
    font-weight: normal;
    border: 1px solid var(--primary-color) !important;
}

.accordion-button:focus {
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

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

.numerical-td {
    width: 5%;
    padding-right: 0;
}

.string-td {
    width: 95%;
    padding-left: 0;
}