﻿@font-face {
    font-family: "Drupadi";
    src: url(/static/font/Drupadi-Regular.ttf);
}

@font-face {
    font-family: "Arial-Rounded";
    src: url(/static/font/arial-rounded-mt-bold.ttf);
}

.customFont {
    font-family: "Drupadi", fallback;
    font-style: normal;
}

.rounded {
    font-family: "Arial-Rounded", fallback;
}

.no-left-pad {
    padding-left: 0px !important;
    text-align: center;
}

.no-right-pad {
    padding-right: 0px !important;
}

.mini-right-pad {
    padding-right: 4px !important;
}

#addPause:hover {
    background-color: #BF9E5F;
}

/* Centering the Forms */
#email-login-form,
#create-account-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    padding: 20px;
    border-radius: 14px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}


/* Style for input fields */
#email-login-form input,
#create-account-form input {
    width: 100%;
    /* Full width */
    height: 50px;
    padding: 12px 20px;
    /* Increased padding for larger size */
    margin: 8px 0;
    /* Margin for spacing */
    display: inline-block;
    border: 1px solid #bf9e5f;
    /* Border styling */
    border-radius: 14px;
    /* Rounded corners */
    box-sizing: border-box;
    /* For proper box sizing */
    font-size: 16px;
    /* Larger font size for better readability */
}

#back-from-register,
#back-from-login {
    height: 35px !important;
    padding: 0px 20px !important;
    background-color: #645D4B !important;
}

/* Style for buttons */
#email-login-form button,
#create-account-form button {
    text-align: center;
    width: 100%;
    /* Full width */
    background-color: #ffd075;
    /* Example background color */
    color: white;
    /* Text color */
    padding: 14px 20px;
    /* Increased padding for a larger button */
    margin: 8px 0;
    border: none;
    border-radius: 14px;
    /* Rounded corners */
    cursor: pointer;
    font-size: 16px;
    /* Larger font size */
}

#email-login-form #login-form,
#create-account-form #register-form {
    width: 100%;
}

#email-login-form button:hover,
#create-account-form button:hover {
    background-color: #ffc454;
    /* Slightly darker shade on hover */
}

#password-strength-bar {
    width: 0%;
    /* Initial width */
    height: 5px;
    /* Height of the bar */
    background-color: red;
    /* Initial color */
    margin-top: 5px;
    /* Margin from the input field */
    transition: width 0.3s ease, background-color 0.3s ease;
    /* Smooth transition for width and color change */
    border-radius: 2px;
    /* Optional: rounded corners */
}

/*Popup freemium upgrade*/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #FCFCFA;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 0px;
    border-radius: 15px;
    width: 400px;
    text-align: center;
    color: #212529;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popup-content h2 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    color: #645D4B;
    background-color: white;
    padding: 10px;
    margin: -20px -20px 0 -20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.popup-content h3 {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    color: black;
    background-color: #ffffff;
    padding: 10px;
    margin: 0 -20px 0 -20px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.popup-content .freemium-popup-description-container {
    background-color: #ffffff;
}

.popup-content .unlimited-content-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #645D4B;
    padding: 5px 10px;
    margin: 0 -20px 10px -20px;
}

.popup-content .unlimited-content {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    flex-grow: 1;
    text-align: center;
}

.popup-content p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #212529;
    padding: 5px;
    font-weight: bold;
}

.popup-content ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
}

.popup-content li {
    font-size: 14px;
    color: #212529;
}

.upgrade-button {
    background-color: #645D4B;
    /* Gris pour le fond du bouton */
    color: #ffffff;
    /* Texte du bouton en blanc */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

.upgrade-button:hover {
    background-color: #9c9182;
    /* Une teinte un peu plus foncée pour l'effet hover */
    color: white;
    text-decoration: none;
}

/* Centering form fields and actions */
.form-group,
.form-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

/* Styling buttons */
.btn {
    width: auto;
    /* Adjust based on your preference */
    margin: 0 auto;
    display: block;
}

/* Additional options (login buttons) */
.additional-options {
    text-align: center;
    /* Centers the buttons */
    margin-bottom: 20px;
    /* Spacing below the buttons */
}

/* Button styles in the additional options */
.additional-options button {
    margin: 5px;
    /* Spacing around each button */
    padding: 10px 15px;
    /* Padding inside the buttons */
    border-radius: 14px;
}

.login-button-divider {
    display: flex;
    /* Use flexbox to align items */
    align-items: center;
    /* Center items vertically */
    justify-content: center;
    /* Center items horizontally */
    margin-top: 15px;
    margin-bottom: 15px;
}

.login-button-divider-Linked {
    display: flex;
    /* Use flexbox to align items */
    align-items: center;
    /* Center items vertically */
    justify-content: center;
    /* Center items horizontally */
    margin-top: 15px;
    margin-bottom: 15px;
}

.divider-bar {
    flex-grow: 1;
    /* Bars take up available space */
    height: 1px;
    /* Height of the divider bar */
    background-color: #ccc;
    /* Color of the divider bar */
    margin: 0 10px;
    /* Spacing around the bars */
}

.login-button-divider span {
    white-space: nowrap;
    /* Prevents the text from wrapping */
    padding: 0 10px;
    /* Spacing around the text */
    font-size: 16px;
    /* Font size for the 'or' text */
    color: #666;
    /* Color for the 'or' text */
}


.custom-bullets li::before {
    content: "•";
    /* This is the bullet point character */
    display: inline-block;
    margin-right: 10px;
    /* Adjust the spacing as necessary */
}

.policy {
    font-family: 'Arial', sans-serif;
    /* You can choose another font if you prefer */
    max-width: 800px;
    /* Adjust to your preferred width */
    margin: 20px auto;
    /* Center the content and provide top/bottom spacing */
    padding: 20px;
    background-color: #f9f9f9;
    /* A light grey background for contrast */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* A subtle shadow for depth */
}

.policy>h1 {
    font-size: 2em;
    margin-top: 0;
    color: #333;
}

.policy>h2 {
    font-size: 1.5em;
    margin-top: 20px;
    /* Spacing before each new section */
    color: #444;
}

.policy>p {
    line-height: 1.6;
    /* Makes text more readable */
    color: #666;
    margin-bottom: 20px;
    /* Spacing after each paragraph */
}

/* Add some hover effect to potential links in the content */
.policy>a:hover {
    text-decoration: underline;
}

/* Container Style */
.termspa {
    font-family: 'Arial', sans-serif;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Heading Style */
.termspa>h1 {
    font-size: 2.2em;
    margin-top: 0;
    color: #333;
    text-align: center;
}

/* Subtitle Style */
.termspa>h3 {
    font-size: 1.6em;
    margin: 20px 0;
    color: #555;
    text-align: center;
}

/* Unordered List and List Items */
.termspa>ul.custom-bullets {
    list-style-type: none;
    /* This removes the default bullet points */
    padding-left: 0;
}

.termspa>ul.custom-bullets li {
    line-height: 1.6;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

/* Custom Bullet Point Style */
.termspa>ul.custom-bullets li::before {
    content: '•';
    /* This is a bullet point character */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2em;
}

/* Text Color */
.termspa>ul.custom-bullets li,
h3 {
    color: #666;
}

#swapButton {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    padding: 10px 20px;
    /* Add some padding to make the button bigger */
    font-size: 18px;
    /* Increase font size for the text */
    border: none;
    /* To remove default button styling */
    border-radius: 5px;
    /* To give some rounded corners */
    cursor: pointer;
    display: flex;
    /* To layout image and text horizontally */
    align-items: center;
    /* Center-align items vertically */
    background-color: transparent !important;
}

.formAudio {
    margin-top: 25px;
}

#swapimg {
    width: 50px;
    /* Set to desired width */
    height: 50px;
    /* Set to desired height */
    margin-right: 30px;
    /* Add some space between the image and text */
    background-color: transparent !important;
}

#swapButton.rotated {
    right: auto;
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}

#BNBanner {
    display: block;
    width: 100%;
    /* Ensures the image is responsive */
    max-width: 975px;
    /* Keeps the width within the desired range */
    height: auto;
    /* Maintains the aspect ratio */
    margin: 0 auto;
    /* Centers the image */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Adds a subtle shadow */
    object-fit: contain;
    /* Ensures the image fits within the container without cropping */
}

#containerTitle {
    max-width: 975px !important;
    /* Prevents the container from exceeding this width */
    margin: 0 auto;
    /* Centers the container on the page */
    padding: 0;
    /* Removes any default padding */
}

#containerTitle .pricingTitle {
    display: flex;
    justify-content: center;
    /* Centers the image horizontally */
    align-items: center;
    /* Centers the image vertically within the container */
    width: 100%;
    /* Ensures the container width is 100% */
}

#footerBanner #BNBanner {
    margin-top: 0%;
    margin-bottom: 5%;
    min-width: 15%;
    max-width: 75%;
}

#BNBannerMenu {
    max-width: 23em;
}

/*.alignCenterTrad {
  align-content: flex-end;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  display: flex;
}*/

/*------ Settings ------*/
.containerPlay {
    --color: #BF9E5F;
    --size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: var(--size);
    user-select: none;
    fill: var(--color);
    width: 30px;
    height: 45px;
    animation: pulse 1.5s 5;
}

.containerPlay .play {
    position: absolute;
    animation: keyframes-fill .5s;
    right: unset;
}

.containerPlay .pause {
    position: absolute;
    display: none;
    animation: keyframes-fill .5s;
    right: unset;
}

/* ------ On check event ------ */
.containerPlay input:checked~.play {
    display: none;
}

.containerPlay input:checked~.pause {
    display: block;
}

/* ------ Hide the default checkbox ------ */
.containerPlay input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 35px;
    width: 35px;
    z-index: 10;
}

.recording-container {
    display: flex;
    flex-direction: row;
    /* Changed to row layout */
    gap: 0.75rem;
    /* Reduced gap between elements */
    padding-bottom: 0.5rem;
    border-radius: 50px;
    /* Rounded container to match button */
    justify-content: flex-end;
}

.mic-button {
    position: relative;
    padding: 0.75rem;
    /* Reduced from 1rem */
    width: 35px;
    /* Reduced from 48px */
    height: 35px;
    /* Reduced from 48px */
    border: none;
    border-radius: 50%;
    background: #007bff;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mic-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.mic-button.recording {
    background: #dc3545;
    animation: pulse 1.5s infinite;
}

.mic-icon {
    width: 25px;
    /* Reduced from 24px */
    height: 25px;
    /* Reduced from 24px */
}

.instructDiv {
    background-color: white;
    /* Prevent user from resizing */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-bottom: 15px;
}

/*.svgAudioPrevNext {

}*/

.svgAudioPrevNext svg {
    position: relative;
    top: 0%;
    transform: translateY(-0%);
    right: 0px;
}

/* ------ Animation ------ */
@keyframes keyframes-fill {
    0% {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }

    50% {
        transform: rotate(-10deg) scale(1.2);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #645D4B;
    }

    70% {
        box-shadow: 0 0 0 5px rgba(193, 244, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(193, 244, 246, 0);
    }
}

#dropAudio {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.boxButtonsPlayPrevNext {
    display: inline-flex;
    flex-wrap: nowrap;
}

#clear-icon7 {
    right: 30px !important;
}

#ifLink {
    margin-top: 0px;
    margin-bottom: 0px;
}

.fix-gutters-six>[class*="col-md-6"] {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.fix-gutters-six>[class*="col-md-4"] {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.toggle-switch-container {
    position: relative;
    display: flex;
    z-index: 2;
    margin-top: 60px;
}

.row {
    position: relative;
}

/*#translation {}

#summarization {}

#joke {}

#combinedTrans {
  padding-bottom: 15px;
}*/

#multiTrans {
    padding-bottom: 15px;
}

#multiRewrite {
    padding-bottom: 15px;
}



body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    line-height: 2.55;
    background-color: #f6f2e9 !important;
    scroll-behavior: smooth;
}

.container {
    max-width: 95% !important;
    padding-left: 1rem;
    margin-left: 0px;
}

.profile-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    box-shadow: 1px solid #000;
}

#offcanvasLeft,
#offcanvasLeftLib,
#offcanvasRight {
    top: 60px;
    /* Adjust this value to control the vertical position */
}

.offcanvas-backdrop.fade.show {
    top: 59px !important;
}

#menuToggle {
    position: relative;
    width: 30px;
    height: 20px;
    /* Adjusted to account for the new bar height */
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.bar {
    width: 100%;
    height: 2px;
    border-radius: 1px;
    /* Adjusted radius for the new height */
    background: black;
    transition: 0.35s cubic-bezier(.5, -0.35, .35, 1.5);
}

/* Animation for the active (X) state */
#menuToggle.active .bar--top {
    transform: translateY(9px) rotate(-135deg);
    /* Adjusted translateY value */
}

#menuToggle.active .bar--middle {
    opacity: 0;
}

#menuToggle.active .bar--bottom {
    transform: translateY(-9px) rotate(135deg);
    /* Adjusted translateY value */
}

.history-offcanvas,
.library-offcanvas {
    top: 0;
    bottom: 5px;
    /* Starts from the top */
    left: calc(100% - 500px);
    /* Adjust based on the width of the main menu (500px in this example) */
    width: 100% !important;
    /* Width of the history menu; adjust as needed */
    margin-bottom: 0px !important;
    overflow-y: auto;
}

.dates-column,
.requests-column,
.details-column,
.extract-column {
    display: none;
}

.features-column,
.dates-column,
.requests-column,
.details-column,
.extract-column {
    min-height: 0px !important;
    margin-bottom: 10px !important;
    margin-left: 5px !important;
    margin-right: 5px !important;
    background: #F8F6F2 !important;
    overflow: auto !important;
}

.features-list li,
.dates-list li,
.requests-list li {
    list-style-type: none;
    cursor: pointer;
}

ul {
    list-style-type: none;
    /* Remove default bullets */
    padding-left: 0;
    /* Remove default padding */
}

li.custom-icon {
    /* Enable absolute positioning within the li element */
    padding-left: 2em;

}

li.no-icon {
    position: relative;
    /* Enable absolute positioning within the li element */
    padding-left: 2em;
    /* Create space for the check icon */
    padding-right: 2em;
    font-family: "Arial-Rounded";
    font-size: 10px;
    color: darkgray;
}

li.space {
    margin-top: 20px;
}

li.custom-icon::before {
    content: "✔";
    /* The check icon */
    position: absolute;
    /* Absolute positioning */
    left: 0;
    /* Position at the start of the li element */
    font-size: 1.0em;
    /* Adjust the size as needed */
    font-family: sans-serif;
    color: limegreen;
}

li.custom-icon-cross {
    /* Enable absolute positioning within the li element */
    padding-left: 2em;
}

