body, html {
    background-color: black;
    color: white;
}

.flex-none {
    flex: none;
}

.features {
    text-align: left;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh); /* Adjust for top-bar height */
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.category-buttons {
    margin-bottom: 1.5rem;
}

.category-buttons .btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.input-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.input-group {
    width: 100%;
    max-width: 800px; /* Set maximum width for large screens */
}

.form-control-lg {
    height: 70px; /* Ensure consistent input height */
    font-size: 1.5rem; /* Large font for input */
}

.btn-download {
    background-color: #fc26c1 !important;
    color: white;
    border: none;
    max-width: 120px;
}

.btn-download.w-100 {
    max-width: 100% !important;
}

.btn-download:hover {
    background-color: #0056b3;
}

.btn-paste {
    background-color: #ffffff;
    color: #333333;
    border: none;
    max-width: 80px;
}

.btn-paste:hover {
    background-color: #e6e6e6;
}

.top-bar {
    color: white;
    padding: 0.5rem 0 !important;
    z-index: 10;
}

.container {
    max-width: 920px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.top-bar .auth-links {
    font-size: 1rem;
}

.category-buttons {
    display: flex; /* Use flexbox for proper alignment */
    width: 100%; /* Ensure the container spans the full width */
    margin: 0 auto; /* Center the container */
    max-width: 800px; /* Optional: Limit the max width to make it closer to the design */
}

.category-buttons .btn {
    color: white; /* Set text color */
    font-size: 1rem; /* Control font size */
    line-height: 48px; /* Align text vertically */
    padding: 0; /* Remove extra padding */
    border: none;
    border-right: 1px solid white; /* Add a border between buttons */
    flex-grow: 1; /* Ensure equal width for all buttons */
    background-color: rgba(255, 255, 255, 0.2);
}

.category-buttons .btn:last-child {
    border-right: none; /* Remove border for the last button */
}

.btn-pink {
    background-color: #fc26c1; /* Darker pink on hover */
}

.btn-pink:hover {
    background-color: #c1134e; /* Darker pink on hover */
}

.category-buttons .btn:hover {
    background-color: #fc26c1; /* Darker pink on hover */
    color: white;
}

.custom-input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px; /* Wider input group for larger screens */
    margin: 0 auto; /* Center horizontally */
    background-color: white; /* White background for input group */
    border-radius: 50px; /* Smooth rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 5px; /* Add padding inside group */
}

.custom-input-group .form-control {
    flex: 3; /* Input field takes most of the space */
    border: none; /* Remove default border */
    height: 60px; /* Standard height for desktop */
    font-size: 1.2rem; /* Larger font size for desktop */
    padding: 0 15px; /* Add padding inside input field */
    border-radius: 50px; /* Smoothly rounded edges */
    background-color: white; /* Match group background */
    outline: none; /* Remove focus outline */
}

.custom-input-group .form-control::placeholder {
    color: #aaa; /* Subtle placeholder color */
    font-style: italic; /* Optional placeholder styling */
}

.custom-input-group .btn {
    flex: 1; /* Buttons take equal space */
    height: 60px; /* Match input height for desktop */
    font-size: 1rem; /* Consistent button text size for desktop */
    padding: 0 20px; /* Padding for button content */
    border-radius: 50px; /* Smoothly rounded buttons */
    border: none; /* Remove default border */
    margin-left: 10px; /* Spacing between buttons */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle button shadow */
}

.custom-input-group .btn-paste {
    background-color: #f9f9f9; /* Light gray button */
    color: #333; /* Darker text color for contrast */
}

.custom-input-group .btn-paste:hover {
    background-color: #e6e6e6; /* Slightly darker gray on hover */
}

.custom-input-group .btn-download {
    background-color: #fc26c1; /* Bright pink button */
    color: white; /* White text for contrast */
}

.custom-input-group .btn-download:hover {
    background-color: #c1134e; /* Darker pink on hover */
}

.text-pink {
    background-color: #fc26c1;
}

.highlight {
    background-color: #fc26c1; /* Light yellow background */
    padding: 4px 0 4px 0; /* Add some padding around text */
    border-radius: 3px; /* Rounded corners for smoother look */
}

