body{
	background-color: #FFF;
}
#header {
	background-color: #FFF;
    color: #000;
	border-bottom: 1px solid #048DBA;
}
nav{
	background-color: #048DBA;
}

nav ul li a,
nav ul li a:visited,
nav ul li {
	color: #FFF;
}
nav>ul>li>div ul>li>a, nav>ul>li>div ul>li>div ul>li>a {
	color: #FFF;
}

footer {
    background-color: #FFF;
    color: #000;
	border-top: 1px solid #048DBA
}
footer .logo img{
	height:134px;
	width:auto;
}
footer .footer-contact a,
ul.footer-menu li a {
    color: #048DBA !important;
}
.company-color {
	color: #048DBA;
}
.company-background {
	background-color: #048DBA;
}
.company-border {
	border-color: #048DBA;
}
.company-table {
	border-top-color:#C22E2E;
    border-right-color:#C22E2E;
}
.company-table th {
	background-color: #048DBA;
	border-bottom-color: #048DBA;
	border-left-color: #048DBA;
}
.company-table td {
	border-bottom-color: #048DBA;
	border-left-color: #048DBA;
}
.company-table a {
	color: #048DBA;
}
#content h3 {
	color: #048DBA;
}
fieldset legend {
	color: #048DBA;
}
a, a:visited, a:hover {
	color: #048DBA;
}
.company-secondary-color {
	color: #1B1B1B;
}
/* DO NOT EDIT - OVERRIDES */

a.btn-primary {
	color: #ffffff;
}
#header-email {
	background-color:#048DBA;
}
#header-email:hover {
	background-color:#666;	
}

#header-email a{
	color:#FFF;
}
.logo img {
	height: 174px;
	width: auto;
}

/* AI Support Chat Widget */
.ai-chat-widget-closed,
.ai-chat-widget-open {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ai-chat-prompt {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    padding: 10px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
    white-space: nowrap;
}

.ai-chat-widget-open .ai-chat-prompt {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.ai-chat-prompt-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.ai-chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #048DBA;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.ai-chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background-color: #037099;
}

.ai-chat-close-icon {
    display: none;
}

.ai-chat-widget-open .ai-chat-icon {
    display: none;
}

.ai-chat-widget-open .ai-chat-close-icon {
    display: block;
}

.ai-chat-window {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    overflow: hidden;
}

.ai-chat-widget-open .ai-chat-window {
    display: flex;
}

.ai-chat-header {
    background-color: #048DBA;
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-chat-header-content {
    flex: 1;
}

.ai-chat-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.ai-chat-subtitle {
    margin: 4px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
}

.ai-chat-minimize-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.2s;
}

.ai-chat-minimize-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f8f9fa;
    scroll-behavior: smooth;
}

.ai-chat-welcome {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ai-chat-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #048DBA;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ai-chat-welcome-text {
    flex: 1;
}

.ai-chat-welcome-text p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.ai-chat-welcome-text p:last-child {
    margin-bottom: 0;
}

.ai-chat-message {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.3s ease;
}

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

.ai-chat-message-user {
    align-items: flex-end;
}

.ai-chat-message-assistant {
    align-items: flex-start;
}

.ai-chat-message-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.ai-chat-message-user .ai-chat-message-bubble {
    background-color: #048DBA;
    color: white;
    border-bottom-right-radius: 4px;
}

.ai-chat-message-assistant .ai-chat-message-bubble {
    background-color: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ai-chat-message-time {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
    padding: 0 4px;
}

.ai-chat-thinking {
    display: none;
    padding: 0 16px 8px;
}

.ai-chat-thinking-content {
    background: white;
    padding: 10px 14px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ai-chat-thinking-text {
    font-size: 14px;
    color: #666;
}

.ai-chat-dots {
    display: flex;
    gap: 4px;
}

.ai-chat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #048DBA;
    animation: dotPulse 1.4s infinite ease-in-out;
}

.ai-chat-dot:nth-child(1) {
    animation-delay: 0s;
}

.ai-chat-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-chat-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0%, 60%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.ai-chat-input-container {
    border-top: 1px solid #e0e0e0;
    padding: 12px;
    background: white;
}

.ai-chat-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.ai-chat-input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    resize: none;
    overflow-y: hidden;
    height: 40px;
    max-height: 120px;
    line-height: 1.4;
}

.ai-chat-input:focus {
    border-color: #048DBA;
}

.ai-chat-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #048DBA;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.2s;
    flex-shrink: 0;
}

.ai-chat-send-btn:hover:not(:disabled) {
    background-color: #037099;
    transform: scale(1.05);
}

.ai-chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ai-chat-error {
    background: #ff4444;
    color: white;
    padding: 10px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 13px;
    animation: fadeInUp 0.3s ease;
}

.ai-chat-warning {
    background: #ff9800;
    color: white;
    padding: 10px 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 13px;
    animation: fadeInUp 0.3s ease;
}

.ai-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.ai-chat-messages::-webkit-scrollbar-thumb:hover {
    background: #999;
}

@media (max-width: 480px) {
    .ai-chat-widget-closed,
    .ai-chat-widget-open {
        bottom: 10px;
        right: 10px;
    }

    .ai-chat-window {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        max-width: 380px;
    }
}