li.custom-icon-cross::before {
    content: "❌";
    /* The check icon */
    position: absolute;
    /* Absolute positioning */
    left: 0;
    margin-top: 4px;
    font-size: 0.7em;
    /* Adjust the size as needed */
    font-family: sans-serif;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

li.custom-icon-upg {
    /* Enable absolute positioning within the li element */
    padding-left: 2em;
}

li.custom-icon-upg::before {
    content: "⏫";
    /* The check icon */
    position: absolute;
    /* Absolute positioning */
    left: 0;
    margin-top: 4px;
    font-size: 0.7em;
    /* Adjust the size as needed */
    font-family: sans-serif;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.products {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
}

.product img {
    width: 300px;
}

.product input {
    border: 1px solid #039be5;
    border-radius: 0.25rem;
    font-size: 1.125rem;
    line-height: 1.25rem;
    padding: 0.25rem;
}

#toolbar button {
    padding: 5px 10px;
    margin-right: 5px;
}

.note-editor.note-frame {
    border: 1px solid #e0e0e0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.note-editor.note-frame .note-editing-area {
    background-color: #fbfbfb;
}

.note-toolbar {
    background-color: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
}

.note-btn-group .note-btn {
    border-radius: 0;
}

.note-btn-group .note-btn:first-child {
    border-radius: 3px 0 0 3px;
}

.note-btn-group .note-btn:last-child {
    border-radius: 0 3px 3px 0;
}

.closen {
    position: absolute;
    right: 20px;
    top: 10px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
}

.closen:hover,
.closen:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.simpleFeat {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

#subscription {
    font-family: Arial-Rounded;
    text-transform: uppercase;
    font-size: 26px;
    color: #BF9E5F;
}

.most-pop {
    width: 90%;
    max-width: 260px;
}

.butPricing {
    cursor: pointer;
    width: auto;
    position: relative;
    padding: 0px 10px;
    font-size: 15px;
    color: #bf9e5f;
    border: 2px solid #bf9e5f;
    border-radius: 34px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.butPricing::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 150px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: #bf9e5f;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

#mailogo {
    top: -1px !important;
    right: 5px;
}

.butPricing:hover::before {
    scale: 3;
}

.butPricing:hover {
    color: #ffffff;
    scale: 1.1;
    box-shadow: 0 0px 20px rgba(193, 163, 98, 0.4);
}

.butPricing:active {
    scale: 1;
}

.butMenuinfos {
    display: inline-block;
    width: -webkit-fill-available;
    padding: 1em 0.5em;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-size: small;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #645D4B;
    background-color: #fff;
    border: 1px solid #000;
    border-left: transparent;
    border-right: transparent;
    border-radius: 45px !important;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    position: relative;
    /* Ensures absolute positioning of stars is relative to the button */
    overflow: hidden;
    /* Hides stars that overflow outside of the button boundary */
}

.star {
    position: absolute;
    background-color: #ffff00;
    clip-path: polygon(50% 0%,
            61% 35%,
            98% 35%,
            68% 57%,
            79% 91%,
            50% 70%,
            21% 91%,
            32% 57%,
            2% 35%,
            39% 35%);
    opacity: 0;
    /* Hidden by default until hover */
    animation-name: floatStar, fadeInOut;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Star animations on hover */
.butMenuinfos:hover .star {
    opacity: 1;
}

/* Animations */
@keyframes floatStar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }
}

/* Individual Star Styles and Positions */
.star:nth-child(1) {
    width: 8px;
    height: 8px;
    animation-duration: 2.1s, 0.8s;
    top: 30%;
    left: 10%;
}

.star:nth-child(2) {
    width: 12px;
    height: 12px;
    animation-duration: 1.8s, 1.1s;
    top: 70%;
    left: 90%;
}

.star:nth-child(3) {
    width: 10px;
    height: 10px;
    animation-duration: 2.4s, 0.9s;
    top: 50%;
    left: 50%;
}

.star:nth-child(4) {
    width: 14px;
    height: 14px;
    animation-duration: 2s, 1s;
    top: 10%;
    left: 90%;
}

.star:nth-child(5) {
    width: 9px;
    height: 9px;
    animation-duration: 1.9s, 0.85s;
    top: 90%;
    left: 10%;
}


.profile-section>div {
    margin-top: 10px;
    margin-bottom: 10px;
}

#profile-picture {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 5%;

}

.cardAbo {
    width: 100%;
    margin-top: 20px;
    /* Optional: To give some space between the cards above and these sections */
}

.cardAbo>div {
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    /* This can be adjusted based on your needs */
    margin-bottom: 20px;
    /* Space between each pricing section */
    transition: box-shadow 0.3s;
    /* For hover effect */
}

.cardAbo>div:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}


button:disabled,
button[disabled] {
    border: 1px solid black;
    background-color: grey;
    color: white;
    padding: 15px;
    cursor: not-allowed;
}

.lengthRadioContainer button:disabled,
.lengthRadioContainer button[disabled] {
    border: none;
    /* or whatever styles should be applied to these buttons */
    background-color: initial;
    color: initial;
    padding: 15px;
    cursor: not-allowed;
    /* You might still want to keep the not-allowed cursor */
}


.apple-login {
    display: block;
    background-color: black;
    color: white;
    padding: 0px;
    border-radius: 2px;
    border: none;
    text-align: left;
    font-size: 14px;
    height: 51px;
}

.apple-login img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
    position: relative;
    top: -3px;
    right: 4px;
}

.apple-login:hover {
    background-color: black;
}

.password-input-group {
    position: relative;
    width: inherit;
}

.password-input {
    padding-right: 30px;
    /* Make space for the eye icon */
}

.password-toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: grey;
    cursor: pointer;
}


.google-login {
    display: block;
    background: white;
    color: #444;
    padding: 0px;
    border-radius: 2px;
    border: none;
    text-align: left;
    font-size: 14px;
}

.mainRS {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.upRS {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
}

.downRS {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
}

.card1RS {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 90px 5px 5px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: background-color .2s ease-in-out, transform .2s ease-in-out;

}

.instagramRS {
    margin-top: 1.5em;
    margin-left: -.9em;
}

.card2RS {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 90px 5px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: background-image .2s ease-in-out, transform .2s ease-in-out;

}

.discordRS {
    margin-top: 1.5em;
    margin-left: 1.2em;
    fill: #5865F2;
    /* Updated color */
}

.card3RS {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 5px 5px 90px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: background-color .2s ease-in-out, transform .2s ease-in-out;

}

.youtubeRS {
    margin-top: -.6em;
    margin-left: 1.2em;
    fill: #FF0000;
    /* Updated color */
}

.card4RS {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 5px 90px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: background-color .2s ease-in-out, transform .2s ease-in-out;

}

.tiktokRS {
    margin-top: -.9em;
    margin-left: -1.2em;
    fill: #69C9D0;
    /* Updated color */
}

.card1RS:hover {
    cursor: pointer;
    transform: scale(1.1);
    background-color: #5865F2;
    /* Updated color */
}

.card1RS:hover .discord {
    fill: white !important;
}

.card2RS:hover {
    cursor: pointer;
    transform: scale(1.1);
    background-image: linear-gradient(45deg, #405DE6, #FD1D1D);
    /* Updated color */
}

.card2RS:hover .instagram {
    fill: white !important;
}

.card3RS:hover {
    cursor: pointer;
    transform: scale(1.1);
    background-color: #FF0000;
    /* Updated color */
}

.card3RS:hover .youtube {
    fill: white !important;
}

.card4RS:hover {
    cursor: pointer;
    transform: scale(1.1);
    background-color: #69C9D0;
    /* Updated color */
}

.card4RS:hover .tiktok {
    fill: white !important;
}

.socialSupp {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-evenly !important;
}

/*#closeModalButton{

}*/

.speedSliderContainer {
    position: relative;
    width: 100%;
    margin: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.labelsContainer {
    position: relative;
    width: 90%;
    /* Align labels with slider width */
    margin-bottom: 5px;
    height: 20px;
    /* Adjust height for better positioning */
}

.speedPlaceholder {
    position: absolute;
    top: -20px;
    /* Adjust to position labels above the slider */
    font-size: 16px;
    color: #645D4B;
    text-align: center;
    white-space: nowrap;
}

#lowLabel {
    left: 5%;
    font-weight: bold;
    color: #645D4B;
}

#normalLabel {
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    color: #645D4B;
}

#fasterLabel {
    right: 5%;
    font-weight: bold;
    color: #645D4B;
}

.speedSlider {
    width: 90%;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #BF9E5F 0%, #BF9E5F 50%, #cccccc 50%, #cccccc 100%);
    border-radius: 5px;
    height: 8px;
    outline: none;
    position: relative;
}

.speedSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #BF9E5F;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #ffffff;
    position: relative;
    z-index: 1;
    margin-top: -6px;
}

.speedSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #BF9E5F;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #ffffff;
    position: relative;
    z-index: 1;
    margin-top: -6px;
}

.speedSlider::-ms-thumb {
    width: 20px;
    height: 20px;
    background: #BF9E5F;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #ffffff;
    position: relative;
    z-index: 1;
    margin-top: -6px;
}

.speedSlider::-webkit-slider-runnable-track,
.speedSlider::-moz-range-track,
.speedSlider::-ms-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    border-radius: 5px;
    background: transparent;
    /* Use JavaScript to set the background */
}

.speedLabel {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    top: 115%;
    /* Position below the slider */
    left: 50%;
    /* Center horizontally */
    transform: translateX(-50%);
    /* Center the label */
    font-size: 16px;
    font-weight: bold;
    color: #645D4B;
}

/* Media Queries for Responsiveness */
@media (min-width: 480px) and (max-width: 768px) {
    .labelsContainer {
        width: 100%;
        display: flex;
        justify-content: space-between;
        /* Ensure labels are spaced evenly */
    }

    .speedPlaceholder {
        font-size: 16px;
        /* Adjust label size */
    }

    #normalLabel {
        left: 50%;
        transform: translateX(-50%);
        font-size: 16px;
    }

    #fasterLabel {
        right: 5%;
        /* Keep aligned to the right edge */
        font-size: 16px;
    }

    .speedLabel {
        font-size: 16px;
        top: 120%;
        /* Adjust position below the slider */
    }
}

@media (min-width: 300px) and (max-width: 480px) {
    .labelsContainer {
        width: 100%;
        display: flex;
        justify-content: space-between;
        /* Ensure labels are spaced evenly */
    }

    .speedPlaceholder {
        font-size: 16px;
        /* Further adjust label size */
    }

    #normalLabel {
        left: 50%;
        transform: translateX(-50%);
        font-size: 16px;
    }

    #fasterLabel {
        right: 5%;
        /* Keep aligned to the right edge */
        font-size: 16px;
    }

    .speedLabel {
        font-size: 16px;
        top: 125%;
        /* Adjust position below the slider */
    }
}

/* Media Query for Max Height 300px */
@media (max-width: 300px) {
    .speedSliderContainer {
        margin: 20px 15px;
    }

    .labelsContainer {
        width: 110%;
        margin-bottom: 2px;
        height: 15px;
        display: flex;
        justify-content: space-between;
        /* Ensure labels are spaced evenly */
    }

    .speedPlaceholder {
        top: -15px;
        /* Adjust to bring labels closer to the slider */
        font-size: 16px;
    }

    #normalLabel {
        left: 50%;
        transform: translateX(-50%);
        font-size: 13px !important;
    }

    #fasterLabel {
        right: 5%;
        /* Align to the right edge */
        font-size: 13px !important;
    }

    #lowLabel {
        left: 5%;
        font-size: 13px !important;
    }

    .speedSlider {
        height: 6px;
    }

    .speedSlider::-webkit-slider-thumb,
    .speedSlider::-moz-range-thumb,
    .speedSlider::-ms-thumb {
        width: 15px;
        height: 15px;
        margin-top: -4px;
    }

    .speedLabel {
        font-size: 10px !important;
        top: 130%;
        /* Further adjust for small height screens */
        left: 50%;
        transform: translateX(-50%);
        /* Center horizontally */
    }
}

.speedTitle {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px;
    /* Adjust the spacing between the title and the slider */
    text-align: center;
    width: 100%;
    color: #645D4B;
}

#RecharMin {
    margin-top: 20px !important;
    font-size: small !important;
    margin-left: 25px !important;
    white-space: pre-wrap !important;
}

.folo {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-evenly !important;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Aligns items at the top */
    padding-top: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    /* Vertical center alignment of the logo */
    justify-content: center;
    /* Logo aligned to the left */
    width: 50%;
    /* Logo section takes up 50% of the footer */
}

.footer-right {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    /* Aligns lists to the top */
    align-items: flex-start;
    /* Lists aligned to the right */
    width: 50%;
    /* Lists section takes up the remaining 50% */
}

.footer-section {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    /* Remove default margin */
}

.footer-section ul li {
    padding: 2px 0;
    /* Vertical padding for list items */
}

.footer-section ul li a {
    color: #000000;
    /* Adjust the color according to your design */
    text-decoration: none;
    font-size: smaller;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 12px !important;
    color: #333;
    text-align: left;
}

.footer-logo img {
    max-width: 120px;
    /* Adjust according to your logo's size */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: transparent;
    /* Dark background for footer */
    color: black;
    /* White text color */
    font-family: 'Arial', sans-serif;
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-bottom-left p,
.footer-bottom-right p {
    margin: 0;
    /* Remove default margin from paragraphs */
}

.footer-socials {
    margin-left: 20px;
}

.footer-socials a {
    margin-right: 10px;
    /* Space between social icons */
}

.footer-socials img {
    height: 24px;
    /* Standard size for icons */
    width: auto;
    transition: opacity 0.3s ease-in-out;
    /* Smooth transition for hover effect */
}

.footer-socials a:hover img {
    opacity: 0.75;
    /* Dim icons on hover for interaction feedback */
}

.product-section h3 {
    text-align: center;
    margin-right: 20px;
}

.product-columns {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.product-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.google-login img {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.google-login:hover {
    background: white;
}

.badge-gif {
    width: 150px;
    /* Optional: Set a maximum width */
    height: 60px;
    /* Optional: Set a maximum height */

}

#inputtextarea1,
#inputtextarea2,
#inputtextarea3,
#inputtextarea4,
#inputtextarea5,
#inputtextarea6,
#inputtextarea7,
#outputtextarea1,
#outputtextarea2,
#outputtextarea3,
#outputtextarea4,
#outputtextarea5,
#outputtextarea6,
#outputtextarea7,
#outputtextarea8 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: auto;
    overflow-x: hidden;
    align-content: flex-start;
    flex-wrap: wrap;
    max-height: 730px;
}

#outputtextarea1>textarea,
#outputtextarea2>textarea,
#outputtextarea3>textarea,
#outputtextarea4>textarea,
#outputtextarea5,
#outputtextarea6>textarea,
#outputtextarea7>textarea,
#outputtextarea8>textarea,
#outputtextarea9>textarea,
#outputtextareamulti1>textarea,
#outputtextareamulti4>textarea {
    background-color: #F8F6F2;
}

#outputtextareamulti2>textarea,
#outputtextareamulti5>textarea {
    background-color: transparent;
}

#outputtextareamulti3>textarea,
#outputtextareamulti6>textarea {
    background-color: transparent;
}

#outputtextareamulti7>textarea,
#outputtextareamulti8>textarea,
#outputtextareamulti9>textarea {
    background-color: transparent;
}

#outputtextareamulti1,
#outputtextareamulti4,
#outputtextareamulti2,
#outputtextareamulti5,
#outputtextareamulti3,
#outputtextareamulti6 {
    padding: 10px 10px 0 10px;
    min-height: 137px;
}

#outputtextareamulti7,
#outputtextareamulti8,
#outputtextareamulti9 {
    padding: 10px 10px 0 10px;
    min-height: 162px;
}

#outputtextarea1,
#outputtextarea2,
#outputtextarea3,
#outputtextarea4,
#outputtextarea5,
#outputtextarea6,
#outputtextarea7,
#outputtextarea8,
#outputtextarea9 {
    padding: 10px 10px 0 10px;
    min-height: 313px;
    white-space: pre-wrap;
}

.file-upload-button {
    padding: 0 5px;
    transition: opacity 0.3s;
    font-size: 30px;
    margin-left: auto;
}

.file-upload-button:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.recording-container {
    position: relative;
    margin-left: 5px;
    /* Espacement entre le bouton et le container */
}

.languageDropdown {
    border: 1px solid black;
    border-radius: 0px;
    flex-direction: column;
    /* Stack buttons vertically */
    justify-content: center;
    /* Horizontal centering in a flex container */
    align-items: center;
    padding: 1em 2em;
    margin-left: 10px;
    margin-bottom: 5px;
}

.otherDropdown {
    height: 40px !important;
    background-color: transparent;
    border-radius: 0px;
    color: #645D4B;
    border: 0px solid white;
    flex-direction: column;
    /* Stack buttons vertically */
    justify-content: center;
    /* Horizontal centering in a flex container */
    align-items: center;
    /*padding: 1em 2em;*/
    width: auto;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 24px;
    /* Space for the arrow */
}