.bottom-svg {
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.accordion-button {
    background-color: #f5f5f5; /* Light gray for collapsed buttons */
    color: #333; /* Dark text for contrast */
    border: 1px solid #ddd;
    transition: background-color 0.2s ease-in-out;
}

.accordion-button:not(.collapsed) {
    background-color: #333; /* Dark gray for expanded button */
    color: #fff; /* White text for readability */
    border-color: #333; /* Ensure border matches background */
}

.accordion-body {
    background-color: #f9f9f9; /* Slightly lighter gray for content */
    color: #333; /* Text remains dark */
    border-top: 1px solid #ddd; /* Add subtle divider */
}

.bg-light-gray {
    background-color: #efefef;
}

.container-faq {
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 920px; /* Your custom max width */
}

h1#title {
    font-size: 50px;
    font-weight: bold;
    line-height: 1em;
}

h1#title.main-title {
    font-size: 75px;
}

h1#title .small-title {
    display: block; /* Moves the .com part to a new line */
    font-size: 40px; /* Adjust size to match h2 */
    font-weight: bold; /* Optional: Make it less bold */
    margin-bottom: -0.3em; /* Adjust spacing to visually connect with the main text */
}

h2#subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.disclaimer a {
    color: #fff;
    font-weight: bold;
}

.color-black {
    color: #000000;
}

.page-header {
    font-size: 36px;
}

.page-subheader {
    font-size: 30px;
}

.bg-danger {
    background-color: #fc26c1 !important;
}

#loader .post {
    width: 280px;
    height: 500px;
    border-radius: 10px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.shimmer {
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to right,
            #333 0%,
            #555 50%,
            #333 100%
    );
    background-size: 200% 100%;
    animation: shimmer-animation 1.5s infinite;
}

.result-item {
    overflow: hidden;
    width: 100%;
}

.thumbnail-container {
    width: 142px;
    height: 160px;
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
}

.thumbnail-container .thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

img.loader-gif {
    width: 40px !important;
    height: 40px !important;
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

.result-item-info {
    padding: 12px 16px;
    min-width: 0;
}

.result-item-info select {
    font-size: 18px;
}

.result-item-title {
    font-size: 14px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #333;
}

.download-button-wrapper {
    padding: 0;
}

#postList {
    max-width: 640px;
    width: 100%;
    margin: auto;
    background-color: #efefef;
}

.loader {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    color: #FFF;
    box-sizing: border-box;
    animation: animloader 2s linear infinite;
}

.squareup-loading {
    height: 100px;
    width: 100%;
    position: absolute;
    z-index: 10001;
}

.squareup-loading .shimmer {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #eeeeee 0%, #b1aaaa 50%, #eeeeee 100%);
    background-size: 200% 100%; /* Configura el tamaño del fondo para la animación */
    animation: shimmer-animation 1.5s infinite;
}

@keyframes animloader {
    0% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
    }
    25% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 2px;
    }
    50% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 -2px, -14px 0 0 2px, -38px 0 0 -2px;
    }
    75% {
        box-shadow: 14px 0 0 2px, 38px 0 0 -2px, -14px 0 0 -2px, -38px 0 0 -2px;
    }
    100% {
        box-shadow: 14px 0 0 -2px, 38px 0 0 2px, -14px 0 0 -2px, -38px 0 0 -2px;
    }
}

