#aitele.click-fast-request.quizai {
    width: max-content;
    margin: 2% auto 5% auto;
    background: #3CA1EA;
    color: #fff !important;
    border-left: 1px solid #ffffff;
}
#aitele.click-fast-request.quizai:hover {
background: #077ace;
}
.container.container-generate {
    width: 35%;
    margin: 10% auto;
    padding: 0;
}
.smart-lead {
    padding: 10%;
}
.int1 {
    background: #00b34b;
    border-bottom: 1px solid #525252;
    padding: 15px;
    color: #fff;
    font-weight: 600;
    text-align: left;
    font-size: 117%;
    text-transform: uppercase;
    line-height: 28px;
}
.int2 {
    background: #222222f0;
    color: #cfcfcf;
    padding: 15px;
    font-size: 80%;
    line-height: 23px;
    font-weight: 500;
}
i.fab.fa-whatsapp{
    position: relative;
    height: 20px;
    background: #37815a;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 999;
}
i.fab.fa-whatsapp:hover{
    background: #247349;
}
a#telewhats.wh-button{
    text-decoration: auto;
	padding: 0;
}
i.fab.fa-telegram {
    position: relative;
    height: 25px;
    margin-right: 1px;
    background: #1d98f2;
    color: white;
    padding: 10px;
    border-radius: 0;
    cursor: pointer;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 999;
}
i.fab.fa-telegram:hover {
    background: #1095f6;
}
#gentext p {
    opacity: 0.8;

	font-weight: 500;
}
#gentext h3, h4, h5, h6 {
    font-size: 115%;
	    transition: opacity 0.5s ease-out;
}
#gentext ul {
    font-weight: 500;
}



header {
    margin-bottom: 20px;
}

header h2 {
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0;
    background: #00b34b;
    padding: 10px;
    border-radius: 5px;
    animation: fadeIn 0.5s ease;
}

header p {
    font-size: 14px;
    margin: 5px 0;
    background: #343434;
    padding: 10px;
    border-radius: 5px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

form {
    position: relative;
    margin-top: 20px;
}

#intentFormChat{
    width: 95%;
    margin-top: 20px;
}

.input-container, .input-container-chat {
    display: flex;
    align-items: center;
    position: relative;
}
.input-container-chat{
    width: 100%;
    flex-wrap: wrap;
    margin-top: -81px;
}

#intentInput {
    width: 100%;
    padding: 15px 70px 15px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 16px;
    background: #222222db;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    resize: none;
    height: 100px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

#intentInput:focus {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    outline: none;
}

.intentInputChat:focus{
    transform: scale(1.02) !important;
}

#inputLabel {
    position: absolute;
    top: 10px;
    left: 15px;
    right: 5px;
    font-size: 16px;
    color: #ccc;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: monospace;
    width: auto;
    white-space: break-spaces;
    overflow: hidden;
}
#inputLabelChat{
    font-weight: bold;
    background-color: #5b5b5b;
    padding: 2px 4px !important;
    margin: 4px 10px !important;
	    font-size: 62%;
}

#intentInput:focus + #inputLabel,
#intentInput:not(:placeholder-shown) + #inputLabel {
    top: -10px;
    left: 5px;
    font-size: 12px;
    color: #fff;
}

#submitButton {
    background: none;
    border: none;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#submitButton svg {
    fill: #fff;
    transition: fill 0.3s ease;
}

#submitButton:hover svg {
    fill: #00b34b;
}

.suggestions, .suggestionsChat {
    position: absolute;
    font-size: 55%;
    width: auto;
    top: -55px;
    right: 10%;
    background: #222222cc;
    border: 1px solid #ccc;
    border-radius: 4px;
    list-style: none;
    padding: 5px;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}
.suggestions.show, .suggestionsChat.show {
    display: block;
    opacity: 1;
    max-height: 200px;
}
ul#suggestions.suggestions.show {
    top: 70px;
}

.suggestions::-webkit-scrollbar, .suggestionsChat::-webkit-scrollbar {
    width: 8px;
}

.suggestions::-webkit-scrollbar-track, .suggestionsChat::-webkit-scrollbar-track {
    background: #333;
}