.otherDropdown::-ms-expand {
    display: none;
    /* Hide the arrow in IE/Edge */
}

.otherDropdown:hover {
    /*background-color: #F6F2E9;*/
    color: #645D4B;
    cursor: pointer;
}

.otherDropdown:focus {
    border: 0px solid white;
    outline: none;
}

/* Styles spécifiques pour la nouvelle instance Select2 */
.custom-select2-dropdown .select2-results__option--highlighted {
    color: #000 !important;
    background-color: #F6F2E9 !important;
}

.custom-select2-dropdown .select2-container .select2-selection--single {
    height: auto;
}

.custom-select2-dropdown .select2-container .select2-container--default .select2-container--open {
    top: 0px !important;
    left: 0px !important;
}

.custom-select2-dropdown .select2-dropdown {
    /*max-height: none !important;*/
    /*overflow-y: hidden !important;*/
    max-height: 80vh !important;
    max-width: 300px !important;
    width: 80vw !important;
}

.custom-select2-dropdown {
    border: 1px solid #aaa;
    border-top: 1px solid #aaa !important;
}

#dropdownContainerInputs5 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

#dropdownContainerInputs4 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

#dropdownContainerOutputs2 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

#dropdownContainerOutputs3 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

#dropdownContainerOutputs4 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

#dropdownContainerInputs1 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

#dropdownContainerOutputs1 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

#dropdownContainerInputs8 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

#dropdownContainerInputs2 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

#dropdownContainerInputs3 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

#dropdownContainerInputs6 .select2-container {
    top: 0px !important;
    left: 0px !important;
}

.custom-select2-dropdown .select2-results {
    max-height: calc(100% - 42px) !important;
    /* Adjust 50px according to the space you need */
    overflow-y: auto !important;
    /* Add vertical scroll */
}

.custom-select2-dropdown .select2-results__option {
    padding: 4px 8px;
    line-height: 1;
    width: 50%;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 95%;
}

.custom-select2-dropdown .select2-results .select2-results__options {
    height: 100%;
    overflow-y: auto !important;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.custom-select2-dropdown .select2-container--open .select2-dropdown--above {
    border: 1px solid #aaa !important;
    border-radius: 4px !important;
}

.custom-select2-dropdown .select2-container--default .select2-selection--single {
    border: none;
}

.custom-select2-dropdown .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
}

/* Ajout des titres en gras */
.custom-select2-dropdown .select2-results__option[aria-disabled=true] {
    font-weight: bold;
    cursor: default;
    width: 100% !important;
    /* Titles should take the full width */
}

/* Affichage en deux colonnes */
.custom-select2-dropdown .select2-container--default .select2-results__options {
    display: flex;
    flex-wrap: wrap;
}

.custom-select2-dropdown .select2-container--default .select2-results__option {
    width: 50%;
    box-sizing: border-box;
}



.lengthRadioContainer {
    text-align: center;
}

.selectContainer {
    position: relative;
    display: inline-block;
}

.select2-container {
    vertical-align: -webkit-baseline-middle !important;
}

/* svg {
    position: absolute;
    right: 5px;
    Adjust based on your design
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
     Important: Make it non-interactive so the dropdown underneath is clickable
} */

.dropdownIcon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}



.top-bar {
    display: flex;
    justify-content: flex-start;
    background-color: #faf7f8;
    /* You can choose your preferred color */
    padding: 10px 20px;
}

.logo-container {
    display: flex;
}

#imgPromoMenu {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    margin-top: 10px;
    border-radius: 24px;
}

hr {
    margin: 0.5rem 0 !important;
}

.dropdown-select.modal {
    max-width: 532px !important;
    max-height: 480px !important;
    width: 90% !important;
    height: 90% !important;
    position: fixed;
}

.custom-select2-dropdown {
    max-width: 95vw !important;
    position: absolute !important;
    z-index: 1000;
    /*width: 38vh !important;*/
    height: 72vh;
    max-height: 80vh !important;
    max-width: 380px !important;
    width: 76vw !important;
}

@media (max-width: 764px) {
    .custom-select2-dropdown {
        /* Centering */
        left: 39vw !important;
        transform: translateX(-50%);
    }
}

.dropdown-select.modal.fade.theme-mytheme.scroll {
    position: absolute;
    z-index: 1000;
}

.desc {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.desc .desc-text {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.desc:hover .desc-text {
    visibility: visible;
    opacity: 1;
}

#inter {
    width: 15px;
    height: 15px;
}

.modal-open {
    overflow: visible !important;
    padding-right: 0px !important;
}

.mod {
    position: relative;
}

.dropdown-select.theme-mytheme .modal-header {
    background-color: #FFFFFF;
    justify-content: center;
}

.dropdown-select.theme-mytheme .modal-dialog {
    max-width: 532px !important;
}

.dropdown-select.theme-mytheme .modal-header input[type="text"] {
    background-color: #FFFFFF;
}

.dropdown-select.theme-mytheme .modal-header input[type="text"]:focus {
    border-color: #645D4B;
    box-shadow: 0px 0px 0px #00000000;
}

.dropdown-select.theme-mytheme .modal-body {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* Optional: If you want the content to take up the full height of the modal body. */
}

.dropdown-select.theme-mytheme .modal-body .container .row {
    height: 50px;
    align-content: center;
    text-align: center;
}


.dropdown-select.theme-mytheme .modal-body .container .row:nth-child(odd) {
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
}

.dropdown-select.theme-mytheme .modal-body .container .row:nth-child(even) {
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
}

.dropdown-select.theme-mytheme .item-highlight {
    background-color: #F6F2E9;
    /*font-style: italic;
    font-weight: bold;*/
}

/*.dropdown-select.theme-mytheme .item-normal {
        font-style: normal;
    font-weight: normal;
    }*/

.dropdown-select.theme-mytheme .col {
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 95%;
}

.dropdown-select.theme-mytheme .col :hover {
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #F6F2E9 !important;
}

#dropdownContainerEmotions1,
#dropdownContainerEmotions2,
#dropdownContainerEmotions3,
#dropdownContainerEmotions4 {
    height: 42px;
}

#dropdownContainerOutputs1,
#dropdownContainerOutputs2,
#dropdownContainerOutputs3,
#dropdownContainerOutputs4,
#dropdownContainerInputs1,
#dropdownContainerInputs2,
#dropdownContainerInputs3,
#dropdownContainerInputs4,
#dropdownContainerInputs5,
#dropdownContainerInputs6 {
    width: 100%;
    margin-bottom: 0px;
}

#dropdownContainerInputs2,
#dropdownContainerInputs1,
#dropdownContainerOutputs1 {
    margin-bottom: 0px !important;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.btnInputLanguage {
    width: 100%;
    border-top-left-radius: 12px !important;
    min-height: 39px;
    display: flex;
    justify-content: space-between;
    padding-left: 14px;
    padding-right: 14px;
}

.btnInputLanguage:hover {
    background-color: #ddd !important;
}

#dropdownContainerInputs10_button {
    border-radius: 10px !important;
    margin-bottom: 10px;
}

#dropdownContainerInputs9_button {
    border-radius: 10px !important;
    margin-bottom: 10px;
}

.btnInputLanguage>#text {
    margin-top: 2px !important;
}

#summary-length {
    border: 1px solid black;
}

.limited-textarea {
    position: relative;
}

.clear-button {
    position: absolute;
    top: -5px !important;
    right: 14px !important;
    height: 15px;
    width: 15px;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    z-index: 1;
}

.signup-button {
    /* your custom styles here */
    background-color: #a5e6d9;
}

.flexend {
    align-items: flex-end !important;
    margin-bottom: 0px !important;
}

.coupon-input-container {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    height: 15vh;
    /* Full viewport height */
    padding: 20px;
    width: 100% !important;
    background-color: #f4f4f4;
    /* Light background color */
}

/* Style the input field */
.coupon-input-container input[type="text"] {
    padding: 15px 20px;
    width: 100%;
    /* Full width */
    max-width: 300px;
    /* Maximum width of the input field */
    border: none;
    /* No border */
    border-bottom: 2px solid #555;
    /* Underline style */
    border-radius: 0;
    /* No border radius */
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    font-size: 18px;
    /* Slightly larger font size */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Subtle shadow for depth */
    transition: all 0.3s ease;
    /* Smooth transition for interactions */
}

/* Enhance the input field on focus */
.coupon-input-container input[type="text"]:focus {
    outline: none;
    border-bottom: 2px solid #007bff;
    /* Highlight color on focus */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 1px 0 #007bff;
    /* Shadow and highlight */
}

/* Placeholder styling */
.coupon-input-container input[type="text"]::placeholder {
    color: #aaa;
    /* Placeholder text color */
}

#trash {
    width: 30px;
    height: 30px;
    margin-top: 8px;
}

#soon {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 50px;
    height: 18px;
}

.multi {
    position: absolute;
    top: -4px;
    right: -4px;
}

.multiA {
    position: absolute;
    top: -10px;
    right: -4px;
}

.multi-active {
    width: 54px;
    height: 22px;
}

.multi-inactive {
    width: 50px;
    height: 18px;
}

.textarea-container>#form {
    width: 49%;
    /* slightly less than 50% to account for any potential border or padding */
    padding: 0;
    margin: 0;
}

.textarea-container textarea {
    width: 50%;
    box-sizing: border-box;
    /* this ensures that padding and border are included in the element's total width/height */
}

textarea {
    line-height: 1;
    width: 100%;
    padding: 14px;
    padding-right: 25px !important;
    font-size: 16px;
    border: 0px solid #000;
    margin-bottom: 2px;
    border-radius: 5px;
    resize: none;
    overflow-y: hidden;
    min-height: 300px;
}

.txta {
    width: 100%;
    position: absolute;
    padding: 14px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: 0px solid #000;
    margin-bottom: 2px;
    border-radius: 5px;
    resize: none;
    overflow-y: hidden;
    min-height: 110px;
}

::-webkit-resizer {
    display: none;
}

textarea:focus {
    outline: none;
}

.row.align-top {
    align-items: flex-start;
}

/* Nav bar styles */
.nav-tabs {
    margin-bottom: 0px;
    border-bottom: 0px solid #d3d3d3 !important;
}

.nav-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    /*color: #333;
    background-color: #f2f5f5;*/
    /*border-right: 1px solid #d3d3d3;*/
    /*font-size: 18px;*/
    /*padding: 10px 14px;*/
    border-top-left-radius: 24px !important;
    border-top-right-radius: 24px !important;
    /*position: absolute;*/
    width: 136px;
    height: 40px;
    /*top: 10px;*/
    /*left: 14px;*/
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    color: #635c4a;
    background-color: #fffcfb;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.nav-link:last-child {
    border-right: none;
    box-shadow: none;
    /* No shadow on the last tab */
}

.nav-link.active {
    color: #635c4a;
    background-color: #f2f5f5;
    box-shadow: none;
    /* No shadow on active tab */
}

.nav-link.ready {
    color: #635c4a;
    border-color: transparent !important;
}

.nav-link.ready:hover {
    color: #fffcfc;
    background-color: #d0d0d0;
}

.nav-link.ready.active {
    font-weight: 600;
    color: #635c4a;
    background-color: #fffcfb;
    box-shadow: none;
    /* No shadow on active tab */
}

#shareAccountModal>.modal-dialog {
    max-width: 660px !important;
}

/* Styling for the email text within each user item */
.user-email {
    flex-basis: 50%;
    text-align: left;
    white-space: nowrap;
    /* Prevent the text from wrapping */
    overflow: hidden;
    /* Hide text that goes beyond the container */
    text-overflow: ellipsis;
    /* Add ellipsis (...) at the end of the text */
    max-width: 100%;
    /* Set a maximum width */
}

/* Additional container around email text to help with the layout */
.email-container {
    flex-grow: 1;
    display: flex;
    /* Use flexbox for inner container */
    align-items: center;
    /* Align text vertically */
    padding-right: 10px;
    /* Add some padding on the right */
}

/*
.sliderPrice-container {
  position: relative;
  padding: 0 10px; /* Add padding to prevent the thumb from being cut off at the ends 
}

.sliderPrice {
  -webkit-appearance: none;
  width: calc(100% - 20px); /* Adjust width to account for padding 
  height: 5px;
  background: #e9ecef;
  border-radius: 5px;
  outline: none;
  margin: 0; /* Remove default margin 
}

/* Slider Thumb (Webkit) 
.sliderPrice::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
  border-radius: 50%;
  margin-top: -10px;
}

/* Slider Thumb (Mozilla) 
.sliderPrice::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #4CAF50;
  cursor: pointer;
  border-radius: 50%;
}

/* Tick Marks 
.sliderPrice-container .slider-mark {
  position: absolute;
  height: 10px;
  width: 2px;
  background: #000;
  transform: translateY(-50%);
}

.sliderPrice-container .slider-mark[data-step="0"] { left: 10px; }
.sliderPrice-container .slider-mark[data-step="1"] { left: 25%; }
.sliderPrice-container .slider-mark[data-step="2"] { left: 50%; }
.sliderPrice-container .slider-mark[data-step="3"] { left: 75%; }
.sliderPrice-container .slider-mark[data-step="4"] { right: 10px; }

/* Label 
.selected-value-label {
  position: absolute;
  top: -35px; /* Adjust as needed 
  background-color: #FFF;
  padding: 5px;
  border: 1px solid #CCC;
  border-radius: 5px;
  white-space: nowrap; /* Prevent label text from wrapping 
}
*/

.tries-counter-container {
    text-align: end;
    position: relative;
    height: 0;
    top: 5px;
    font-size: 0.9em;
    font-weight: 600;
}

#triesCounter {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
}

#invitedUsersTable {
    width: 100%;
    border-collapse: collapse;
}

#invitedUsersTable th,
#invitedUsersTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    max-width: 200px;
    /* Adjust the max-width as needed */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#invitedUsersTable td {
    max-width: 150px;
    /* Adjust this value as needed */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Tooltip for full email on hover */
#invitedUsersTable td:hover::after {
    content: attr(data-email);
    position: absolute;
    left: 100%;
    top: 0;
    white-space: nowrap;
    z-index: 1;
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    display: block;
    /* Show the tooltip */
    max-width: 300px;
    /* Set a max-width for the tooltip */
}

#invitedUsersTable th {
    background-color: #f9f9f9;
    color: #333;
    font-weight: bold;
}

#invitedUsersTable tr:nth-child(even) {
    background-color: #f2f2f2;
}

#invitedUsersTable tr:hover {
    background-color: #ddd;
}

#invitedUsersTable button {
    background-color: transparent;
    /* Bootstrap 'danger' color for delete button */
    color: transparent;
    padding: 6px 12px;
    /* Padding inside the button */
    border: none;
    /* Remove default border */
    border-radius: 4px;
    /* Rounded corners */
    cursor: pointer;
    /* Change mouse pointer on hover */
    transition: background-color 0.3s ease;
    /* Smooth transition for hover effect */
    font-size: 0.9em;
    /* Font size */
    line-height: 1.6;
    /* Line height for the text inside the button */
    margin: 2px;
    /* Margin around the button */
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    /* Slight shadow for depth */
}

#invitedUsersTable button:hover {
    background-color: #c82333;
    /* A slightly darker shade for hover effect */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Slightly deeper shadow for hover effect */
}

#invitedUsersTable button:focus {
    outline: none;
    /* Remove focus outline */
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    /* Bootstrap-like focus shadow */
}

#invitedUsersTable button:active {
    background-color: #bd2130;
    /* Even darker shade for active/click effect */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    /* Inner shadow for active/click effect */
}

#invitationCounter {
    margin-bottom: 15px;
    /* Spacing below the counter */
    text-align: center;
    /* Center-align the text */
    font-size: 1.1em;
    /* Slightly larger font size */
    color: #333;
    /* Dark text color for visibility */
}

