#conditional-ai-wrapper {
position: relative;
width: 100vw;
height: 100vh;
background-image: url(https://globaliaco.com/wp-content/uploads/2023/08/globalia-room.jpg); 
background-size: cover;
background-position: center;
}
#conditional-ai-video-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.conditional-ai-background-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
#conditional-ai-navigation {
position: relative;
z-index: 100;
width: 100%;
height: 10%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
#conditional-ai-center {
width: 100%;
height: 80%;
display: flex;
align-items: center;
justify-content: center;
}
::-webkit-scrollbar {
width: 0.1em;
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0);
}
#conditional-ai-form {
position: relative;
z-index: 100;
width: 100%;
height: 80%;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
margin-left: 5%;
margin-right: 5%;
}
#conditional-ai-content {
padding-top: 15%;
}
#conditional-ai-form h1 {
font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #FFFFFF;
font-size: 24px;
margin-bottom: 20px;
text-align: center;
max-width: 500px;
}
#conditional-ai-form-fields {
display: flex;
justify-content: center;
align-items: center;
}
.conditional-ai-button {
border-radius: 8px;
border-style: none;
box-sizing: border-box;
cursor: pointer;
display: inline-block;
font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
font-weight: 550;
line-height: 20px;
list-style: none;
margin: 0 10px;
outline: none;
padding: 10px 16px;
position: relative;
text-align: center;
text-decoration: none;
transition: color 100ms;
vertical-align: baseline;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
#conditional-ai-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 99;
display: block;
}
#conditional-ai-loading-spinner {
width: 40px;
height: 40px;
border: 4px solid #f3f3f3;
border-radius: 50%;
animation: spin 2s linear infinite;
z-index: 999;
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {
#conditional-ai-form h1 {
font-size: 18px;
line-height: 20px;
}
.conditional-ai-button {
font-size: 14px;
}
#conditional-ai-content {
padding-top: 70%;
}
}