:root {
    --bg-color: black;
    /* --money: darkcyan; */
    /* --money: #222699; */
    --money: #29a3a1;
    /* --gooroo: #7456D6; */
    --textedit: #2A2A2A;
}

@font-face {
    font-family: 'AkzidenzGroteskPro-Ext';
    src: url("/static/fonts/AkzidenzGroteskPro-Ext.a338792463eb.woff2") format('woff2'),
         url("/static/fonts/AkzidenzGroteskPro-Ext.4c1a1805eaa3.woff") format('woff'),
         url("/static/fonts/AkzidenzGroteskPro-Ext.b08b1615eb71.ttf") format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* @font-face {
    font-family: 'AkzidenzGroteskPro-BoldEx';
    src: url("/static/fonts/AkzidenzGroteskPro-BoldEx.a8129880929d.woff2") format('woff2'),
         url("/static/fonts/AkzidenzGroteskPro-BoldEx.7746f6cd658f.woff") format('woff'),
         url("/static/fonts/AkzidenzGroteskPro-BoldEx.f435fe1d712f.ttf") format('truetype');
    font-weight: bold;
    font-style: normal;
} */

@font-face {
    font-family: 'AkzidenzGroteskPro-XBd';
    src: url("/static/fonts/AkzidenzGroteskPro-XBd.8b19fa749a66.woff2") format('woff2'),
         url("/static/fonts/AkzidenzGroteskPro-XBd.e983ad363383.woff") format('woff'),
         url("/static/fonts/AkzidenzGroteskPro-XBd.b7d9219564c6.ttf") format('truetype');
    font-weight: bold;
    font-style: normal;
}

[v-cloak] {
    display: none;
  }

* {    
    font-family: 'AkzidenzGroteskPro-Ext', sans-serif;
    /* padding-left: 5px; */
    /* padding-right: 5px; */    
}

.line-break {
    line-height: 1.5;
}

body * {
    border-radius: 20px; /* Adjust the value as needed */ 
    text-transform: lowercase;
    font-size: 32px;       
}

body {
    /* background-image: url("/static/img/money/bg7.b954bd41055a.png"); */
    background: var(--bg-color);
    /* color: var(--money); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    font-family: 'AkzidenzGroteskPro-Ext', sans-serif;
    /* background-color: #f4f4f4; */
    color: #999;
    margin: 0;
    padding: 0;        
    /* align-items: center;   */
    height: 100%;
}
#app {
    /* max-width: 400px; */
    /* margin: 0 auto; */
    width: 100%;
    padding: 20px;
    background: transparent;    
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.audio-container {
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center; /* centers vertically */
    /* height: 100vh; full viewport height, adjust as needed */
}

div .content {
    align-items: center;
}

textarea {
    max-width: 95%;
    color: var(--textedit);
    /* font-style: italic; */
}

textarea:disabled {
    background-color: lightgrey; /* Custom background color */
    color: #333; /* Optional: change text color */
}

header {
    display: flex;
    justify-content: space-between;    
    padding: 10px 0;
    /* border-bottom: 1px solid #e0e0e0; */
    /* background-color: #004860; */
    /* background-color: rgb(0, 191, 175); */
    min-height: 80px;
    align-items: center;
}
/* header img {
    height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);    
} */
header select {
    padding: 5px;
    font-size: 16px;
}
h1 {
    text-align: center;
    /* color: rgb(83, 176, 174); */
    /* color: rgb(0, 191, 175); */
    color: white;
    /* font-size: 24px; */
    /* margin-bottom: 10px; */
}

h1.label {
    text-align:left;
    /* color: var(--money); */
    color: #999;
}

h2 {
    text-align: center;
    /* color: rgb(83, 176, 174); */
    color: rgb(0, 191, 175);
    font-size: 0.9em !important;
    /* margin-bottom: 10px; */
}
/* .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.tabs button {
    padding: 10px 20px;
    background: #f4f4f4;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    
}
.tabs button:hover,
.tabs button.active {    
    background: rgb(0, 191, 175);
    color: white;
} */
 
form {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 20px;
}
form label {
    /* margin-bottom: 5px; */
    font-weight: bold;
}
form select,
input {
    padding: 10px;
    /* margin-bottom: 15px; */
    border: 1px solid #ccc;
    min-height: 50px;
    /* border-radius: 4px; */
    font-size: 35px !important;
    letter-spacing: 2px;
    width:100%;
    color: var(--textedit);
}
input[type="checkbox"] {
    margin: 0 10px 15px 0;
}
form .total {
    text-align: right;    
    font-weight: 700;
}

.buttons {
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
}
form .buttons img {
    width: 230px;
    cursor: pointer;
    margin: 0 40px;
}

form .buttons button {
    padding: 10px 20px;
    border: none;
    /* border-radius: 5px; */
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    flex: 1;
    margin: 0 5px;
}
form .buttons button.play {
    background-color: #53B0AE;
    color: white;
}
form .buttons button.play:hover {
    background-color: #45a049;
}
form .buttons button.share {
    background-color: #7aabde;
    color: white;
}
form .buttons button.share:hover {
    background-color: #1e88e5;
}
.progress-bar-container {
    width: 100%;
    background-color: #f3f3f3;
    /* border-radius: 4px; */
    margin-top: 10px;    
}
.progress-bar {
    width: 0%;
    height: 20px;
    background-color: rgb(0, 191, 175);
    /* border-radius: 4px; */
    text-align: center;
    font-size: 20px !important;
    line-height: 20px;
    color: white;
}

.video-container video {
    max-width: 100%;
    height: auto;
    width: 100%;
    padding:-20px !important;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 96%;
    color: white;
    /* text-align: center; */
    /* display: flex; */
    /* justify-content: space-between;     */
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    background-color: black;
    /* background-color: black; */
    /* padding: 10px 0; */
    /* font-size: 14px; */
    /* box-shadow: 0 -1px 5px rgba(0,0,0,0.1); */
}

.image-gallery {
    overflow-x: auto;
    white-space: nowrap;
  }

.image-container {
    display: flex;
  }
  
  .image-item {
    display: inline-block;
    margin-right: 10px;
  }
  
  .image-item img {
    display: block;
    width: 300px; /* Adjust as needed */
    max-height: 400px;
    height: auto;
    cursor: pointer;
  }

  @keyframes gradientWave {
        0% {
            background-position: 0% 50%;
        }
        100% {
            background-position: 100% 50%;
        }
    }
  .animated-text {
        display: inline-block;
        background: linear-gradient(270deg, #ff6ec4, #7873f5, #52c4f1);
        background-size: 600% 600%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: gradientWave 5s ease infinite;
        color: yellow;
    }

    .carousel-row {
        display: flex;
        overflow-x: auto;        
    }

    .carousel-item-x {
        flex: 0 0 auto; /* Prevent items from shrinking */
        width: 300px;
        margin-right: 10px; /* Spacing between items */
    }
    
    .carousel-row img {
        cursor: pointer;
        width: 300px;
        height: 300px;
        margin: 5px 5px;
        border: 2px solid transparent;
        transition: border-color 0.3s ease;
        object-fit: cover;        
    }
    
    .carousel-row img.selected {
    /* border-color: rgb(44, 44, 136); */
    border-width: 7px; /* Ensure the border width is noticeable */
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.5); /* Add a shadow for extra emphasis */
    border-radius: 50%;
    border-color: white;
    }
    
    .carousel label {
        display: block; 
        margin: 0 10px;       
        /* color: grey;           */
    }

    .carousel-row label {
        display: block;
        text-align: center;  
        /* color: grey;         */        
        color: var(--money);
        letter-spacing: 1px;
    }

    .expandable-textarea {
        width: 100%;
        min-height: 360px;
        align-content: center;
        resize: vertical; /* Allow vertical resizing */
        font-size: 36px !important;
        letter-spacing: 2px;
        padding: 20px;
        box-sizing: border-box;
        border: none;
    }

    /* Set font size for the placeholder */
    .expandable-textarea::placeholder {
        font-size: 40px; /* Match this with the font-size of the textarea if desired */
        letter-spacing: 1px;
        /* align-items: center; */
        /* padding: 20px; */
    }

    #typing-imitation.old {
        white-space: nowrap;  /* Prevents the text from wrapping to the next line */
        overflow: visible;    /* Allows the text to overflow the container */
        display: inline-block; /* Keeps the span as an inline element while allowing overflow */
    } 

    .helper-button.old {
        margin-right: 20px; /* Adjust the value as needed */
        margin-bottom: 10px;        
        border: none;
        max-height: 50px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 5px;
        padding-bottom: 10px;
        width: auto; /* Ensure the width adjusts based on text */
        white-space: nowrap; /* Prevents text from wrapping to multiple lines */
        overflow: hidden; /* Ensures content doesn't overflow the button */
        text-overflow: ellipsis; /* Adds '...' if the text overflows the max width */
        background-color: white;
    }

    .helper-button {
        background-color: var(--money);
        color:white;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adds a slight shadow for depth */
        transition: background-color 0.3s, box-shadow 0.3s; /* Adds smooth transitions for hover effect */
        margin: 10px;
    }