#invitationCounter strong {
    font-weight: bold;
    /* Bold for the 'Invitations:' label */
    color: black;
    /* Color similar to your modal header */
}

#availableInvites {
    background-color: #f9f9f9;
    /* Light background for the counter */
    border: 1px solid #ddd;
    /* Border to distinguish the counter */
    padding: 3px 8px;
    /* Padding around the counter text */
    border-radius: 5px;
    /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    margin-left: 5px;
    /* Spacing between label and counter */
    font-weight: bold;
    /* Bold font for the counter numbers */
}


/* Styling for the email container to handle overflow */
.email-container {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#invitationContainer {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.invitation-content {
    text-align: center;
    display: flex;
    /* Enable Flexbox */
    flex-direction: column;
    /* Stack children vertically */
    align-items: center;
    /* Center-align horizontally */
    justify-content: center;
    /* Center-align vertically */
    min-height: 300px;
    /* Adjust height as needed */
}

.invitation-content h1 {
    color: #333;
    /* Dark color for heading */
    margin-bottom: 20px;
}

.syllabAppSum {
    width: 100%;
    height: 100%;
    margin-bottom: 10%;
}

#continue-invitation-btn {
    margin-top: 5% !important;
}

.invitation-content p {
    color: #666;
    /* Slightly lighter color for paragraph */
    line-height: 1.6;
    /* Spacing for readability */
    margin-bottom: 20px;
}

#confirmation-invit {
    color: #666;
    background-color: #d1e7dd;
    /* Slightly lighter color for paragraph */
    line-height: 1.6;
    /* Spacing for readability */
    margin-bottom: 20px;
}

#error-invit {
    color: #666;
    background-color: #f8d7da;
    /* Slightly lighter color for paragraph */
    line-height: 1.6;
    /* Spacing for readability */
    margin-bottom: 20px;
}

#login-register-options a {
    color: #007bff;
    /* Blue color for link */
    text-decoration: none;
}

#login-register-options a:hover {
    text-decoration: underline;
}


.nav-link:hover {
    text-decoration: none;
    background-color: #fffcfc;
    color: #fffcfc;
}

.nav-link[disabled] {
    color: #999;
    cursor: not-allowed;
}

.nav-link[disabled]:hover {
    background-color: #f8f9fa;
    color: #d9dadb;
}

.nav-link.adjacent-to-active {
    box-shadow: 3px 0px 5px -2px rgba(0, 0, 0, 0.75);
    /* Shadow on adjacent tabs */
}

.nav-item:last-child .nav-link {
    margin-left: auto;
}

.nav-item {
    margin-right: 4px;
}

#outputCountSum {
    /*margin-top: 20px;*/
    margin-left: 10px;
    font-size: small;
    white-space: pre-wrap;
}

#outputCountWriter {
    margin-top: 10px;
    margin-left: 10px;
    font-size: small;
    white-space: pre-wrap;
}

#char-count1 {
    margin-top: 20px;
    font-size: small;
    margin-left: 14px;
    white-space: pre-wrap;
}

#char-count2 {
    margin-top: 20px;
    font-size: small;
    margin-left: 14px;
    white-space: pre-wrap;
}

#char-count3 {
    margin-top: 20px;
    font-size: small;
    margin-left: 14px;
    white-space: pre-wrap;
}

#char-count4 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: small;
    margin-left: 14px;
    white-space: pre-wrap;
}

#char-count5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: small;
    margin-left: 14px;
    white-space: pre-wrap;
}

#char-count6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: small;
    margin-left: 14px;
    white-space: pre-wrap;
}

#char-count7 {
    margin-top: 20px;
    font-size: small;
    margin-left: 14px;
    white-space: pre-wrap;
}

#char-count8 {
    margin-top: 20px;
    font-size: small;
    margin-left: 14px;
    white-space: pre-wrap;
}

#myTabs h2 {
    font-size: 14px !important;
    color: #333;
    text-align: center;
}

h2 {
    font-size: 18px !important;
    color: #333;
    text-align: center;
}

.pricing-card h2 {
    font-size: 45px !important;
    text-align: center;
}

p {
    text-align: center;
}

label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

select {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ddd;
    margin-bottom: 0px;
    border-radius: 5px;
}


button {
    display: inline-block;
    padding: 0.2em 0em;
    margin-top: 0px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
    font-size: 0.5em;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 500;
    color: #645D4B;
    background-color: #fff;
    border: 0px solid #000;
    border-radius: 0px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
    /*transition: all 0.3s ease 0s;*/
    cursor: pointer;
    outline: none;
    vertical-align: -webkit-baseline-middle;
}

button:hover {
    /*background-color: #a5e6d9;*/
    background-color: #F6F2E9;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    border: 0px solid black;
    /*color: #000;*/
    /*transform: translateY(-7px);*/
}

/*button:active {
            transform: translateY(-1px);
        }*/

.language-selector {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

#exchangeButton {
    position: relative;
    padding: 0px;
    border: 0px solid black;
    cursor: pointer;
    margin-top: 0px !important;
    margin-left: 0px !important;
    width: 110px;
    height: 32px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    overflow: hidden;
    background-color: transparent;
    text-align: center;
    display: flex;
    align-content: space-around;
    justify-content: space-around;
    align-items: center
}


#exchangeButton i {
    font-size: 16px;
}

#exchangeButton span {
    color: #000;
    font-size: 30px;
    text-align: center;
    /*transform: rotate(90deg);*/
}

.genderButton {
    height: 40px;
    padding-left: 4px;
    padding-right: 4px;
    font-weight: normal;
    border-top-left-radius: 14px;
    background-color: transparent !important;
}

.genderButton:hover {
    background-color: #FFFFFF;
    font-weight: bold;
}

.selectedGender {
    font-weight: bold;
    border-bottom: 2px solid #645D4B !important;
    /* Change the color and thickness as needed */
}

.toneButton {
    height: 40px;
    padding-left: 4px;
    padding-right: 4px;
    font-weight: normal;
    border-top-left-radius: 14px;
    background-color: transparent !important;
}

.toneButton:hover {
    background-color: #FFFFFF;
    font-weight: bold;
}

.selectedTone {
    font-weight: bold;
    border-bottom: 2px solid #645D4B !important;
    /* Change the color and thickness as needed */
}

.selectedFormat {
    font-weight: bold !important;
    border-bottom: 2px solid #645D4B !important;
    /* Change the color and thickness as needed */
}

.selectedSpeed {
    font-weight: bold !important;
    border-bottom: 2px solid #645D4B !important;
    /* Change the color and thickness as needed */
}

.selectedVolume {
    font-weight: bold !important;
    border-bottom: 2px solid #645D4B !important;
    /* Change the color and thickness as needed */
}

.radioSampleMultiButton {
    height: 39px;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: normal;
    border-top-right-radius: 14px;
}

.selectionTypeRadioContainer {
    float: right;
    text-align: center;
    flex: auto;
}

.tooltip-icon {
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 14px;
    color: #645D4B;
}

.tooltip-icon-multi {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 14px;
    color: #645D4B;
}

.bottomInput {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#FreeMGif {
    border-radius: 7%;
    /* Makes the image fully round */
    overflow: hidden;
    /* Ensures the image doesn't overflow the rounded corners */
}

.drop-area {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.drop-area.dragover {
    background-color: #f0f0f0;
}


#tooltipGen {
    margin-right: 20px;
    position: absolute;
    right: 10px;
}

#infoAudio {
    margin-top: 10px !important;
}

#addPause {
    margin-top: 5px !important;
}

.wStyle-item {
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 16px;
    cursor: pointer;
}

.wStyle-item:hover {
    background-color: #ddd;
}

.wStyle-item.selected {
    background-color: #645D4B;
    color: white;
    font-weight: bold;
}

.dropdown-button-wStyle {
    background-color: white;
    color: black;
    padding: 10px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    border: 1px solid #ccc;
}

/* Dropdown Button */
.dropdown-button-wStyle:hover {
    color: black;
    background-color: #ddd;
    border: 1px solid #ccc;
}

.dropdown-container-wStyle {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-content-wStyle {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    max-height: 315px;
    /* Set max height for scroll */
    overflow-y: auto;
    /* Enable vertical scroll */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    max-height: 315px;
    /* Set max height for scroll */
    overflow-y: auto;
    /* Enable vertical scroll */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

#writingStyle {
    margin-bottom: 15px;
}

/* Assurez-vous que vos styles personnalisés prennent le dessus */
div.tooltip.show .tooltip-inner {
    background-color: #645D4B !important;
    /* Couleur de fond marron */
    color: #fff !important;
    /* Texte blanc */
    min-width: 200px !important;
    /* Largeur minimale */
}

/* Styles pour la flèche */
div.tooltip.show.bs-tooltip-top .arrow::before,
div.tooltip.show.bs-tooltip-auto[x-placement^="top"] .arrow::before {
    border-top-color: #645D4B !important;
}


.genderRadioContainer {
    flex: auto;
    text-align: center;
}

.toneRadioContainer {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.formatRadioContainer {
    float: right;
    text-align: center;
    flex: auto;
    margin-left: 10px;
    margin-right: 10px;
}

.formatButton {
    height: 40px;
    padding-left: 4px;
    padding-right: 4px;
    font-weight: normal;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.speedRadioContainer {
    text-align: center;
    flex: auto;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
}

.speedButton {
    height: 40px;
    padding-left: 4px;
    padding-right: 4px;
    font-weight: normal;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.volumeRadioContainer {
    float: left;
    text-align: center;
    flex: auto;
    margin-left: 10px;
    margin-right: 10px;
}

.volumeButton {
    height: 40px;
    padding-left: 4px;
    padding-right: 4px;
    font-weight: normal;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.optionAudio {
    display: flex !important;
    flex-flow: wrap;
}

.lang-voice-wrapper {
    flex-wrap: wrap;
}

.spaceBetweenFlexBox {
    justify-content: space-between;
}

.new-label {
    background-color: #645D4B;
    border: 2px solid #645D4B;
    border-radius: 24px;
    /* Optional: for rounded corners */
    color: white;
    margin-left: 5px;
    /* Space between the emotion text and the PRO label */
    padding: 0px 3px;
    /* Padding inside the label */
    font-size: 0.8em;
    /* Adjust font size to fit your design */
    margin-top: -5px;
    position: absolute;
    top: -8px;
    right: -10px;
}

.PRO-label-multi {
    background-color: #645D4B;
    border: 2px solid #645D4B;
    float: right;
    border-radius: 24px;
    /* Optional: for rounded corners */
    color: white;
    margin-left: 5px;
    /* Space between the emotion text and the PRO label */
    padding: 0px 3px;
    /* Padding inside the label */
    font-size: 0.6em;
    /* Adjust font size to fit your design */
    margin-top: -5px;
    position: absolute;
}

.PRO-label-multi-summ {
    background-color: #645D4B;
    border: 2px solid #645D4B;
    float: right;
    border-radius: 24px;
    /* Optional: for rounded corners */
    color: white;
    margin-left: 1px;
    /* Space between the emotion text and the PRO label */
    padding: 0px 3px;
    /* Padding inside the label */
    font-size: 0.6em;
    /* Adjust font size to fit your design */
    margin-top: -5px;
    position: absolute;
}

.labelPro {
    background-color: #645D4B;
    border: 0.5px solid #645D4B;
    float: right;
    border-radius: 24px;
    /* Optional: for rounded corners */
    color: white;
    margin-left: 1px;
    /* Space between the emotion text and the PRO label */
    padding: 0px 3px;
    /* Padding inside the label */
    font-size: 0.6em;
    /* Adjust font size to fit your design */
    margin-top: -5px;
    position: absolute;
}

.radioSampleMultiButton:hover {
    background-color: #FFFFFF;
    font-weight: bold;
}

.selectedSampleMulti {
    font-weight: bold;
    border-bottom: 2px solid #645D4B !important;
    /* Change the color and thickness as needed */
}

.lengthButton {
    min-height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: normal;
}

.lengthButton:hover {
    background-color: #FFFFFF;
    font-weight: bold;
}

.selectedLength {
    font-weight: bold;
    border-bottom: 2px solid #645D4B !important;
    /* Change the color and thickness as needed */
}

.icon-cartesbancaires-svg {
    position: relative;
    right: 0px;
    top: 0%;
    transform: none;
    pointer-events: none;
    height: 60px;
    width: 60px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.border-left {
    border-left: 1px solid #645D4B;
    padding-bottom: 40px;
    padding-top: 40px;
    margin-bottom: 0px;
    margin-top: 40px;
}

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

.text-right {
    color: #645D4B;
}

.row-cartebancaires {
    display: flex;
    justify-content: space-evenly;
    width: 90%;
}

.disabledEmotion {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.select2-results__option--highlighted {
    color: #000 !important;
    /* Change text color */
    background-color: #ccc !important;
    /* Change background color */
}

.select2-container .select2-selection--single {
    height: auto;
    /* Adjust height as necessary */
}

.select2-dropdown {
    max-height: none !important;
    overflow-y: hidden !important;
}

.select2-results__option {
    padding: 4px 8px;
    /* Adjust padding to reduce height */
    line-height: 1;
    /* Adjust line height if necessary */
}

.select2-results .select2-results__options {
    max-height: none !important;
    overflow-y: hidden !important;
}

.select2-container--open .select2-dropdown--above {
    border: 1px solid #aaa !important;
    border-radius: 4px !important;
}

.select2-container--default .select2-selection--single {
    border: none;
    /* Removes border */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    display: none;
    /* Hides the arrow */
}

.PRO-label {
    background-color: #645D4B;
    border: 2px solid #645D4B;
    float: right;
    border-radius: 24px;
    /* Optional: for rounded corners */
    color: white;
    margin-left: 0px;
    /* Space between the emotion text and the PRO label */
    padding: 0px 3px;
    /* Padding inside the label */
    font-size: 0.8em;
    /* Adjust font size to fit your design */
}

.STU-label {
    background-color: #35ba57;
    border: 2px solid #35ba57;
    float: right;
    border-radius: 24px;
    /* Optional: for rounded corners */
    color: white;
    margin-left: 0px;
    /* Space between the emotion text and the PRO label */
    padding: 0px 3px;
    /* Padding inside the label */
    font-size: 0.8em;
    /* Adjust font size to fit your design */
}

.emotionButton {
    height: 40px;
    padding-left: 4px;
    padding-right: 4px;
    font-weight: normal;
}

.emotionButton:hover {
    background-color: #FFFFFF;
    font-weight: bold;
}

.selectedEmotion {
    font-weight: bold;
    border-bottom: 2px solid #645D4B !important;
    /* Change the color and thickness as needed */
}

.selected {
    font-weight: bold;
    border-bottom: 2px solid #645D4B !important;
    color: #645D4B;
    /* Change the color and thickness as needed */
}

#logoSyl {
    width: 100%;
    min-width: 85px;
    height: auto;
    margin: auto;
    max-width: 215px;
}

#logoSylCra {
    width: 35%;
    height: auto;
    margin: auto;
    max-width: 150px;
    margin-left: 30px;
}

#output {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

.tab-content {
    margin-top: 0px;
    padding: 20px;
    /* Added padding to provide space inside the container */
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    min-height: 80vh;
}

.tab-content-little {
    margin-top: 0px;
    padding: 20px;
    /* Added padding to provide space inside the container */
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    justify-content: space-evenly !important;
}

.no-tab {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-content: center;
    align-items: center;
}


#phrase {
    color: #1e1e1e;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
    margin-bottom: 0px;
    font-family: Roboto, Helvetica;
    font-style: normal;
    font-weight: 700;
}

/*#phrase strong {
            font-size: 1.8em;
        }*/

/*#phrase p {
            font-size: 1.3em;
        }*/

.block-style {
    border-radius: 12px;
    border: 1px solid #949494;
    background: #FFFFFF;
    min-height: 400px;
    margin-bottom: 16px;
    max-width: 96% !important;
}

.output-block-style {
    border-radius: 12px;
    border: 1px solid #949494;
    background: #F8F6F2;
    min-height: 400px;
    margin-bottom: 10px;
}

.output-block-styleAudio {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    border: 1px solid #949494;
    background: #F8F6F2;
    min-height: 400px;
    margin-bottom: 10px;
}

.resultAudio {
    margin-top: auto;
}

#dropdownContainerAudio .dropdown {
    margin-bottom: 10px;
    /* Space between dropdowns */
}

#dropdownContainerAudio .btn-default {
    background-color: #ffffff;
    border: 1px solid #cccccc;
    color: #333333;
    text-align: left;
    width: 100%;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
}

#dropdownContainerAudio .dropdown-menu {
    width: 100%;
    /* Full width dropdowns */
    border-radius: 4px;
}

#dropdownContainerAudio .dropdown-item {
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

/* Add a hover effect for dropdown items */
#dropdownContainerAudio .dropdown-item:hover {
    background-color: #f8f8f8;
}

