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

#logo {
    font-size: 100px;
}

.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-lg {
    /* height: 70px; */ /* Match button height with input */
    font-size: 1.5rem; /* Large font for buttons */
}

.btn-download {
    background-color: #0165E1 !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: #0165E1; /* Darker pink on hover */
}

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

.category-buttons .btn:hover {
    background-color: #0165E1; /* 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: #0165E1; /* Bright pink button */
    color: white; /* White text for contrast */
}

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

.text-pink {
    background-color: #0165E1;
}

.highlight {
    background-color: #0165E1; /* 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;
}

.instag-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: #0165E1 !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 {
    border-radius: 8px;
    overflow: hidden;
}

.result-item .result-image {
    width: 100%;
    height: 350px;
    position: relative;
}

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

.result-item .result-image img:not(.loader-gif) {
    object-fit: cover;
    height: 100% !important;
    transition: all 4s ease-in-out;
    transform: scale(1);
    width: 100% !important;
}

.download-button {
    padding: 10px;
}

.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: #0165E1 !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;
    background-color: transparent;
    border-radius: 5px;
    transition: .15s ease-in-out all;
}

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

.tab-content {
    display: none;
}

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

.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-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#FacebLogo 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;
}

.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-credits {
    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;
}

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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-control-lg, .btn-lg {
        height: 60px; /* Slightly smaller for medium screens */
        font-size: 1.3rem; /* Adjust font size for readability */
    }

    .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) {
    .result-item {
        width: 100% !important;
    }

    .form-control-lg, .btn-lg {
        height: 55px; /* Slightly smaller for small screens */
        font-size: 1.2rem; /* Adjust font size for smaller screens */
    }

    .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;
    }
}