@keyframes shimmer-animation {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@-webkit-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@-moz-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@-o-keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes ld {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.m-progress {
    position: relative;
    opacity: .8;
    color: transparent !important;
    text-shadow: none !important;
}

.m-progress img {
    opacity: 0 !important;
}

.m-progress:hover,
.m-progress:active,
.m-progress:focus {
    cursor: default;
    color: transparent;
    outline: none !important;
    box-shadow: none;
}

.m-progress:before {
    content: '';
    display: inline-block;
    position: absolute;
    background: transparent;
    border: 1px solid #fff;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    width: 24px;
    height: 24px;
    -webkit-animation: ld 1s ease-in-out infinite;
    -moz-animation: ld 1s ease-in-out infinite;
    -o-animation: ld 1s ease-in-out infinite;
    animation: ld 1s ease-in-out infinite;
}

.btn-selected {
    background-color: #fc26c1 !important;
    opacity: 1 !important;
}

.yout-col {
    max-width: 640px;
    width: 100%;
}

.bg-light-gray,
.bg-white {
    color: #000;
}

.dropdown-menu {
    max-height: 250px;
    overflow: auto;
}

.highlighted {
    font-weight: bold;
    background: #fffd54;
    color: #0f1115;
    display: inline-block;
    padding: 2px 3px;
}

.tab-choices {
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
}

.tab-choices div {
    display: inline-block;
}

.tab-choices button {
    border: 0;
    padding: 8px 30px;
    border-radius: 5px;
    transition: .15s ease-in-out all;
    background-color: #f9f9f9;
}

.tab-choice:hover,
.tab-choice.active {
    background-color: #000;
    color: #fff;
}

.tab-content {
    display: none;
}

.plan-wrapper {
    position: relative;
}

.plan-price {
    font-size: 55px;
    font-weight: bold;
    line-height: 1em;
    color: #000;
}

.small {
    font-size: small;
}

.toggle-seats.disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-credits,
.toggle-seats {
    line-height: 37px;
    width: 37px;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input[name=seats] {
    border: 1px solid #e1e1e1;
    text-align: center;
    font-size: 22px;
    max-width: 80px;
    border-radius: 5px;
    outline: none;
}

.plan-discount {
    display: inline-block;
    background-color: #ff0058;
    border-radius: 20px;
    color: #fff;
    padding: 2px 12px;
    position: absolute;
    top: -16px;
    right: -40px;
    font-size: 16px;
}

.smallest {
    font-size: 12px;
}

.plan-price {
    font-size: 43px;
    font-weight: bold;
    line-height: 1em;
}

.thanks-check-icon svg {
    height: 80px;
    width: 80px;
}

a#logo svg {
    height: 24px;
    width: 24px;
}

.logo-title svg {
    margin-bottom: 10px;
    height: 18px;
    width: 18px;
    flex: none;
}

button#togglebutton {
    border-color: #fff;
    padding: 0 3px;
}

#togglebutton .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3E%3Cpath fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M2 5l6 6 6-6"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.tab-content.active {
    display: block !important;
}

.tab-content {
    display: none;
}

.plan-wrapper {
    position: relative;
}

.plan-price {
    font-size: 55px;
    font-weight: bold;
    line-height: 1em;
    color: #000;
}

.small {
    font-size: small;
}

form label {
    font-size: 14px;
}

input[name=credits] {
    border: 1px solid #e1e1e1;
    text-align: center;
    font-size: 22px;
    max-width: 80px;
    border-radius: 5px;
    outline: none;
}

.tab-wrapper.active {
    display: block;
}

.tab-wrapper {
    display: none;
}

.tab-buttons button {
    border: 0;
    font-size: 14px;
}

.tab-buttons button.active {
    background: blue;
    color: #fff;
}

.badge-failed {
    background-color: #ff0000;
}

.badge-success {
    background-color: green;
}

.badge-refunded {
    background-color: #3399cc;
}

.job-url {
    display: inline-block;
    font-weight: bold;
}

.btn-light.m-progress:before {
    border: 1px solid #101010;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

a.download-button.btn-success {
    background-color: #23a242 !important;
    border-color: #23a242 !important;
}

.confetti {
    border-radius: 2px;
}

.cards-logos svg {
    height: 40px;
    width: 40px;
}

button#dayPassBadge svg {
    height: 20px;
    width: 20px;
}

span.timer {
    min-width: 65px;
    font-size: 14px;
}

.btn-paste.m-progress:before {
    border: 1px solid #000;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.plans-wrapper {
    border-radius: 16px !important;
    overflow: hidden;
}

.dark .highlighted {
    background: #fff ! important;
}