/* Style the audio player separately, if needed */
#dropdownContainerAudio audio {
    width: 100%;
    /* Full width audio player */
    margin-top: 15px;
    /* Space above the audio player */
}

#dropdownContainerAudio {
    display: flex;
    flex-direction: column;
}

#audioDropdown {
    order: -1;
    /* This will bring the voice dropdown to the top */
}

.output-block-style-second {
    border-radius: 12px;
    border: 1px solid #949494;
    background: rgba(251, 188, 5, 0.08);
    min-height: 400px;
    margin-bottom: 10px;
}

.output-block-style-third {
    border-radius: 12px;
    border: 1px solid #949494;
    background: rgba(74, 144, 226, 0.08);
    min-height: 400px;
    margin-bottom: 10px;
}

.block-style-double {
    border-radius: 12px;
    border: 1px solid #949494;
    background: #FFFFFF;
    min-height: 435px;
}

.output-block-style-double {
    border-radius: 12px;
    border: 1px solid #949494;
    background: #F8F6F2;
    min-height: 435px;
}

.output-block-style-double-second {
    border-radius: 12px;
    border: 1px solid #949494;
    background: rgba(251, 188, 5, 0.08);
    min-height: 435px;
}

.output-block-style-double-third {
    border-radius: 12px;
    border: 1px solid #949494;
    background: rgba(74, 144, 226, 0.08);
    min-height: 435px;
}

.copy-wrapper {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    /*margin-bottom: 10px;*/
}

#card2 .banner-2-months-free {
    position: absolute;
    top: 0;
    /* Placez le GIF en haut */
    right: 0;
    /* Placez le GIF à droite */
    width: 100%;
    /* Réduit la largeur à celle de son conteneur */
    max-width: 75px;
    /* Limite la largeur du GIF pour éviter qu'il ne devienne trop grand */
    height: auto;
    /* Conserve les proportions du GIF */
    padding: 0;
    margin: 0;
    /* Éviter les marges par défaut */
    box-shadow: none;
    /* Supprimer l'ombre si elle est encore appliquée */
    z-index: 2;
}

#card3 .banner-2-months-free {
    margin-top: 10px !important;
    position: absolute;
    top: 3px;
    /* Placez le GIF en haut */
    right: 3px;
    /* Placez le GIF à droite */
    width: 100%;
    /* Réduit la largeur à celle de son conteneur */
    max-width: 110px;
    /* Limite la largeur du GIF pour éviter qu'il ne devienne trop grand */
    height: auto;
    /* Conserve les proportions du GIF */
    padding: 0;
    margin: 0;
    /* Éviter les marges par défaut */
    box-shadow: none;
    /* Supprimer l'ombre si elle est encore appliquée */
    z-index: 2;
}

@media (min-width: 992px) and (max-width: 1344px) {

    /* Ajustez pour les écrans plus petits */
    #card2 .banner-2-months-free {
        max-width: 65px;
        /* Réduit la largeur maximale pour les petits écrans */
    }

    #card3 .banner-2-months-free {
        max-width: 65px;
        /* Réduit la largeur maximale pour les petits écrans */
    }

    .toggle-switch-container {
        margin-top: 77px;
    }
}

@media (max-width: 348px) {

    /* Ajustez pour les écrans plus petits */
    #card2 .banner-2-months-free {
        max-width: 65px;
        /* Réduit la largeur maximale pour les petits écrans */
    }

    #card3 .banner-2-months-free {
        max-width: 60px;
        /* Réduit la largeur maximale pour les petits écrans */
    }
}

@media (max-width: 326px) {

    /* Ajustez pour les très petits écrans */
    #card2 .banner-2-months-free {
        max-width: 54px;
        /* Réduit davantage pour les très petits écrans */
    }

    #card3 .banner-2-months-free {
        max-width: 54px;
        /* Réduit davantage pour les très petits écrans */
    }
}

@media (max-width: 308px) {

    /* Ajustez pour les très petits écrans */
    #card2 .banner-2-months-free {
        max-width: 54px;
        /* Réduit davantage pour les très petits écrans */
    }

    #card3 .banner-2-months-free {
        max-width: 54px;
        /* Réduit davantage pour les très petits écrans */
    }

    .toggle-switch-container {
        margin-top: 40px;
    }
}

#card2 .banner-2-months-free img {
    max-width: 100%;
    /* Assurer que le GIF ne dépasse pas la largeur de son conteneur */
    height: auto;
    /* Garder les proportions du GIF */
}

#card3 .banner-2-months-free img {
    max-width: 100%;
    /* Assurer que le GIF ne dépasse pas la largeur de son conteneur */
    height: auto;
    /* Garder les proportions du GIF */
}

#cpBut {
    margin-bottom: 10px !important;
    background-color: transparent;
    border-radius: 15px;
}

#cpBut1 {
    background-color: transparent;
    border-radius: 15px;
}

#cpBut:hover {
    background-color: #e6e6e6;
}

#cpBut1:hover {
    background-color: #e6e6e6;
}

.share-button-kakao>img,
.share-button-wechat>img {
    height: 20px !important;
    width: 20px !important;
}

.share-button-facebook>i,
.share-button-twitter>i,
.share-button-linkedin>i,
.share-button-line>i {
    font-size: 20px !important;
}

.share-button-kakao,
.share-button-wechat,
.share-button-facebook,
.share-button-twitter,
.share-button-linkedin,
.share-button-line {
    height: 65px !important;
    width: 70px !important;
}

.login-section button {
    border-radius: 14px;
}

#titleLogin {
    display: flex;
    white-space: pre-line;
    flex-direction: column;
    align-items: center;
}

/*.login-container {
        width: 360px;
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }*/

#closDivBut {
    border: 0px;
}

.modal-dialog.expanded {
    max-width: 85%;
    width: 85%;
    max-height: 85%;
    height: 85%;
}

.modal-content {
    height: 100%;
    /*border-radius: 2rem !important;*/
}

.modal2 {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.7);
    /* Black w/ opacity */
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Modal Content */
.modal-content2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    /* You can adjust as needed */
    max-height: 80%;
    /* You can adjust as needed */
    height: inherit;
    width: inherit;
}

/* FAQ Section */
.faq-section {
    width: 80%;
    margin: 40px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

/* Individual FAQ Item */
.faq-item {
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 1px solid #e4e4e4;
    /* Light grey line between Q&A pairs for separation */
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}


#talk-faq {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    display: flex;
    justify-content: center;
}

/* For mobile devices, remove justification and switch to left alignment */
@media (max-width: 768px) {
    .faq-item p {
        text-align: left;
        /* Align text to the left on mobile */
    }
}

/* You might want to add some responsive rules or additional styles to further match your site's aesthetics. */


#userModal .modal-dialog {
    border: 0px solid #ff0000;
}

.fade-transition {
    transition: all 1s ease;
}

/*.form-control {
        margin-bottom: 16px;
    }*/

.form-control label {
    display: block;
    margin-bottom: 8px;
}

.form-control input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.copy-tooltip {
    visibility: hidden;
    background-color: #645D4B;
    width: 72px;
    color: #fffcfc;
    text-align: center;
    border-radius: 24px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    top: 35%;
    left: 55%;
    transform: translate(-50%, -100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-tooltip.show {
    visibility: visible;
    opacity: 1;
}

.languageContainer {
    text-align: center;
}

.container-fluid {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

.titlePriceAudio {
    margin-bottom: 30px;
    font-size: 30px !important;
}

.navbar {
    margin-bottom: 24px;
    border-bottom: 1px solid #DBDBDB !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    height: 60px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.navbar-brand {
    flex: 1;
    max-width: calc(100% - 50px);
    /* Adjust the value 50px based on your `navbar-toggler` width */
}

.navbar-toggler {
    order: 2;
    /* Ensures it's always on the right */
    border: 0px solid transparent !important;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1) !important;
}

.navbar-toggler:hover {
    background-color: #FFFFFF !important;
}

.navbar-toggler:focus {
    border: 0px solid transparent !important;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1) !important;
}

.butOut {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Distributes items evenly */
    /*margin-top: 10px;*/
}

.butTop {
    display: block;
    justify-content: center;
    text-align: center;
    /* Distributes items evenly */
}

.butTop button {
    flex: 1;
    /* This will make the buttons take up equal space */
    text-align: left;
    border: 0px solid black;
    /* This will center the text inside the buttons */
    width: 100%;
    /*width: 280px;*/
    height: 30px;
    /*margin-bottom: 5px;
  border-radius: 45px;
  padding-top: 10px;
  padding-bottom: 10px;*/
}

.butOut button {
    flex: 1;
    /* This will make the buttons take up equal space */
    text-align: center;
    border: 1px solid black;
    /* This will center the text inside the buttons */
    margin: 5px;
    margin-bottom: 10px;
}

/*.butOut > .copy {
        margin-bottom: 15px;
    }*/

#form {
    background-color: #ffffff;
}

/* Multi-Translation form styles */
#multiTrans .row {
    margin-bottom: 20px;
}

.parallax-container {
    position: relative;
    overflow: hidden;
    background-color: #FFFFFF;
}

.input-top-bloc-audioscribe {
    min-height: 40px;
    border-bottom: 0.5px solid #949494;
    display: flex;
    align-items: stretch;
    flex-direction: column;
}

#voiceSelect {
    border: 0px;
}

.custom-select {
    position: relative;
    display: inline-block;
    width: 200px;
    /* Adjust the width as needed */
    padding-top: 0px;
    padding-left: 0px;
    padding: 0px;
    background: none;
    border: 0px solid #BF9E5F;
    margin-top: 1px;
    font-weight: 500;
    color: #645D4B;
}

.selected-item {
    background-color: #fff;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    border: 1px solid #BF9E5F;
    cursor: pointer;
    text-align: left;
    line-height: 2.1;
    border-radius: 12px;
}

.dropdown-list {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 2;
    padding-left: 0px;
}

.voice-item {
    min-height: 35px;
    padding-left: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voice-item-label {
    width: 100%;
    height: 100%;
    text-align: left;
    cursor: pointer;
}

.voice-item:last-child {
    border-bottom: none;
}

.voice-item button {
    cursor: pointer;
    background-color: #BF9E5F;
    border: 0px solid #ccc;
    padding: 2px 5px;
    color: #fff;
    height: 35px;
    float: right;
}

.insert-button {
    background-color: #BF9E5F;
    border: 0px solid #ccc;
    padding: 2px 5px;
    cursor: pointer;
    line-height: 1.8;
    height: 34px;
    float: right;
    color: #fff;
    border-top-right-radius: 9px;
    border-bottom-right-radius: 9px;
}

.insert-button:hover {
    background-color: #BF9E5F;
    border: 0px solid #ccc;
}

#input-text7 {
    height: auto;
    min-height: 254px;
}

.input-top-bloc {
    min-height: 40px;
    border-bottom: 0.5px solid #949494;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.output-top-bloc {
    background-color: #FFFFFF;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    min-height: 40px;
}

.double-input-top-bloc {
    min-height: 80px;
    border-bottom: 0.5px solid #949494;
}

.double-output-top-bloc {
    background-color: #FFFFFF;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    min-height: 80px;
}

.copy-wrapper button {
    height: 25px;
    width: 25px;
    border: none;
    background-color: transparent;
}

.prevNext {
    width: 32px;
}

#switchToP {
    margin-left: 15px;
}

.right-align-elem {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shareContainer button:hover {
    background-color: transparent;
}

.copy-wrapper button:hover {
    background-color: transparent;
}

.copy-wrapper button i {
    height: 25px;
    width: 25px;
}


/* Hide the multiTrans content by default */
.hide {
    display: none;
}

/* Toggle Switch Style */
.switch input {
    display: none;
}

.switch {
    width: 40px;
    height: 20px;
    position: relative;
    margin-right: 10px;
}

.d-block {
    display: block !important;
    text-align: center;
}

.newmarginswitchpricing {
    margin-bottom: 0px !important;
    margin-left: 10px !important;
}

.switch:hover {
    background-color: #f6f2e9;
}

#preGenAudio {
    background-color: #f2f2f2;
    /* Light grey background */
    border: 1px solid #ccc;
    /* Grey border */
    border-radius: 5px;
    /* Rounded corners */
    padding: 15px;
    /* Padding inside the container */
    margin-top: 20px;
    /* Space above the container */
    text-align: center;
    /* Center the content */
}

#preGenAudio audio {
    width: 100%;
    /* Make the audio player stretch to container width */
    margin-bottom: 10px;
    /* Space below the audio player */
}

.download-audio-button {
    display: inline-block;
    /* Display as block with inline properties */
    background-color: #404040;
    color: white;
    /* White text */
    padding: 10px 20px;
    /* Padding inside the button */
    text-decoration: none !important;
    border-radius: 5px;
    /* Rounded corners */
    transition: background-color 0.3s;
    /* Smooth background color change on hover */
    font-family: 'Roboto', Helvetica, sans-serif;
    font-weight: 600;
}

.download-audio-button:hover {
    background-color: #645D4B;
    color: white;
}

.audio-title-left {
    font-family: inherit;
    font-size: inherit;
    line-height: 40px;
    letter-spacing: 0px;
    font-weight: 500;
    color: #645D4B;
    height: 40px;
    vertical-align: middle;
}

.audio-pause-label {
    font-family: inherit;
    font-size: inherit;
    line-height: 40px;
    letter-spacing: 0px;
    font-weight: 500;
    color: #645D4B;
    height: 40px;
    vertical-align: middle;
}


/* General styles to ensure consistency */
#pauseSlider {
    -webkit-appearance: none;
    appearance: none;
    margin: 10px 5px;
    background: linear-gradient(to right, #BF9E5F 0%, #BF9E5F 0%, #cccccc 0%, #cccccc 100%);
    border-radius: 5px;
    height: 8px;
    outline: none;
    position: relative;
    /* Ensure the slider is positioned correctly */
}

/* Styles for WebKit browsers (Chrome, Safari) */
#pauseSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #BF9E5F;
    /* Color for the thumb */
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #ffffff;
    /* White border */
    position: relative;
    z-index: 1;
    margin-top: -6px;
    /* Adjust margin to center the thumb vertically */
}

#pauseSlider::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    border-radius: 5px;
    background: transparent;
    /* Use JavaScript to set the background */
}

/* Styles for Mozilla Firefox */
#pauseSlider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #BF9E5F;
    /* Color for the thumb */
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #ffffff;
    /* White border */
    position: relative;
    z-index: 1;
    margin-top: -6px;
    /* Adjust margin to center the thumb vertically */
}

#pauseSlider::-moz-range-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    border-radius: 5px;
    background: transparent;
    /* Use JavaScript to set the background */
}