.suggestions::-webkit-scrollbar-thumb, .suggestionsChat::-webkit-scrollbar-thumb {
    background-color: #00b34b;
    border-radius: 10px;
}

.suggestions li, .suggestionsChat li {
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #fff;
}

.suggestions li:hover, .suggestionsChat li:hover {
    background-color: #333;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tag {
    background-color: #00b34b;
    font-weight: bold;
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.tag.selected {
    background-color: #e2e2e2;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

#nextButton {
    display: block;
    position: absolute;
    right: 10px;
    margin-top: 0px;
    padding: 10px 20px;
    background-color: #00b34b;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#nextButton:hover {
    background-color: #e2e2e2;
}

.aiblock-trans {
    padding: 10%;
}
.aiblock-trans li {
    background: transparent;
    border-bottom: 1px solid;
}
.aiblock-white{
    background: #fff;
    color: #000;
    padding: 10%;
    font-weight: 600;
}
.aiblock-green {
    background: #00b34b;
    padding: 10%;
    color: #000;
    font-weight: 600;
}
#gentext.aiblock-green.select-fast-request.quizai {
    background: #2a2a2a;
}
.aiblock-white h1, 
.aiblock-white h2, 
.aiblock-white h3, 
.aiblock-white h4, 
.aiblock-white h5, 
.aiblock-white h6 {
background: #00b34b;
    padding: 10px;
    color: #fff;
    font-weight: 600;
    width: fit-content;
	}
.aiblock-red h1, 
.aiblock-red h2, 
.aiblock-red h3, 
.aiblock-red h4, 
.aiblock-red h5, 
.aiblock-red h6 {
background: #ffffff;
    color: #272727;
    border: 1px solid;
    padding: 5px 10px;
    display: inline-flex;
    width: fit-content;
}

.aiblock-grey h1, h2 {
    font-size: 120%;
	background: transparent;
    color: #00b34b;
    text-transform: uppercase;
    border-bottom: 2px solid #00b34b;
    padding: 10px;
    display: inline-flex;
    width: fit-content;
}
.aiblock-grey h3, h4, h5, h6 {
    font-size: 100%;
    background: #1d1d1d;
    color: #c4c4c4;
}
.aiblock-green h1, 
.aiblock-green h2, 
.aiblock-green h3, 
.aiblock-green h4, 
.aiblock-green h5, 
.aiblock-green h6 {
    background: #ffffff;
    color: #000000;
    padding: 5px 10px;
    font-weight: bold;
    width: fit-content;
}

.aiblock-green li::marker {
    color: #000;
}
.aiblock-black {
    background: #2a2a2a;
    color: #c0c0c0;
    padding: 10%;
    font-weight: 600;
}
.aiblock-red {
    background-color: #ccc;
    color: #000;
    padding: 10%;
}
.aiblock-contact {
    padding: 5%;
    background: #2a2a2a;
}


.grid-container {
    column-count: 5;
    column-gap: 10px;
    padding: 10px;
} 

.grid-item {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    break-inside: avoid;
    margin-bottom: 10px;
}

.grid-item:hover {
    transform: scale(1.05);
}



.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.lightbox:target {
    display: flex;
}




@media (max-width: 1268px) {
.container.container-generate {
    width: 70%;

}
}


@media (max-width: 768px) {
	.grid-container {
    column-count: 2;
}

	.container.container-generate {
    width: 80%;

}
	#intentFormChat {
    width: 100%;
    margin-top: 63px;
}


	.container.container-generate {
    width: 75%;
    margin: 15% auto;

}
#inputLabel {
    font-size: 13px;
}
.suggestionsChat {
    font-size: 40%;
    top: 0;
    margin-top: -50% !important;
}
}


@media (max-width: 600px) {
	.aiblock-trans, .aiblock-white, .aiblock-green, .aiblock-black, .aiblock-red {
    padding: 5%;
}

    .int2 {
        font-size: 80%;
        line-height: 18px;
    }

.int1 {
    font-size: 100%;
    line-height: 18px;
}
inputLabel {
    font-size: 12px;
}
    #gentext ul {
        font-weight: 500;
        font-size: 100%;
        line-height: 22px;
    }
    #gentext p {
        font-size: 100%;
        line-height: 22px;
        font-weight: 500;
    }
}