@keyframes fall {
    to {
        transform: translateY(100px) rotate(720deg); /* 100px debajo del punto inicial */
        opacity: 0; /* se desvanece */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .input-group {
        width: 100%; /* Ensure full width on very small screens */
    }

    .custom-input-group {
        width: 100%; /* Full width for smaller screens */
    }

    .custom-input-group .form-control {
        height: 50px; /* Smaller height for tablets */
        font-size: 1rem; /* Adjust font size for readability */
    }

    .custom-input-group .btn {
        height: 50px; /* Match input height for tablets */
        font-size: 0.9rem; /* Adjust button text size */
        margin-left: 5px; /* Adjust spacing */
    }
}

@media (max-width: 576px) {
    .tab-choices button {
        padding: 8px 8px !important;
        font-size: 14px !important;
    }

    .result-item {
        flex-direction: column;
    }

    .thumbnail-container {
        width: 100%;
        height: 220px;
    }

    .result-item-info {
        padding: 12px 0 0 0;
    }

    .input-group {
        width: 100%; /* Ensure full width on very small screens */
    }

    .custom-input-group {
        flex-direction: row; /* Maintain inline row layout */
        justify-content: space-between; /* Space out elements evenly */
        padding: 5px; /* Adjust padding for smaller screens */
    }

    .custom-input-group .form-control {
        height: 50px; /* Smaller input height */
        font-size: 1rem; /* Adjust font size */
    }

    .custom-input-group .btn {
        height: 50px; /* Match input height */
        font-size: 0.9rem; /* Adjust text size for buttons */
        margin-left: 5px; /* Adjust spacing between buttons */
    }
}

@media (max-width: 480px) {
    h1#title.main-title {
        font-size: 48px;
    }

    h1#title .small-title {
        display: block; /* Moves the .com part to a new line */
        font-size: 30px; /* Adjust size to match h2 */
        font-weight: bold; /* Optional: Make it less bold */
        margin-bottom: -0.3em; /* Adjust spacing to visually connect with the main text */
    }

    .logo-title svg {
        margin-bottom: 5px;
    }

    .top-bar .brand {
        font-size: 20px;
        font-weight: bold;
    }
}
/* Breadcrumb Styles */
.breadcrumb,
.breadcrumb-custom {
    background-color: transparent;
    padding: 0.25rem 0;
    margin-bottom: 0;
    font-size: 0.75rem;
}

.breadcrumb-item,
.breadcrumb-custom .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a,
.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover,
.breadcrumb-custom .breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-item.active,
.breadcrumb-custom .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive breadcrumbs */
@media (max-width: 576px) {
    .breadcrumb,
    .breadcrumb-custom {
        font-size: 0.7rem;
    }
}

/* ============================
   SPONSORED CONTENT ZONES
   ============================ */

/* Media Zone - Centers all sponsored content blocks */
.media-zone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Base Content Block Styles */
.content-block {
    background-color: #2a2a2a; /* Slightly lighter than black background */
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.content-block:hover {
    background-color: #333;
}

/* Wide Format - 728x90 (Horizontal Banner) */
.wide-format {
    width: 728px;
    height: 90px;
    max-width: 100%;
}

/* Square Format - 300x250 (Medium Rectangle) */
.square-format {
    width: 300px;
    height: 250px;
    max-width: 100%;
}

/* Large Format - 336x280 (Large Rectangle) */
.large-format {
    width: 336px;
    height: 280px;
    max-width: 100%;
}

/* Tall Format - 160x600 (Vertical Banner) */
.tall-format {
    width: 160px;
    height: 600px;
}

/* Sidebar Zone - Fixed Position on Desktop */
.sidebar-zone {
    position: absolute;
    right: -180px; /* Position outside main container */
    top: 100px;
    z-index: 5;
}

/* Content breaks within results - Full width separators */
.content-break,
.content-separator {
    margin: 1rem 0;
    order: 999; /* Ensures content appears in correct position in flexbox */
}

.content-break .content-block,
.content-separator .content-block {
    margin: 0 auto;
}

/* Responsive Adjustments */

/* Tablets and smaller - Hide sidebar zone */
@media (max-width: 1199px) {
    .sidebar-zone {
        display: none !important;
    }
}

/* Mobile - Stack content vertically, full width */
/* Mobile devices show Square Format (300x250) */
@media (max-width: 767px) {
    .square-format,
    .large-format {
        width: 100%;
        max-width: 300px;
        height: 250px;
    }
}

/* Tablet and Desktop - Wide Format (728x90) displays */
@media (min-width: 768px) {
    .wide-format {
        width: 728px;
        max-width: 100%;
        height: 90px;
    }
}

/* Very small mobile - Adjust square format heights */
@media (max-width: 480px) {
    .square-format,
    .large-format {
        max-width: 100%;
        height: 200px;
        font-size: 10px;
    }
}

/* Content Zone Visibility Control - Hide on specific pages if needed */
.page-privacy .media-zone,
.page-terms .media-zone,
.page-contact .media-zone {
    display: none;
}