/* Styles for Internet Explorer */
#pauseSlider::-ms-thumb {
    width: 20px;
    height: 20px;
    background: #BF9E5F;
    /* Color for the thumb */
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid #ffffff;
    /* White border */
    position: relative;
    z-index: 1;
    margin-top: -6px;
    /* Adjust margin to center the thumb vertically */
}

#pauseSlider::-ms-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    border-radius: 5px;
    background: transparent;
    /* Use JavaScript to set the background */
    border-color: transparent;
    color: transparent;
}

#pauseSlider::-ms-fill-lower {
    background: #BF9E5F;
    border-radius: 5px;
}

#pauseSlider::-ms-fill-upper {
    background: #cccccc;
    border-radius: 5px;
}

#pauseSlider:focus {
    outline: none;
}

#sliderValueDisplay {
    font-weight: 500;
    color: #645D4B;
}

.slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 30px;
    box-shadow: 0 0 0 2px #d3d3d3, 0 0 4px #d3d3d3;
    cursor: pointer;
    border: 4px solid transparent;
    overflow: hidden;
    transition: 0.2s;
    text-align: initial;
}

.slider:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #d3d3d3;
    border-radius: 30px;
    transform: translateX(-20px);
    /*translateX(-(w-h))*/
    transition: 0.2s;
}

input:checked+.slider:before {
    transform: translateX(20px);
    /*translateX(w-h)*/
    background-color: #645D4B;
}

input:checked+.slider {
    box-shadow: 0 0 0 2px #645D4B, 0 0 8px #645D4B;
}

.switch200 .slider:before {
    width: 200%;
    transform: translateX(-82px);
    /*translateX(-(w-h))*/
}

.switch200 input:checked+.slider:before {
    background-color: red;
}

.switch200 input:checked+.slider {
    box-shadow: 0 0 0 2px red, 0 0 8px red;
}

#multiTrans .col {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

/*#multiTrans select,
    #multiTrans textarea {
        margin-bottom: 10px;
    }*/

#multiTrans textarea {
    flex-grow: 1;
    resize: vertical;
    /* Allow vertical resize only */
    overflow: hidden;
    min-height: 110px !important;
}

#multiTrans .block-style {
    min-height: 190px !important;
}

#MultiOutput .output-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
}

#MultiOutput .output-container {
    min-height: 240px !important;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 5px #000;
    text-align: center;
    /* Optional: add a border to each output container */
}

#MultiOutput .btnInputLanguage {
    border-top-right-radius: 12px !important;
}

#MultiOutput .output-container .language-bar,
#MultiOutput .output-container .copy-btn {
    width: 100%;
    text-align: center;
}

#MultiOutput .output-container textarea {
    flex-grow: 1;
    text-align: center;
}

#multiRewrite .row {
    margin-bottom: 20px;
}

#rewriter .row {
    margin-bottom: 20px;
}

#multiRewrite .col {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

/*#multiRewrite select,
    #multiRewrite textarea {
        margin-bottom: 10px;
    }*/

#multiRewrite textarea {
    flex-grow: 1;
    resize: vertical;
    /* Allow vertical resize only */
    overflow: hidden;
    min-height: 110px !important;
}

#multiRewrite .block-style {
    min-height: 190px !important;
}

#MultiOutputRew .output-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
}

#MultiOutputRew .output-container {
    min-height: 204px !important;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 5px #000;
    text-align: center;
    /* Optional: add a border to each output container */
}

#MultiOutputRew .output-container .language-bar,
#MultiOutputRew .output-container .copy-btn {
    width: 100%;
    text-align: center;
}

#MultiOutputRew .output-container textarea {
    flex-grow: 1;
    text-align: center;
    overflow: hidden;
}

.placeholder {
    color: #000000;
    /* Couleur du texte de placeholder */
    /*position: absolute;*/
    /* Pour le positionner correctement */
    pointer-events: none;
    /* Ne pas interférer avec les clics */
    user-select: none;
    /* Ne pas permettre la sélection du texte */
    background-color: transparent !important;
}

/* Assurez-vous que votre div a une position relative pour que le placeholder soit bien positionné */
.output-multi,
.output-rewrite,
.output-email .output-writer {
    position: relative;
    /* Nécessaire pour que le placeholder soit positionné correctement */
    min-height: 40px;
    /* Ajustez la hauteur minimale pour le texte */
    padding: 10px;
    /* Ajustez le padding si nécessaire */
    border-radius: 4px;
    /* Arrondir les coins optionnel */
}

.show {
    display: block;
}

.flag {
    width: 30px;
    margin-top: -6px;
    margin-right: 0px;
}

.frame-loader {
    display: none;
    position: fixed;
    z-index: 2;
    top: 250px;
    left: 50%;
}

#mode-icon {
    width: 40px;
    height: 40px;
}

.theme-switch {
    width: 50px !important;
    left: 400px !important;
    position: relative;
    text-align: center;
    /* adjust this value to your need */
}

.shareContainer {
    position: relative;
    /* This allows the modal to be positioned relative to the share button */
}

.shareButton i {
    display: inline-block;
    height: 25px;
    width: 25px;
}

.shareButton {
    /* ... styles ... */
    position: relative;
    bottom: 0;
    right: 0;
    background-color: transparent;
    margin-right: 10px;
}

#MultiOutputRew .output-container textarea {
    flex-grow: 1;
    text-align: center;
    overflow: hidden;
}

#MultiOutputEmail .output-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
}

#MultiOutputEmail .output-container {
    min-height: 204px !important;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 5px #000;
    text-align: center;
    /* Optional: add a border to each output container */
}

#MultiOutputEmail .output-container .language-bar,
#MultiOutputEmail .output-container .copy-btn {
    width: 100%;
    text-align: center;
}

#MultiOutputEmail .output-container textarea {
    flex-grow: 1;
    text-align: center;
    overflow: hidden;
}

#MultiOutputWriter .output-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: hidden;
}

#MultiOutputWriter .output-container {
    min-height: 204px !important;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 5px #000;
    text-align: center;
    /* Optional: add a border to each output container */
}

#MultiOutputWriter .output-container .language-bar,
#MultiOutputWriter .output-container .copy-btn {
    width: 100%;
    text-align: center;
}

#MultiOutputWriter .output-container textarea {
    flex-grow: 1;
    text-align: center;
    overflow: hidden;
}

.show {
    display: block;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offcanvas-body-history {
    display: flex;
    flex-direction: row;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.delete-button {
    border: none;
    background: transparent;
    padding: 0;
    margin-left: 10px;
    cursor: pointer;
    float: right;
}

#trash-history {
    width: 25px;
    height: 25px;
}

.invited-user-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    /* Spacing between items */
}

.invited-user-item span {
    margin-right: 25px;
    /* Spacing between email and trash icon */
}

.butTop {
    flex-grow: 1;
    /* This will make butTop take up all available space, pushing butBot to the bottom */
}

.butBot {
    flex-shrink: 0;
    /* This prevents butBot from shrinking if there's a lot of content in butTop */
    width: auto;
}

.butMenuBot {
    width: -webkit-fill-available;
    height: 30px;
    border-radius: 10% !important;
    border-left: transparent;
    border-right: transparent;
    /*margin-top: 5px;*/
    display: inline-block;
    text-align: left;
    padding: 5px 5px;
    /*margin-bottom: 5px;*/
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #645D4B;
    background-color: #fff;
    border-radius: 45px !important;
    /*box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

.butMenuBot:hover {
    border: 0px solid #000;
}

.butMenuBot:disabled {
    width: -webkit-fill-available;
    height: 30px;
    border-radius: 10% !important;
    border-left: transparent;
    border-right: transparent;
    /*margin-top: 5px;*/
    display: inline-block;
    text-align: left;
    padding: 5px 5px;
    /*margin-bottom: 5px;*/
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #645D4B;
    background-color: #fff;
    border-radius: 45px !important;
    /*box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease 0s;
    outline: none;
    text-decoration: none;
}

#languageButton1 {
    width: 50px !important;
    margin-left: 10px;
    margin-right: 10px;
    padding: 0px;
    float: left;
    background-color: transparent !important;
}

.progress-bar-container {
    width: 100%;
    background-color: #d3d3d3;
    border-radius: 24px;
    height: 25px;
    position: relative;
    overflow: hidden;
}

.progress-bar-container-audio {
    width: 100%;
    background-color: #d3d3d3;
    border-radius: 24px;
    height: 25px;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    /* This will be dynamically updated using JavaScript */
    background-color: #BF9E5F;
    /* This is a green color, change as per your preference */
    transition: width 0.5s;
    /* Smooth transition for width changes */
    z-index: 1;
    /* Setting a lower z-index than the label */
}

.progress-bar-fill-audio {
    height: 100%;
    width: 0%;
    /* This will be dynamically updated using JavaScript */
    background-color: #645D4B;
    /* This is a green color, change as per your preference */
    transition: width 0.5s;
    /* Smooth transition for width changes */
    z-index: 1;
    /* Setting a lower z-index than the label */
}

.progress-bar-label {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 20px;
    /* Matches the height of the progress bar */
    color: white;
    /* Setting a higher z-index to ensure it displays on top */
}



.pricing-container {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-evenly;
    margin-bottom: 5%;
}

.pricing-card {
    width: 95%;
    max-width: 325px;
    min-height: 400px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    transition: transform 0.3s;
}

.cardAbo {
    width: 100%;
    margin-top: 20px;
    /* Optional: To give some space between the cards above and these sections */
}

.cardAbo>div {
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 20px;
    /* This can be adjusted based on your needs */
    margin-bottom: 20px;
    /* Space between each pricing section */
    transition: box-shadow 0.3s;
    /* For hover effect */
}

.cardAbo>div:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

#speOff {
    width: auto;
    height: auto;
    background-color: transparent;
    display: flex;
    flex-direction: unset;
    justify-content: space-around;
    align-items: center;
    transition: transform 0.3s;
    /*margin: 100px;*/
}

.bundleDiv {
    font-family: "Arial-Rounded";
    margin-top: 0px !important;
    padding: 20px !important;
    background-color: #FFFAE0 !important;
    border-radius: 24px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 10px !important;
}

#bundle {
    width: auto;
    height: auto;
    background-color: transparent;
    display: flex;
    flex-direction: unset;
    justify-content: space-around;
    align-items: center;
    transition: transform 0.3s;
    margin: 100px;
}

#subTitle {
    display: flex;
    margin-left: 30px;
    margin-top: 30px;
    font-family: "Arial-Rounded";
}

#priceTitle {
    font-family: "Arial-Rounded";
    text-align: left;
}

.pricingTitle {
    display: flex;
}

.list-group-item {
    font-size: 14px;
}

.bsb-pricing-3 .bsb-pricing-popular {
    margin-top: 0rem !important;
}


.big-badge {
    --bs-badge-font-size: 1.1em !important;
    top: -1px !important;
}

.priceNumber {
    font-size: 2rem !important;
}

#priceAG {
    font-size: 2rem;
}

#priceSum {
    display: block;
    /* Makes the span take up the full width like a div */
    margin-top: 10px;
    /* Adds space above the span */
    padding: 8px;
    /* Adds padding inside the span */
    background-color: #f8f9fa;
    /* Light background color for the span */
    border: 1px solid #ddd;
    /* Border to make it stand out */
    border-radius: 5px;
    /* Rounded corners */
    color: #333;
    /* Dark text color for readability */
    font-size: 1em;
    /* Font size */
    text-align: center;
    /* Center the text inside the span */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    margin-bottom: 10px;
}

#AudioPrice {
    display: flex !important;
    justify-content: center !important;
}

#audioPricing {
    display: flex;
    flex-direction: column;
}

#incrementButton,
#decrementButton {
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 5px;
}

#incrementButton:hover,
#decrementButton:hover {
    background-color: #e0e0e0;
}


.pricePeriod {
    color: lightgrey;
    /*font-family: "Arial-Rounded";
  font-size: 10px;*/
}

.fixed-bottom-div {
    position: fixed !important;
    bottom: -25px !important;
    left: 0 !important;
    right: 0 !important;
    /*background-color: white !important;*/
    z-index: 1000 !important;
}

.priceBilled {
    color: lightgrey;
    /*font-family: "Arial-Rounded";
    font-size: 10px;*/
}

.priceCanc {
    color: lightgrey;
}

.pricePref {
    color: black;
}

#card2 #priceTitle {
    margin-top: 10px !important;
}

#card3 #priceTitle {
    margin-top: 10px !important;
}

#prem {
    border: 1px solid #32bdcd;
}

#start {
    border: 1px solid #c0c0c0;
}

#busi {
    border: 1px solid #ffd700;
}

#card1 {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid grey;
    box-shadow: 0px 0px 10px 3px grey;
}

#card2 {
    margin-top: 20px;
    margin-bottom: 40px;
    border: 1px solid #35ba57;
    box-shadow: 0px 0px 10px 3px #35ba57;
}

#card3 {
    margin-bottom: 20px;
    border: 1px solid black !important;
    box-shadow: 0px 0px 10px 3px black !important;
}

#card4 {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 1px solid #3f76ba;
    box-shadow: 0px 0px 10px 3px #3f76ba;
}

#card5 {
    border: 1px solid #83ebfd;
    box-shadow: 0px 0px 10px 3px #83ebfd;
    margin-top: 20px;
    margin-bottom: 40px;
    background-color: white !important;
    min-height: 85%;
}

#card6 {
    border: 1px solid #F4B183 !important;
    box-shadow: 0px 0px 10px 3px #F4B183 !important;
}

#card7 {
    border: 1px solid #40a0f1;
    box-shadow: 0px 0px 10px 3px #40a0f1;
    background-color: white !important;
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 85%;
}

#card8 {
    border: 1px solid #f14040;
    box-shadow: 0px 0px 10px 3px #f14040;
    margin-top: 20px;
    margin-bottom: 20px;
}

.imgCard {
    width: 90%;
    /* Image takes the full width of its parent (the card) */
    height: 100%;
    /* Image takes the full height of its parent (the card) */
    object-fit: contain;
    /* Image scales and crops to cover the element's content box without distorting its aspect ratio */
    display: block;
    /* Removes any unwanted margins */
}

.abo-card {
    /*margin-bottom: 30px;*/
    border-radius: 24px;
    border: 1px solid #645D4B;
    padding: 10px;
    background-color: #645D4B;
    color: #FFFFFF;
}

.abo-card:hover {
    background-color: #404040;
    color: #FFFFFF;
    border: 1px solid #645D4B;
}

.abo-card-bundle {
    /*margin-bottom: 30px;*/
    border-radius: 24px;
    border: 1px solid #645D4B;
    padding: 10px;
    background-color: #645D4B;
    color: #FFFFFF;
}

.abo-card-bundle:hover {
    background-color: #404040;
    color: #FFFFFF;
    border: 1px solid #645D4B;
}

.pricing-card,
.imgCard {
    border-radius: 24px;
    margin: 0;
    padding: 0;
}

/*.pricing-card:nth-child(even) {
            transform: translateY(-20px);
        }*/

.pricing-card:hover {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

#languagesButtons:hover {
    background-color: transparent !important;
}

#languagesButtons {
    background-color: transparent !important;
    width: 50px !important;
    margin-bottom: 5px;
    /*justify-items: center;
    justify-content: center;
    display: inline-flex;*/
}

.languageModal {
    /*text-align: center;
    justify-items: center;*/
    margin-left: 10px;
    width: 50px;
    top: 45px;
    position: absolute;
    /*right: 52px;*/
    z-index: 1046;
    padding-top: 15px;
    height: 240px;
    background-color: white !important;
    border-radius: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#buttonloglan {
    margin: 1%;
}

.changelang {
    margin-top: -9px;
    height: 30px;
    vertical-align: -webkit-baseline-middle !important;
}

.hidden {
    display: none !important;
}

.centerButtonBottom {
    text-align: -webkit-center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#centerButtonBottomid {
    margin-bottom: 30px;
    margin-top: -15px;
}

