@import "../../../theme/css/variables.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

/* Angular Component Styles */
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    
    100% {
        opacity: 1;
    }
}

.montserrat {
    font-family: "Montserrat", sans-serif;
}

.helvetica {
    font-family: "Helvetica Nueue", sans-serif;
}

.roboto {
    font-family: "Roboto", sans-serif;
}

.emoji {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", system-ui;
}

.selectedEmoji {
    opacity: 1;
}

.topDisclaimer {
    font-size: 62%;
}

/* Network Ad Title */
.vsl__networkAdTitle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    text-align: center;
    color: black;
}

/* Video Section Styles */
.video {
    &__main {
        background: linear-gradient(330deg, #2e0000 0%, #df0000 100%);
        padding-bottom: 80px;
    }

    &__container {
        padding: 10px 0 0 0;
    }

    &__left {
        margin: 0 auto;
    }

    &__title {
        font-size: 25px;
        font-weight: bold;
        color: white;
        text-align: center;
        margin: 20px 0;
        padding: 0 10px;
    }

    &__embedDesktop {
        width: 100%;
        position: relative;
        padding-top: 56.25%;
    }

    &__videoContainer {
        border: 3px solid white;
    }

    &__nextPageHidden {
        display: none;
        height: 0;
        cursor: initial;
        pointer-events: none;
    }

    &__nextPageShown {
        font-size: 30px;
        display: block;
        background: linear-gradient(0deg, #00298a 0%, #277bbb 100%);
        border: 3px solid white;
        height: initial;
        animation: fade-in 2s;
        border-radius: 15px;
        text-shadow: 2px 2px 3px #750000;
        z-index: 1000;
        padding: 20px;
        font-weight: bold;
        color: white;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    &__nextPageShown:hover {
        background-color: #b22a2c;
    }

    &__featured {
        background: #aaaaaa;
        position: relative;
        padding: 64px 0;
        text-align: center;
    }

    &__featuredText {
        font-size: 20px;
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        margin: auto;
        border: 2px solid #aaaaaa;
        border-radius: 30px;
        width: 250px;
        letter-spacing: -1px;
        text-align: center;
        font-weight: bold;
        background: white;
        color: black;
        padding: 6px 0;
    }

    &__featured img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

/* Footer Styles */
.footer {
    display: block;
    justify-content: center;
    padding: 24px 16px;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.footer__content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 960px;
}

.footer__content p {
    font-size: 12px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 10px;
    color: #333333;
    line-height: 1.4;
}

.footer__content a {
    color: #292823;
    text-decoration: none;
}

.footer__content a:hover {
    opacity: 0.6;
}

.footer__content .flex {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    gap: 4px;
}

.footer__content .flex p {
    margin-right: 8px;
    margin-bottom: 0;
}

.footer__content .flex br {
    display: none;
}

.footer__content .flex a {
    margin-left: 4px;
    white-space: nowrap;
}

.textVersionLink {
    color: #292823;
}

/* Hide CTA initially */
#CTALink a {
    display: none;
}

#CTALink.shown a {
    display: block;
}

/* Utility Classes */
.bg-black {
    background-color: black;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-2\.5 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.pt-0 {
    padding-top: 0;
}

.px-2\.5 {
    padding-left: 10px;
    padding-right: 10px;
}

.mt-6 {
    margin-top: 24px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-2\.5 {
    margin-bottom: 10px;
}

.mr-2 {
    margin-right: 8px;
}

.ml-1 {
    margin-left: 4px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-5 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.pt-5 {
    padding-top: 20px;
}

.py-5 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.py-1\.5 {
    padding-top: 6px;
    padding-bottom: 6px;
}

.px-2 {
    padding-left: 8px;
    padding-right: 8px;
}

.w-full {
    width: 100%;
}

.w-40 {
    width: 160px;
}

.text-xs {
    font-size: 12px;
}

.text-xl {
    font-size: 20px;
}

.text-3xl {
    font-size: 30px;
}

.text-5xl {
    font-size: 48px;
}

.text-black {
    color: black;
}

.text-white {
    color: white;
}

.text-center {
    text-align: center;
}

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

.font-light {
    font-weight: 300;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.left-1\/2 {
    left: 50%;
}

.-translate-x-2\/4 {
    transform: translateX(-50%);
}

.z-50 {
    z-index: 50;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.block {
    display: block;
}

.rounded-sm {
    border-radius: 2px;
}

.border {
    border-width: 1px;
}

.border-3 {
    border-width: 3px;
}

.box-border {
    box-sizing: border-box;
}

.cursor-pointer {
    cursor: pointer;
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Desktop Styles */
@media screen and (min-width: 1025px) {
    .topDisclaimer {
        font-size: 18px;
    }

    .video__container {
        display: flex;
        gap: 32px;
        padding: 20px;
        padding-top: 0;
    }

    .video__left {
        width: 9000px;
        flex-basis: 996px;
    }

    .video__title {
        font-size: 50px;
    }

    .video__nextPageShown {
        left: 50%;
        max-width: 500px;
        padding: 10px 20px;
        transform: translateX(-50%);
        position: fixed;
        bottom: 20px;
        font-size: 36px;
        line-height: 63px;
    }

    .footer__content {
        padding-bottom: 96px;
    }

    .footer__content p {
        font-size: 14px;
    }

    .footer__content .flex {
        gap: 8px;
    }

    .footer__content .flex p {
        margin-right: 4px;
    }

    .footer__content .flex br {
        display: block;
    }

    .footer__content .flex a {
        margin-left: 4px;
    }

    .desktop\:py-4 {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .desktop\:flex {
        display: flex;
    }

    .desktop\:gap-8 {
        gap: 32px;
    }

    .desktop\:p-5 {
        padding: 20px;
    }

    .desktop\:pt-0 {
        padding-top: 0;
    }

    .desktop\:text-5xl {
        font-size: 48px;
    }

    .desktop\:text-xl {
        font-size: 20px;
    }

    .desktop\:text-sm {
        font-size: 14px;
    }

    .desktop\:mb-2\.5 {
        margin-bottom: 10px;
    }

    .desktop\:pb-24 {
        padding-bottom: 96px;
    }

    .desktop\:ml-1 {
        margin-left: 4px;
    }

    .desktop\:hidden {
        display: none;
    }
}

/* Mobile Styles */
@media screen and (max-width: 1024px) {
    .desktop\:hidden {
        display: block;
    }
}

body.network-style:before {
    color: #000;
}

.vjs-dock-text {
    display: none !important;
}

html,
body {
    margin: 0;
    padding: 0;
    color: #333;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 300;
    font-size: 16px;
}

body {
    background: #f0f0f0;
}

#network-adTitle {
    padding: 5px 0;
    text-align: center;
}

.container {
    width: 95%;
    margin: 0px auto;
}

.header_container {
    padding: 10px 0;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    background-color: #B32523;
    color: #ffffff;
}

.after_header_container {
    padding-top: 10px;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    color: #868686;
}

.headline_container {
    max-width: 980px;
    margin: 0 auto;
    padding: 20px 0 0;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #222222;
}

.video-sound-container {
    color: #4680c2;
    font-weight: bold;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    grid-gap: 10px;
}

    .video-sound-container .image-icon {
        height: 15px;
    }

        .video-sound-container .image-icon.rotate {
            rotate: 180deg;
        }

    .video-sound-container img {
        height: 15px;
    }

/* Body Styles */
.content {
    margin-top: 10px;
}

.comments{
	text-align: center;
    max-width: 920px;
    margin: auto;
    background: white;
	padding-top: 10px;
    margin-top: 30px;
}
.comments .comment-content{
	text-align: left;
}
.comments h3{
	color: #27377a;
	margin-bottom: 0;
	margin-top: 25px;
	font-size: 28px;
}
.comments .comment{
	display: flex;
	border-bottom: 1px solid gray;
	padding: 10px 15px;
	padding-bottom: 0;
	gap: 20px;
}
.comments .comment.last-comment{
	border-bottom: none;
	margin-bottom: 25px;
}
.comments img{
	width: 80px;
}
.comments .name{
	color: #27377a;
	font-size: 18px;
	margin-bottom: 5px;
	margin-top: 10px;
}
.comments .text{
	color: black;
	font-size: 16px;
	margin-top: 5px;
}
.comments_disclaimer{
	font-size: 12px;
	margin-top: 15px;
	padding-bottom: 15px;
}

.scontent::-webkit-scrollbar-track {
    border-radius: 40px;
    background-color: #f0f0f0; /* Light grey track */
}

.blur {
    position: absolute;
    width: 100%;
    bottom: 100px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) -76.34%, #FFF 69.57%);
}

/* Customizing the scrollbar thumb (the part that you drag) */
.scontent::-webkit-scrollbar-thumb {
    border-radius: 40px;
    background-color: #4680C2;
}

/* Customizing the scrollbar width */
.scontent::-webkit-scrollbar {
    width: 4px;
}

.comm_right img {
    width: 28px;
    height: 28px;
}

.gundryBio {
    display: none !important;
}

.extra_dis {
    gap: 20px;
    margin: auto;
    align-items: center;
    margin-top: 10px;
    padding: 0px;
    max-width: 920px;
    text-align: center;
    font-size: 10px;
}

.extra_disD {
    margin-top: 25px;
}

.comm_content {
    border-radius: 16px;
    background: #F1F7FF;
    padding: 5px 7px;
}

.comm_right {
    display: flex;
    gap: 5px;
}

.comm_content h5 {
    color: #000;
    /* body/text-sm/font-bold */
    font-family: 'Red Hat Bold';
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    margin: 0;
}

.comm_content p {
    color: #000;
    /* body/text-sm/font-normal */
    font-family: "Red Hat";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    margin-top: 10px;
}

.comm_submit textarea {
    height: 60px;
}

.comm_submit {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.avatar_active {
    display: none;
}

.avatar_inactive {
    display: block;
}

.comm_submit.active .avatar_active {
    display: block;
}

.comm_submit img {
    width: 28px;
    height: 28px;
}

.comm_submit textarea {
    height: 60px;
    resize: none;
    padding: 8px 10px;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 0;
    border-radius: 16px;
    background: #F5F5F5;
    color: #848689;
    /* body/text-sm/font-normal */
    font-family: "Red Hat";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.gundryBioD {
    display: flex;
    gap: 20px;
    margin: auto;
    align-items: center;
    margin-top: 15px;
    display: flex;
    max-width: 920px;
}

    .gundryBioD img {
        width: 195px;
        height: 195px;
    }

    .gundryBioD .bioc {
        padding: 25px 10px;
        text-align: left;
    }

    .gundryBioD h5 {
        color: #27377A;
        font-family: 'Figtree';
        font-size: 23px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
    }

    .gundryBioD .divider {
        background: #E0E0E0;
        width: 33px;
        height: 1px;
    }

    .gundryBioD p {
        color: #333;
        font-family: 'Figtree';
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
    }

.comm_submit svg {
    position: absolute;
    right: 15px;
    margin-top: 10px;
}

.activeSvg {
    display: none;
}

.doneSvg {
    display: none;
}

.inactiveSvg {
    display: block;
}

.comm_submit.active .activeSvg {
    display: block;
}

.comm_submit.active .inactiveSvg {
    display: none;
}

.comm_submit.active .avatar_inactive {
    display: none;
}

.speakerContainer {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

    .speakerContainer p {
        font-family: "Helvetica Neue-Light", "Helvetica Neue Light", Helvetica, Arial, sans-serif;
        font-size: 16px;
        color: #333;
        opacity: .6;
        margin-bottom: 0;
        font-weight: lighter;
    }

        .speakerContainer p:nth-of-type(2) {
            margin-top: 5px;
        }

.left-column {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.doctor {
    width: 150px;
    margin-top: 0px;
}

.clear {
    clear: both;
}

#CTALink a {
    display: none;
}

.ctaOverlay {
    display: none;
    position: fixed;
    text-align: center;
    width: 100%;
    left: 0;
    bottom: 30px;
    z-index: 10000000;
}

    .ctaOverlay button {
        margin: auto;
    }

.row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.beforePlayButtonContent {
    display: flex;
    align-items: center;
}

    .beforePlayButtonContent p {
        font-size: 16px;
        color: #27377a;
        font-family: 'Montserrat', sans-serif;
    }

    .beforePlayButtonContent span {
        font-size: 32px;
        margin-left: 15px;
        margin-right: 15px;
        opacity: 0.5;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

        .beforePlayButtonContent span.selected {
            opacity: 1;
        }

.emojiWraps {
    width: 100%;
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.playVSLButtonContainer {
    text-align: center;
    margin: 0 auto 20px auto;
    width: 100%;
}

.playVSLButton {
    background-color: #d6ef59;
    border: 1px solid #c2e028;
    width: 100%;
    height: 36px;
    color: #49555e;
    font-weight: 700;
    font-family: Arial;
    font-size: 16px;
    -webkit-box-shadow: #666 0 1px 3px;
    box-shadow: #666 0 1px 3px;
    margin: 15px auto 0;
    cursor: pointer;
}

    .playVSLButton img {
        margin-right: 10px;
        height: 17px;
        padding-top: 1px;
        vertical-align: text-bottom;
    }

.orderpage_btnB {
    background: rgb(194, 45, 47);
    font-size: 36px;
    font-family: Arial;
    line-height: 46px;
    font-weight: 900;
    color: #ffffff;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    padding: 12px 40px;
    transition: box-shadow 0.15s ease-in-out;
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 23px;
    color: #27377a;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: helvetica neue-light,helvetica neue light,Helvetica,Arial,sans-serif;
}

h4 {
    color: #000;
    display: inline-block;
}

hr {
    border-top: 1px solid #5e5f61;
    color: #5e5f61;
    text-decoration: none;
    height: 0px;
    border-top-color: #d5d5d5
}

.hrsmll {
    width: 35px !important;
}

.wrapper {
    display: block;
    margin: 0px auto;
}

.flip {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.smftrtext {
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}

.videocontainer {
    margin: 0px auto;
    padding-bottom: 10px;
    max-width: 960px;
}

    .videocontainer img {
        width: 100%;
    }

    .videocontainer::before {
        font-family: 'Montserrat', sans-serif;
        content: "This Simple Trick Helps Empty Your Bowels Every Morning";
        font-size: 14px;
        display: grid;
        place-items: center;
        background: #000;
        color: #fff;
        text-align: center;
        padding: 0.5rem;
        height: 50px;
        display: none;
    }

.caption {
    font-size: 14px;
    font-family: helvetica neue-light,helvetica neue light,Helvetica,Arial,sans-serif;
    font-weight: 100;
    line-height: 16px;
    color: #000;
    padding: 0 5px 20px 5px;
    margin-bottom: 0px;
}

.floatRight {
    float: right;
}

.vjs-poster {
    background-image: url("https://cdn.gundrymd.com/images/best_worst_bkfoodgifsll.gif") !important;
    background-size: 100%;
}

.vjs-overlay {
    display: none;
}

.vjs-big-play-button {
    display: none !important;
}

.underVideo {
    display: flex;
    align-items: center;
    font-family: "Roboto", sans-serif;
}

    .underVideo img {
        border-radius: 50%;
        max-width: 48px;
        margin-right: 16px;
    }

.underVideo_brand {
    font-size: 14px;
    color: #030303;
    margin: 0;
}

.underVideo_sub {
    font-size: 12px;
    color: #606060;
    margin: 0;
}

.featuredSection {
    padding: 30px 22px 45px;
    margin-top: -10px;
    color: #fff;
    background: linear-gradient(225.28deg, #4780c2 0, #27377a 100%);
}

.featuredSection_topTitle {
    font-family: 'Tiempos Headline Light', sans-serif;
    font-size: 22px;
    letter-spacing: 1.5px;
    margin-bottom: 0;
}

.featuredSection_bottomTitle {
    font-family: 'Tiempos Headline Semibold', sans-serif;
    font-size: 36px;
    letter-spacing: 1.5px;
    margin: 0;
    color: #fff;
    padding: 0;
}

.featuredSection_hr {
    background-color: #b8d436;
    width: 70px;
    height: 2px;
    margin: 20px 0;
    border-top: none;
}

.featuredSection_content {
    font-size: 16px;
    line-height: 15px;
    letter-spacing: .7px;
    font-family: "Figtree", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.featuredSection_col-right {
    margin-top: 45px;
    text-align: center;
}

    .featuredSection_col-right img {
        width: 100%;
    }

/* Footer Styles */
footer {
    margin: -10px 0;
    padding: 15px;
    font-size: 14px;
    text-align: center;
    background-color: #123261;
    color: #fff;
}

.blueText {
    color: #27377a
}

footer a,
footer a:hover,
footer a:visited {
    text-decoration: none;
    color: #fff;
}

footer p {
    font-size: 12px;
    color: #fff;
}

@media screen and (min-width: 1025px) {
    /* General Styles */
    body {
        background: #fff;
    }

    .container {
        width: 960px;
    }

    /* Header Styles */
    header {
        box-shadow: 0 0 15px #e4e5e2;
        padding: 5px 0 20px;
    }

    .topHeader {
        padding: 0;
    }

        .topHeader img {
            max-width: 200px;
        }

    .number {
        font-size: 17px;
    }

    /* Body Styles */
    .content {
        display: flex;
        margin-top: 30px;
        max-width: 920px;
    }

    .speakerContainer {
        padding-top: 20px;
    }

        .speakerContainer .row {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .speakerContainer h4 {
            font-family: Montserrat,sans-serif;
            font-weight: 600;
            color: #000;
            font-size: 14px;
            line-height: 24px;
            margin: 0;
            padding: 0 24px;
            vertical-align: top;
        }

    .doctor {
        width: 188px;
    }

    .caption {
        font-size: 14px;
        opacity: unset;
        color: #333;
        padding: 0 5px 0 0;
    }

    .featuredSection {
        padding: 45px 0px;
    }

    .featuredSection_container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 1070px;
        margin: auto;
    }

        .featuredSection_container h2 {
            text-align: center;
        }

    .featuredSection_col-left {
        flex-basis: 25%;
    }

    .featuredSection_col-right {
        margin-top: 0;
    }

    .featuredSection_content {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    /* Footer Styles */
    .smftrtext {
        margin-top: 5px;
        text-align: center;
        line-height: 19.125px;
        padding: 0;
    }
}

.show_c, .hide_c {
    display: none;
}

@media screen and (max-width: 1024px) {
    .gundryBio {
        display: block !important;
    }

    .gundryBioD, .extra_disD {
        display: none;
    }

    .vjs-poster {
        background-image: url("https://cdn.gundrymd.com/images/4by5bestworrrst.gif") !important;
        background-size: 100% 100%;
    }

    .bc-player-default_default, .bc-player-LemwzE05e_default {
        background: #f6f2ee;
        height: calc(100vw*(5 / 4)) !important;
    }

    .ctaButton {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: white;
        z-index: 100000;
    }

    .extra_dis {
        width: 95%;
        margin-top: 0px;
        margin-bottom: 10px;
    }

    .container.content {
        padding-left: 10px;
        padding-right: 10px;
        background-color: white;
    }

    .comm_content p {
        font-size: 16px;
    }

    footer {
        padding-bottom: 90px;
    }

        footer p {
            font-family: "Figtree", sans-serif;
            font-weight: 300;
        }

    .smftrtext {
        margin-top: 0;
        padding-top: 30px;
        letter-spacing: 1px;
    }


    .comm_content {
        flex: 1;
        text-align: left;
        padding-left: 15px;
    }

    .blur {
        display: none;
    }

    .sc_hide {
        display: none;
    }

    .comments .comment.last-comment{
		margin-bottom: 13px;
	}

    .featuredSection {
        margin-top: 0;
    }

    .orderpage_btnB {
        font-size: 18px;
    }
}