.app-container {
    margin: 0 auto;
    padding: 10px;
    max-width: 1000px; /* Set a max-width to limit the container size */
    }
    
    /* Styles for larger screens */
    @media (min-width: 768px) {
    .app-container {        
        width: 100%;
        max-width: 1000px; /* Ensures the container doesn't exceed the max width */
    }
    }
    
    /* Optional: Further customization for even larger screens */
    @media (min-width: 1024px) {
    .app-container {
        transform: scale(0.45); /*Scale down to 65%*/
        transform-origin: top center; /* Adjust origin to maintain layout */
        width: 100%;
        max-width: 1000px; /* Adjust max-width as needed */
    }
    }

    #spinner {
        /* position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); */        
        /* color: #3498db; */
        color: rgb(0, 191, 175);
    }

    .image-container {
        position: relative;
        display: inline-block;
    }
    
    .play-overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .image-container:hover .play-overlay {
        opacity: 0.5;
    }
    
    .play-button {
        background-color: rgba(255, 255, 255, 0.7);
        border: none;
        padding: 15px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }
    
    .play-button i {
        color: #333;
    }

    .duration-button {
        margin: 10px; /* Adjust the value as needed */
        border: none;
        min-width: 200px;
        margin-top: 20px;
        background-color: var(--money);
        color:white;
    }

    .duration-button.selected {
        /* border-color: rgb(44, 44, 136); */
        border-color: white;
        border-width: 6px; /* Increased border width */
        border-style: solid; /* Ensure the border style is solid */
        box-shadow: 0 0 20px 10px rgba(0, 0, 255, 0.5); /* Add a shadow for extra emphasis */        
    }

    .responsive-img {        
        max-width: 30%; /* Ensures the image doesn't exceed the width of its container */
        height: auto; /* Maintains the aspect ratio */
        display: block; /* Removes any inline spacing */
        margin: 0 auto; /* Centers the image if it's smaller than the container */
    }

    .clickable-img {
        cursor: pointer; /* Changes the cursor to a pointer */
        padding: 10px; /* Adds some padding around the image */
        border: 2px solid var(--money); /* Adds a border around the image */
        border-radius: 50%; /* Rounds the corners */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Adds a slight shadow */
        transition: all 0.3s ease; /* Smooth transition for hover effects */
    }
    
    .clickable-img:hover {
        border-color: var(--money); /* Changes the border color on hover */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Increases the shadow on hover */
    }

    .helper-img {
        width: 100px;
        height: auto; /* To maintain the aspect ratio */ 
        display: block;       
        /* align-items: center;
        justify-content: center; */

    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background-color: white;
    }

    a {
        color: var(--money);
    }

    header a {
        text-decoration: none;
        font-size: 40px;
    }

    .language-selector img {
        border-radius: 0px !important;
    }

    .scrollable-input {
        width: 100%; /* Make sure it spans the full width of the container */
        white-space: nowrap; /* Prevents the text from wrapping */
        overflow-x: auto; /* Enables horizontal scrolling */
        -webkit-overflow-scrolling: touch; /* Ensures smooth scrolling on iOS devices */
    }