#centerButtonBottomidTra {
    margin-bottom: 30px;
}

#centerButtonBottomidRew {
    margin-bottom: 10px;
    margin-top: -15px;
}

#centerButtonBottomidMail {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 1.5rem;*/
    /*padding: 1rem;*/
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

#centerButtonBottomidProseIA {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

#centerButtonBottomidExtract {
    width: 100%;
    top: -55px;
    position: relative;
}

@media (max-width: 768px) {

    #centerButtonBottomidExtract {
        top: -20px;
    }
}

#centerButtonBottomidProse {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    justify-content: space-around;
    flex-wrap: wrap;
}

.faqalign {
    display: flex !important;
    justify-content: center !important;
}

.startFeat {
    width: 136px !important;
    height: 40px !important;
    font-family: 'Roboto', Helvetica, sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-align: center !important;
    background-color: #645D4B !important;
    color: #fffcfc !important;
    border-radius: 24px !important;
    box-shadow: 0px 4px 4px #00000040 !important;
    letter-spacing: 0 !important;
    line-height: normal !important;
    display: inline-block;
    /* Change from block to inline-block */
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 20px;
}

.startFeatMini {
    width: 130px;
    height: 30px;
    font-family: 'Roboto', Helvetica, sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    background-color: #BF9E5F;
    color: #fffcfc;
    border-radius: 24px;
    box-shadow: 0px 4px 4px #00000040;
    letter-spacing: 0;
    line-height: normal;
    display: inline-block;
    /* Change from block to inline-block */
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 5px;
}

.butcent {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-evenly !important;
}

.butManSub {
    width: -webkit-fill-available;
    height: 30px;
    border-radius: 10% !important;
    border-left: transparent;
    border-right: transparent;
    border: 1px solid black;
    /*margin-top: 5px;*/
    display: inline-block;
    text-align: center;
    padding: 5px 5px;
    /*margin-bottom: 5px;*/
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #645D4B;
    background-color: #fff;
    border-radius: 45px !important;
    /*box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);*/
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    text-decoration: none;
}

.butManSub:hover {
    border: 1px solid black;
}

#returnToListButton {
    display: inline-block !important;
    /* Override if they are set to block */
    width: auto !important;
    /* Override if they are set to 100% width */
    margin-right: auto !important;
    margin-top: 5px !important;
}

.success-message-bar {
    background-color: #28a745;
    /* Success color */
    color: white;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.error-message-bar {
    background-color: #dc3545;
    /* Error color */
    color: white;
    text-align: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

#returnToListButtonMulti {
    display: inline-block !important;
    /* Override if they are set to block */
    width: auto !important;
    /* Override if they are set to 100% width */
    margin-right: auto !important;
    margin-top: 5px !important;
}

.startFeatPrice {
    /*margin-bottom: 30px;*/
    border-radius: 24px;
    border: 1px solid #645D4B;
    padding: 10px;
    background-color: #645D4B;
    color: #FFFFFF;
}

.startFeatPrice:hover {
    background-color: #404040;
    color: #FFFFFF;
    border: 1px solid #645D4B;
}

.startFeat:hover {
    background-color: #404040;
}

.startFeat:disabled {
    padding: 0px !important;
    border: 0px solid black !important;
}

.stopButton {
    margin-top: 20px;
    width: 136px;
    height: 40px;
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid #000000;
    text-align: center;
    background-color: #FFFCFC;
    color: #1e1e1e;
    border-radius: 24px;
    box-shadow: 0px 4px 4px #00000040;
    letter-spacing: 0;
    line-height: normal;
}

.priceNoCB {
    text-align: center;
    color: lightgrey;
    margin-bottom: 24px;
    margin-top: -20px;
    font-size: small;
}

/*.stopButton:hover {
        background-color: #645D4B;
    }*/

.center-loader {
    position: absolute;
    width: 220px;
    height: 220px;
}

.spinner:before {
    transform: rotateX(60deg) rotateY(45deg) rotateZ(45deg);
    animation: 750ms rotateBefore infinite linear reverse;
}

.spinner:after {
    transform: rotateX(240deg) rotateY(45deg) rotateZ(45deg);
    animation: 750ms rotateAfter infinite linear;
}

.spinner:before,
.spinner:after {
    box-sizing: border-box;
    content: '';
    display: block;
    position: absolute;
    margin-top: -2.5em;
    margin-left: -2.5em;
    width: 5em;
    height: 5em;
    transform-style: preserve-3d;
    transform-origin: 50%;
    transform: rotateY(50%);
    perspective-origin: 50% 50%;
    perspective: 340px;
    background-size: 5em 5em;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjI2NnB4IiBoZWlnaHQ9IjI5N3B4IiB2aWV3Qm94PSIwIDAgMjY2IDI5NyIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4bWxuczpza2V0Y2g9Imh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaC9ucyI+CiAgICA8dGl0bGU+c3Bpbm5lcjwvdGl0bGU+CiAgICA8ZGVzY3JpcHRpb24+Q3JlYXRlZCB3aXRoIFNrZXRjaCAoaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoKTwvZGVzY3JpcHRpb24+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBza2V0Y2g6dHlwZT0iTVNQYWdlIj4KICAgICAgICA8cGF0aCBkPSJNMTcxLjUwNzgxMywzLjI1MDAwMDM4IEMyMjYuMjA4MTgzLDEyLjg1NzcxMTEgMjk3LjExMjcyMiw3MS40OTEyODIzIDI1MC44OTU1OTksMTA4LjQxMDE1NSBDMjE2LjU4MjAyNCwxMzUuODIwMzEgMTg2LjUyODQwNSw5Ny4wNjI0OTY0IDE1Ni44MDA3NzQsODUuNzczNDM0NiBDMTI3LjA3MzE0Myw3NC40ODQzNzIxIDc2Ljg4ODQ2MzIsODQuMjE2MTQ2MiA2MC4xMjg5MDY1LDEwOC40MTAxNTMgQy0xNS45ODA0Njg1LDIxOC4yODEyNDcgMTQ1LjI3NzM0NCwyOTYuNjY3OTY4IDE0NS4yNzczNDQsMjk2LjY2Nzk2OCBDMTQ1LjI3NzM0NCwyOTYuNjY3OTY4IC0yNS40NDkyMTg3LDI1Ny4yNDIxOTggMy4zOTg0Mzc1LDEwOC40MTAxNTUgQzE2LjMwNzA2NjEsNDEuODExNDE3NCA4NC43Mjc1ODI5LC0xMS45OTIyOTg1IDE3MS41MDc4MTMsMy4yNTAwMDAzOCBaIiBpZD0iUGF0aC0xIiBmaWxsPSIjMDAwMDAwIiBza2V0Y2g6dHlwZT0iTVNTaGFwZUdyb3VwIj48L3BhdGg+CiAgICA8L2c+Cjwvc3ZnPg==);
}

/* sitNSpin.less */
@keyframes rotateBefore {
    from {
        transform: rotateX(60deg) rotateY(45deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(60deg) rotateY(45deg) rotateZ(-360deg);
    }
}

@keyframes rotateAfter {
    from {
        transform: rotateX(240deg) rotateY(45deg) rotateZ(0deg);
    }

    to {
        transform: rotateX(240deg) rotateY(45deg) rotateZ(360deg);
    }
}


#exbut {
    justify-content: space-between;
}

.verticalalign {
    align-content: center !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center;
}

#labelLangDrop {
    padding-left: 14px;
    margin: 10px;
}

@media (max-width: 767px) {

    .border-left {
        border-left: 0px solid #645D4B !important;
        padding-bottom: 0px;
        padding-top: 40px;
        margin-bottom: 0px;
        margin-top: 0px;
    }

    .text-right {
        margin-top: 40px;
    }
}

/* Screen size from 0px to 320px */
@media (max-width: 320px) {

    .block-style-double {
        margin-bottom: 10px;
    }

    .butOut {
        flex-direction: column;
    }

    .shareModal {
        width: 220px;
        height: 270px;
        bottom: 10%;
        right: -2%;
    }

    .languageDropdown {
        margin-left: 0px;
    }

    .language-selector {
        justify-content: center;
        flex-direction: column !important;
        align-items: center !important;
    }

    .input-top-bloc {
        justify-content: center;
        flex-direction: column !important;
        align-items: center !important;
    }

    .butOut button {
        font-size: 12px;
        padding: 5px;
        margin: 2px;
        width: 100%;
    }

    .shareModal>button {
        font-size: 9px;
        width: 95%;
        margin: 5px;
    }

    .shareModal>button:hover {
        background-color: #84e0ce;
    }

    .price-container {
        position: relative;
    }

    .price-list {
        transition: opacity 0.5s, transform 0.5s;
        opacity: 1;
        transform: translateX(0);
    }

    .price-title {
        position: absolute;
        right: 0;
        top: 0;
        font-size: 24px;
        /* Adjust as needed */
        text-align: right;
    }

    .hidden {
        opacity: 0;
        transform: translateX(-100%);
    }


    body {
        margin: 3px !important;
        font-size: 0.4em;
        flex-direction: column;
        /* Stack content vertically */
        display: flex;
        /* To enable Flexbox behavior */
        justify-content: center;
        /* Vertical centering in a flex container */
        align-items: center;
        /* Horizontal centering in a flex container */
        background-color: #f6f2e9;
        /* Previous body styling */
    }

    /*.language-selector{
    flex-direction: column;
  }*/

    #exchangeButton {
        margin-top: 5px !important;
        width: 100%;
        /*height: 75px;*/
        margin-bottom: 5px;
    }

    #exchangeButton span {
        width: 100%;
        position: inherit;
    }

    /*.login-container {
            width: 215px;
        }*/

    #login-button {
        padding: 0px 0px;
        /* Example to match height with other buttons */
    }

    .butOut>.apple-login {
        padding: 12px 0px;
    }

    .container {
        margin-bottom: 20px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .dropdown-select.modal {
        width: 85% !important;
        height: 90% !important;
        left: 27px !important;
    }

    .custom-select2-dropdown {
        /*width: 100% !important;*/
        height: 90vh !important;
        /*left: -20px !important;*/
    }

    .pricing-container {
        flex-direction: column;
    }

    #speOff {
        flex-direction: column;
    }

    /*#card5 {
        }*/

    #card6 {
        margin-bottom: 20px;
    }

    #bundle {
        flex-direction: column;
    }

    #card7 {
        margin-bottom: 20px;
    }

    #card8 {
        margin-bottom: 30%;
    }

    .btnInputLanguage {
        border-top-right-radius: 12px !important;
    }

    .quantity-input-container {
        padding: 0px !important;
    }

    #numUsers {
        flex-direction: column;
    }

    .butManSub {
        letter-spacing: 1.5px !important;
        font-size: 12px;
    }

    #showShareFormButton {
        letter-spacing: 1.5px !important;
        font-size: 12px;
    }

    #shareAccountModal .modal-dialog {
        width: 95%;
        /* Adjust width of the modal */
        margin: 10px auto;
    }

    #invitedUsersTable {
        width: 100%;
        max-width: 300px;
        /* Adjust maximum width */
        overflow-x: auto;
        /* Enable horizontal scrolling */
    }

    #invitedUsersTable th {
        font-size: xx-small !important;
    }

    #invitedUsersTable td {
        font-size: xx-small;
    }

    .modal-dialog {
        font-size: 12px !important;
        /* Smaller font size for table content */
    }

    #continue-invitation-btn {
        margin-top: 40% !important;
    }

    #typeSumm {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopyMulti {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #dropdownContainerLenghts {
        width: inherit;
        justify-content: center;
    }

    #dropdownContainerEmotions8 {
        width: inherit;
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotionsProse {
        width: inherit;
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5,
    #dropdownContainerEmotions6,
    #dropdownContainerEmotions7 {
        width: 100%;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    .bottomInput .error-message {
        font-size: 10px;
    }

    .butPricing {
        font-size: xx-small;
    }

    #BNBanner {
        margin-top: -60px;
        min-width: 12em;
        max-width: 60em;
    }

    #BNBannerMenu {
        max-width: 15em;
    }
}

/* Screen size from 321px to 374px */
@media (min-width: 321px) and (max-width: 375px) {

    body {
        margin: 3px !important;
        font-size: 0.6em;
        flex-direction: column;
        /* Stack buttons vertically */
        justify-content: center;
        /* Horizontal centering in a flex container */
        align-items: center;
    }

    #continue-invitation-btn {
        margin-top: 25% !important;
    }

    .shareModal {
        width: 215px;
        height: 265px;
        right: 5%;
        bottom: 130%;
    }

    .languageDropdown {
        margin-left: 0px;
    }

    .language-selector {
        justify-content: center;
        flex-direction: column !important;
        align-items: center !important;
    }

    .input-top-bloc {
        justify-content: center;
        flex-direction: column !important;
        align-items: center !important;
    }

    .block-style-double {
        margin-bottom: 10px;
    }

    .butOut {
        flex-direction: column;
    }

    .butOut button {
        font-size: 12px;
        padding: 5px;
        margin: 2px;
        width: 100%;
    }

    #login-button {
        padding: 0px 0px;
        /* Example to match height with other buttons */
    }

    .butOut>.apple-login {
        padding: 12px 0px;
    }

    .shareModal>button {
        font-size: 9px;
        width: 95%;
        margin: 5px;
    }

    .shareModal>button:hover {
        background-color: #84e0ce;
    }

    #exchangeButton {
        margin-top: 10px !important;
        width: 100%;
        /*height: 75px;*/
        margin-bottom: 10px;
    }

    #exchangeButton span {
        width: 100%;
        position: inherit;
    }

    /*.nav-link {
    padding: 2px 6px;
  }*/
    #multi {
        position: absolute;
        /*top: 5px;*/
    }

    /*.login-container {
            width: 290px;
    margin-left: 20px;
        }*/

    #shareButton1 {
        margin-bottom: 20px !important;
    }

    #cpBut1 {
        margin-bottom: 0px !important;
    }

    #cpBut {
        margin-bottom: 20px !important;
    }

    .container {
        margin-bottom: 20px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .dropdown-select.modal {
        width: 79% !important;
        height: 90% !important;
        left: 37px !important;
    }

    .custom-select2-dropdown {
        /*width: 100% !important;*/
        height: 65vh !important;
        /*left: -21px !important;*/
    }

    .pricing-container {
        flex-direction: column;
    }

    #speOff {
        flex-direction: column;
    }

    #card5 {
        width: inherit;
    }

    #card6 {
        margin-bottom: 20px;
    }

    #bundle {
        flex-direction: column;
    }

    #card7 {
        margin-bottom: 20px;
    }

    #card8 {
        margin-bottom: 30%;
    }

    .quantity-input-container {
        padding: 0px !important;
    }

    #numUsers {
        flex-direction: column;
    }

    .btnInputLanguage {
        border-top-right-radius: 12px !important;
    }

    .butManSub {
        letter-spacing: 1.5px !important;
        font-size: 12px;
    }

    #showShareFormButton {
        letter-spacing: 1.5px !important;
        font-size: 12px;
    }

    #shareAccountModal .modal-dialog {
        width: 95%;
        font-size: 12px !important;
        margin: 10px auto;
    }

    #invitedUsersTable {
        width: 100%;
        max-width: 350px;
        /* Adjust maximum width */
        overflow-x: auto;
        /* Enable horizontal scrolling */
    }

    #invitedUsersTable th {
        font-size: x-small !important;
    }

    #invitedUsersTable td {
        font-size: x-small;
    }

    #invitationCounter {
        margin-top: 15px;
        font-size: 12px !important;
    }

    #typeSumm {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopyMulti {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #dropdownContainerLenghts {
        width: inherit;
        justify-content: center;
    }

    #dropdownContainerEmotions8 {
        width: inherit;
        justify-content: center;
        margin-top: 5px;
        text-align: center;
    }

    #dropdownContainerEmotionsProse {
        width: inherit;
        justify-content: center;
        margin-top: 5px;
        text-align: center;
    }

    #dropdownContainerEmotions5,
    #dropdownContainerEmotions6,
    #dropdownContainerEmotions7 {
        width: 100%;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    .bottomInput .error-message {
        font-size: 10px;
    }

    .butPricing {
        font-size: xx-small;
    }

    #BNBanner {
        margin-top: -60px;
        min-width: 18em;
        max-width: 18em;
    }

    #BNBannerMenu {
        max-width: 17em;
    }
}

@media (min-width: 359px) and (max-width: 375px) {
    .custom-select2-dropdown {
        /*width: 100% !important;*/
        height: 65vh !important;
        /*left: -21px !important;*/
    }

    #dropdownContainerEmotions8 {
        width: inherit;
        justify-content: center;
    }

    #dropdownContainerEmotionsProse {
        width: inherit;
        justify-content: center;
    }

    .butPricing {
        font-size: x-small;
    }

    #BNBannerMenu {
        max-width: 20em;
    }
}

/* Screen size from 376px to 480px */
@media (min-width: 376px) and (max-width: 480px) {

    .language-selector {
        justify-content: center;
        flex-direction: column !important;
        align-items: center !important;
    }

    .input-top-bloc {
        justify-content: center;
        flex-direction: column !important;
        align-items: center !important;
    }

    .butPricing {
        font-size: x-small;
    }

    .shareModal {
        width: 275px;
        height: 275px;
        right: 0.4%;
        bottom: 125%;
    }

    #continue-invitation-btn {
        margin-top: 15% !important;
    }

    .languageDropdown {
        margin-left: 0px;
    }

    h1 {
        font-size: 18px;
        /* Further decrease size of headers */
    }

    .block-style-double {
        margin-bottom: 10px;
    }

    .butOut {
        flex-direction: column;
        /* Stack buttons vertically */
    }

    .butOut button {
        font-size: 12px;
        padding: 10px 5px;
        /* Adjust padding to control the height */
        margin: 2px;
        width: 100%;
        /* Make buttons full width */
        box-sizing: border-box;
        /* Ensure padding is included in the width */
        display: block;
        /* Ensure the button is a block element */
    }

    #login-button {
        padding: 0px 0px;
        /* Example to match height with other buttons */
    }

    .butOut>.apple-login {
        padding: 12px 0px;
    }

    .shareModal>button {
        font-size: 9px;
        width: 95%;
        margin-left: 2%;
    }

    .shareModal>button:hover {
        background-color: #84e0ce;
    }

    #exchangeButton {
        margin-top: 15px !important;
        width: 100%;
        /*height: 75px;*/
        margin-bottom: 15px;
    }

    #exchangeButton span {
        width: 100%;
        position: inherit;
    }

    /*.nav-link {
    padding: 1px 3px;
  }*/
    /*.login-container {
            width: 315px;
    margin-left: 25px;
        }*/

    #multi {
        position: absolute;
        /*top: 5px;*/
    }

    .languageButton {
        height: 1%;
    }

    /*.changelang {
            width: 14%;
        }*/

    /*.shareButton {
            margin-bottom: 20px !important;
        }*/

    #cpBut {
        margin-bottom: 20px !important;
    }

    .container {
        margin-bottom: 20px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .dropdown-select.modal {
        width: 79% !important;
        height: 90% !important;
        left: 53px !important;
    }

    .custom-select2-dropdown {
        /*width: 100% !important;*/
        height: 73vh !important;
        /*left: -8px !important;*/
    }

    .pricing-container {
        flex-direction: column;
    }

    #speOff {
        flex-direction: column;
    }

    /*#card5 {
        }*/

    #card6 {
        margin-bottom: 20px;
    }

    #bundle {
        flex-direction: column;
    }

    #card7 {
        margin-bottom: 20px;
    }

    #card8 {
        margin-bottom: 30%;
    }

    .quantity-input-container {
        padding: 5px !important;
    }

    #numUsers {
        flex-direction: column;
    }

    .btnInputLanguage {
        border-top-right-radius: 12px !important;
    }

    .butManSub {
        letter-spacing: 1.5px !important;
        font-size: 12px;
    }

    #showShareFormButton {
        letter-spacing: 1.5px !important;
        font-size: 12px;
    }

    #invitationCounter {
        margin-top: 15px;
        font-size: 12px !important;
    }

    #invitedUsersTable th {
        font-size: small !important;
    }

    #invitedUsersTable td {
        font-size: small;
    }

    #typeSumm {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopyMulti {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #dropdownContainerLenghts {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotions8 {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotionsProse {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5,
    #dropdownContainerEmotions6,
    #dropdownContainerEmotions7 {
        width: 100%;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5 .dropdown-button,
    #dropdownContainerEmotions6 .dropdown-button,
    #dropdownContainerEmotions7 .dropdown-button {
        /*width: 60%;*/
    }

    .dropdown-button {
        margin: 0 auto;
        /* Center the dropdown button */
    }

    .bottomInput .error-message {
        font-size: 10px;
    }

    .butPricing {
        font-size: x-small;
    }

    #BNBanner {
        margin-top: -60px;
        min-width: 20em;
        max-width: 60em;
    }

    #BNBannerMenu {
        max-width: 23em;
    }
}

/* Screen size from 481px to 650px */
@media (min-width: 481px) and (max-width: 650px) {
    .shareModal {
        width: 239px;
        height: 140px;
    }

    .languageDropdown {
        margin-left: 0px;
    }

    .shareModal>button:hover {
        background-color: #84e0ce;
    }

    /*.language-selector {
            flex-direction: column;
        }*/

    .block-style-double {
        margin-bottom: 10px;
    }

    #exbut {
        justify-content: center;
    }

    /*.nav-link {
    padding: 2px 6px;
  }*/
    #multi {
        position: absolute;
        /*top: 5px;*/
    }

    .container {
        margin-bottom: 20px !important;
    }

    .dropdown-select.modal {
        width: 79% !important;
        height: 90% !important;
        left: 53px !important;
    }

    .custom-select2-dropdown {
        /*width: 100% !important;*/
        height: 71vh !important;
        /*left: 5px !important;*/
    }

    .pricing-container {
        flex-direction: column;
    }

    #speOff {
        flex-direction: column;
    }

    /*#card5 {
        }*/

    #bundle {
        flex-direction: column;
    }

    #card6 {
        margin-bottom: 20px;
    }

    #card7 {
        margin-bottom: 20px;
    }

    .btnInputLanguage {
        border-top-right-radius: 12px !important;
    }

    .butManSub {
        letter-spacing: 1.5px !important;
        font-size: 13px;
    }

    #showShareFormButton {
        letter-spacing: 1.5px !important;
        font-size: 13px;
    }

    #invitationCounter {
        margin-top: 15px;
        font-size: 13px !important;
    }

    #typeSumm {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopyMulti {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #dropdownContainerLenghts {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotions8 {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotionsProse {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5,
    #dropdownContainerEmotions6,
    #dropdownContainerEmotions7 {
        width: 100%;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    .bottomInput .error-message {
        font-size: small;
    }

    #BNBanner {
        margin-top: -60px;
        min-width: 25em;
        max-width: 60em;
    }
}

/* Screen size from 651px to 768px */
@media (min-width: 651px) and (max-width: 768px) {

    .shareModal {
        width: 239px;
        height: 140px;
    }

    .languageDropdown {
        margin-left: 0px;
    }

    .shareModal>button:hover {
        background-color: #84e0ce;
    }

    /*.language-selector {
            flex-direction: column;
        }*/

    .block-style-double {
        margin-bottom: 10px;
    }

    h1 {
        font-size: 22px;
        /* Decrease size of headers */
    }

    .container {
        padding: 0 10px;
    }

    textarea {
        width: 100%;
    }

    #multiTrans .col {
        margin-bottom: 10px;
    }

    #exbut {
        justify-content: center;
    }

    /*.nav-link {
    padding: 2px 6px;
  }*/
    #multi {
        position: absolute;
        /*top: 5px;*/
    }


    .container {
        margin-bottom: 20px !important;
    }

    .dropdown-select.modal {
        width: 79% !important;
        height: 90% !important;
        left: 100px !important;
    }

    .custom-select2-dropdown {
        /*width: 100% !important;*/
        height: 73vh !important;
        /*left: -5px !important;*/
    }

    .pricing-container {
        flex-direction: column;
    }

    #speOff {
        flex-direction: column;
    }

    /*#card5 {
        }*/

    #bundle {
        flex-direction: column;
    }

    #card6 {
        margin-bottom: 20px;
    }

    #card7 {
        margin-bottom: 20px;
    }

    .btnInputLanguage {
        border-top-right-radius: 12px !important;
    }

    #typeSumm {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopyMulti {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #dropdownContainerLenghts {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotions8 {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotionsProse {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5,
    #dropdownContainerEmotions6,
    #dropdownContainerEmotions7 {
        width: 100%;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #BNBanner {
        margin-top: -60px;
        min-width: 25em;
        max-width: 60em;
    }
}

/* Screen size from 769px to 974px */
@media (min-width: 769px) and (max-width: 974px) {

    .shareModal {
        width: 239px;
        height: 140px;
    }

    .languageDropdown {
        margin-left: 0px;
    }

    .language-selector {
        flex-direction: column !important;
        align-items: center !important;
    }

    .input-top-bloc {
        justify-content: center;
        flex-direction: column !important;
        align-items: center !important;
    }

    .shareModal>button:hover {
        background-color: #84e0ce;
    }

    .block-style-double {
        margin-bottom: 10px;
    }

    /*.nav-link {
    padding: 2px 6px;
  }*/
    #multi {
        position: absolute;
        /*top: 5px;*/
    }

    .container {
        margin-bottom: 20px !important;
    }

    .dropdown-select.modal {
        width: 38% !important;
        height: 90% !important;
    }

    .custom-select2-dropdown {
        /*width: 100% !important;*/
        height: 75vh !important;
    }

    .pricing-container {
        flex-direction: column;
    }

    #speOff {
        flex-direction: column;
    }

    /*#card5 {
        }*/

    #bundle {
        flex-direction: column;
    }

    #card6 {
        margin-bottom: 20px;
    }

    #card7 {
        margin-bottom: 20px;
    }

    .btnInputLanguage {
        border-top-right-radius: 12px !important;
    }

    .features-column,
    .dates-column,
    .requests-column,
    .details-column {
        min-height: 0px !important;
        margin-bottom: 10px !important;
        margin-left: 5px !important;
        margin-right: 5px !important;
        background: #F8F6F2 !important;
        /*max-width: 100% !important;*/
    }

    #typeSumm {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopyMulti {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #dropdownContainerLenghts {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotions8 {
        width: auto;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotionsProse {
        width: auto;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5,
    #dropdownContainerEmotions6,
    #dropdownContainerEmotions7 {
        /*width: 100%;*/
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5 .dropdown-button,
    #dropdownContainerEmotions6 .dropdown-button,
    #dropdownContainerEmotions7 .dropdown-button {
        /*width: 85% !important;*/
    }

    #BNBanner {
        margin-top: -60px;
        min-width: 40em;
        max-width: 60em;
    }
}

@media (min-width: 975px) and (max-width: 1290px) {

    .pricing-container {
        flex-direction: column;
    }

    #bundle {
        flex-direction: column;
    }

    #speOff {
        flex-direction: column;
    }

    .shareModal {
        width: 239px;
        height: 140px;
    }

    .languageDropdown {
        margin-left: 0px;
    }

    .nav-link {
        flex-direction: column;
    }

    .container {
        margin-bottom: 20px !important;
    }

    .dropdown-select.modal {
        width: 38% !important;
        height: 90% !important;
    }

    .custom-select2-dropdown {
        /*width: 100% !important;*/
        height: 72vh !important;
    }

    #typeSumm {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Centers items vertically */
        align-items: center;
        /* Centers items horizontally */
    }

    #typeEmoCopyMulti {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        flex-wrap: wrap;
        align-items: center;
    }

    #dropdownContainerLenghts {
        width: inherit;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotions8 {
        width: 100%;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotionsProse {
        width: 100%;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5,
    #dropdownContainerEmotions6,
    #dropdownContainerEmotions7 {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5 .dropdown-button,
    #dropdownContainerEmotions6 .dropdown-button,
    #dropdownContainerEmotions7 .dropdown-button {
        /*width: 60% !important;*/
    }
}

@media (min-width: 1291px) and (max-width: 1447px) {


    .languageDropdown {
        margin-left: 0px;
    }

    .shareModal {
        width: 239px;
        height: 140px;
    }

    .shareModal>button:hover {
        background-color: #84e0ce;
    }

    .container {
        margin-bottom: 20px !important;
    }

    #typeSumm {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #typeEmoCopyMulti {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #dropdownContainerEmotions8 {
        width: auto;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotionsProse {
        width: auto;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotions5,
    #dropdownContainerEmotions6,
    #dropdownContainerEmotions7 {
        width: 100%;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5 .dropdown-button,
    #dropdownContainerEmotions6 .dropdown-button,
    #dropdownContainerEmotions7 .dropdown-button {
        /*width: 60% !important;*/
    }
}


@media (min-width: 1448px) and (max-width: 1919px) {


    .container {
        margin-bottom: 20px !important;
    }

    /*#phrase strong {
            font-size: 1.5em;
        }*/

    /*#phrase p {
            font-size: 1.1em;
        }*/

    .shareModal {
        width: 239px;
        height: 140px;
    }

    .shareModal>button:hover {
        background-color: #84e0ce;
    }

    #typeSumm {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #typeEmoCopyMulti {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #dropdownContainerEmotions8 {
        width: auto;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotionsProse {
        width: auto;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotions5,
    #dropdownContainerEmotions6,
    #dropdownContainerEmotions7 {
        width: 100%;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }

    #dropdownContainerEmotions5 .dropdown-button,
    #dropdownContainerEmotions6 .dropdown-button,
    #dropdownContainerEmotions7 .dropdown-button {
        /*width: 60% !important;*/
    }
}

/* Screen size from 1920px and above */
@media (min-width: 1920px) {
    body {
        line-height: 2.55;
        font-size: 1.3em;
        /* Increase font size for larger screens */
    }

    .shareModal {
        width: 251px;
        height: 150px;
    }

    .shareModal>button:hover {
        background-color: #84e0ce;
    }

    h1 {
        font-size: 32px;
        /* Increase size of headers */
    }

    #typeSumm {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #typeEmoCopy {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #typeEmoCopyMulti {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    #dropdownContainerEmotions8 {
        width: auto;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotionsProse {
        width: auto;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
    }

    #dropdownContainerEmotions5,
    #dropdownContainerEmotions6,
    #dropdownContainerEmotions7 {
        width: 100%;
        text-align: center;
        /* Ensures text in the dropdown is centered */
        justify-content: center;
        margin-top: 5px;
    }
}

/* Screen size from 0px to 900px */
@media (max-width: 900px) {
    .nav-link {
        border-bottom-left-radius: 24px !important;
        border-bottom-right-radius: 24px !important;
    }

    .navbar {
        margin-bottom: 12px;
    }

    .nav-tabs {
        margin-bottom: 12px !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        padding: 30px 15px;
        /* Adjust padding for smaller screens */
        font-size: 14px;
        /* Adjust font size for smaller screens */
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        /* Each section takes full width on smaller screens */
    }

    .footer-right {
        align-items: center;
        /* Center the lists on smaller screens */
        flex-direction: column;
    }

    .footer-section {
        text-align: center;
        /* Center the text within each section */
    }

    .footer-section h3 {
        font-size: 12px !important;
        color: #333;
        text-align: center !important;
    }

    .footer-bottom {
        text-align: center;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin-bottom: 10%;
    }

    .footer-bottom p {
        padding: 10px 0;
        /* Adds padding top and bottom */
    }

    .footer-logo img {
        display: none;
    }
}