.blue-stripe {
    width: 100%;
    height: 50px;
    background-color: white;
    color: var(--primary-color);
    /* position: fixed; */
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
}


.tabs ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    width: 100%;
}

.tabs ul li {
    cursor: pointer;
    padding-left: 200px;
    padding-right: 200px;
    text-align: center;
    flex-basis: 50%; /* Each tab takes 50% of the width */
    color:white !important;
}

.tabs ul li.active {
    font-weight: bold;
    border-bottom: 2px solid #000;
}

.tabs ul li i {
    display: block;
    margin-bottom: 5px; /* Space between icon and text */
}



/* VENUS */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.7); */
    background: rgba(0, 0, 0);
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.modal-content {
    background: #202020;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    /* max-width: 500px; */
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-button {
    font-size: 24px;
    cursor: pointer;
}

.purchase-grid {
    width:100%;
    height:100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 400px;
}

.purchase-option img {
    width: 500px;
    height: 500px;
    cursor: pointer;
}

button {
    padding: 20px;
}

/* intake form */

.intake-fullscreen {
    /* position: fixed; */
    /* top: 0; */
    /* width: 95%; */
    height: 100%;
    /* background-color: white; */
    /* z-index: 1000; */
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
}

.choice-button {
    padding: 10px 20px;
    width:70%;
    border: 1px solid #ccc;
    background-color: white;
    color: black;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  /* Style for selected choice buttons */
  .choice-button.selected {
    background-color: black;
    color: white;
    border-color: black;
  }

  /* Slide Transition Animation */
  .slide-enter-active, .slide-leave-active {
    transition: transform 1s ease;
  }
  
  /* New screen starts from the right */
  .slide-enter {
    transform: translateX(100%);   
  }

  /* No Transition (for backward direction) */
.no-transition-enter-active, .no-transition-leave-active {
    transition: none;
  }

  /* Old screen exits to the left */
  /* .slide-leave, .slide-enter-to {    
    transform: translateX(-100%); 
  } */

.nav-button {
    color: white;
    cursor: pointer;
    width: 280px;
    margin: 20px;
    background-color: darkcyan;
}



/* paywall */
.paywall-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 20px; */
    /* background: #000; */
    color: #fff;
    /* height: 100vh; */
    width: 100%;
    text-align: center;
}

.paywall-header {
    margin-bottom: 20px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
}

.paywall-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.paywall-content li {
    margin: 5px 0;  
    padding-left: 150px; /* Adjust padding as needed */
    display: flex;
    align-items: center;
    position: relative;
}

.paywall-options {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
}

.option-button {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid darkcyan;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.option-button.selected {
    background: darkcyan;
    border-color: #ffffff;
}

.subscribe-button {
    width: 100%;
    padding: 15px;
    background: darkcyan; /* Green background */
    border: none;    
    color: #fff;    
    cursor: pointer;
}

.question-screen label {
    /* font-size: 18px; */
    color: white;
}