		<style type="text/css">
			/* Simple Autocomplete Styling */
			:root {
				--docsbot-border: #ddd;
				--docsbot-hover-bg: #f5f5f5;
				--docsbot-link: #0073aa;
				--docsbot-text: #333;
				--docsbot-text-secondary: #666;
			}

			/* Reset and ensure proper display */
			.docsbot-search-wrap,
			.docsbot-search-wrap *,
			.docsbot-search-results,
			.docsbot-search-results * {
				box-sizing: border-box !important;
			}

			.docsbot-search-wrap ul,
			.docsbot-search-wrap li {
				list-style: none !important;
				list-style-type: none !important;
				margin: 0 !important;
				padding: 0 !important;
				background-image: none !important;
			}

			.docsbot-search-wrap ul::before,
			.docsbot-search-wrap li::before {
				content: none !important;
			}

			/* Simple loading spinner */
			.gf-docsbot-spinner {
				width: 20px !important;
				height: 20px !important;
				border: 2px solid #e0e0e0 !important;
				border-top-color: var(--docsbot-link) !important;
				border-radius: 50% !important;
				animation: docsbot-spin 0.8s linear infinite !important;
				display: inline-block !important;
				box-sizing: border-box !important;
			}

			@keyframes docsbot-spin {
				to { transform: rotate(360deg); }
			}

			/* Loading state container */
			.docsbot-loading-container {
				display: flex !important;
				align-items: center !important;
				justify-content: center !important;
				padding: 16px !important;
				background: #fafafa !important;
				border-bottom: 1px solid #eee !important;
			}

			.docsbot-loading-text {
				margin-left: 10px !important;
				font-size: 13px !important;
				color: var(--docsbot-text-secondary) !important;
			}

			/* Simple search container */
			.gfield .docsbot-search-wrap,
			.docsbot-search-wrap {
				margin-top: 8px !important;
				max-width: 100% !important;
				position: relative !important;
				background: #fff !important;
				border: 1px solid var(--docsbot-border) !important;
				border-radius: 4px !important;
				box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
				overflow: hidden !important;
				/* Remove display: block !important so JavaScript can control visibility */
			}

			.docsbot-search-wrap .docsbot-search-results,
			.docsbot-search-results {
				list-style: none !important;
				padding: 8px 0 !important;
				margin: 0 !important;
				max-height: 300px !important;
				overflow-y: auto !important;
				overflow-x: hidden !important;
			}
			/* Hide scrollbar when not needed */
			.docsbot-search-results:not(:hover) {
				overflow-y: auto !important;
			}
			/* Only show overflow when content exceeds container */
			.docsbot-search-results {
				scrollbar-width: thin; /* Firefox */
				scrollbar-gutter: stable; /* Reserve space for scrollbar */
			}

			/* Standard scrollbar */
			.docsbot-search-results::-webkit-scrollbar {
				width: 8px;
			}

			.docsbot-search-results::-webkit-scrollbar-track {
				background: #f1f1f1;
			}

			.docsbot-search-results::-webkit-scrollbar-thumb {
				background: #888;
				border-radius: 4px;
			}

			.docsbot-search-results::-webkit-scrollbar-thumb:hover {
				background: #555;
			}

			/* Simple result items */
			.docsbot-search-results .docsbot-result-item,
			.docsbot-result-item {
				margin: 0 !important;
				padding: 10px 12px !important;
				background: #fff !important;
				border: none !important;
				border-bottom: 1px solid #eee !important;
				cursor: pointer !important;
				position: relative !important;
				display: block !important;
				list-style: none !important;
				transition: background-color 0.2s ease;
			}

			.docsbot-result-item:last-child {
				border-bottom: none !important;
			}

			.docsbot-search-results .docsbot-result-item:hover,
			.docsbot-result-item:hover {
				background: var(--docsbot-hover-bg) !important;
			}


			/* Result link container */
			.docsbot-result-item .docsbot-result-link,
			.docsbot-result-link {
				text-decoration: none !important;
				display: block !important;
				color: inherit !important;
			}

			/* Result title */
			.docsbot-result-item .docsbot-result-title,
			.docsbot-result-title {
				font-size: 14px !important;
				line-height: 1.4 !important;
				color: var(--docsbot-link) !important;
				font-weight: 500 !important;
				display: block !important;
				margin-bottom: 4px !important;
			}

			/* Summary text */
			.docsbot-result-item .docsbot-result-summary,
			.docsbot-result-summary {
				font-size: 13px !important;
				line-height: 1.4 !important;
				color: var(--docsbot-text-secondary) !important;
				font-weight: normal !important;
				display: -webkit-box !important;
				-webkit-line-clamp: 2;
				-webkit-box-orient: vertical;
				overflow: hidden !important;
				text-overflow: ellipsis;
			}

			.docsbot-result-item:hover .docsbot-result-title {
				text-decoration: underline !important;
			}

			.docsbot-result-link:focus {
				outline: 2px solid var(--docsbot-link);
				outline-offset: 2px;
			}


			/* Results header with close button */
			.docsbot-results-header {
				display: flex !important;
				align-items: center !important;
				justify-content: space-between !important;
				padding: 8px 12px !important;
				background: #fafafa !important;
				border-bottom: 1px solid #eee !important;
				margin: 0 !important;
			}

			.docsbot-close-button {
				/* Reset all button styles */
				all: initial;
				/* Apply our styles */
				display: inline-flex !important;
				align-items: center !important;
				justify-content: center !important;
				width: 20px !important;
				height: 20px !important;
				min-width: 20px !important;
				min-height: 20px !important;
				max-width: 20px !important;
				max-height: 20px !important;
				padding: 0 !important;
				margin: 0 !important;
				margin-left: 8px !important;
				border: 1px solid #ccc !important;
				background: #fff !important;
				font-family: Arial, sans-serif !important;
				font-size: 16px !important;
				font-weight: normal !important;
				line-height: 1 !important;
				color: #666 !important;
				cursor: pointer !important;
				border-radius: 3px !important;
				transition: all 0.2s ease !important;
				box-sizing: border-box !important;
				flex-shrink: 0 !important;
				text-decoration: none !important;
				text-transform: none !important;
				letter-spacing: normal !important;
			}

			.docsbot-close-button:hover {
				background: #f0f0f0 !important;
				border-color: #999 !important;
				color: #333 !important;
				transform: none !important;
			}

			.docsbot-close-button:focus {
				outline: 2px solid var(--docsbot-link) !important;
				outline-offset: 1px !important;
			}

			.docsbot-close-button:active {
				background: #e0e0e0 !important;
			}

			/* Simple results header */
			.results-found {
				display: inline-block !important;
				padding: 0 !important;
				margin: 0 !important;
				font-size: 13px !important;
				color: var(--docsbot-text-secondary) !important;
				background: transparent !important;
				border: none !important;
				flex-grow: 1 !important;
			}



			.results-found.message-no_results {
				text-align: center;
				padding: 20px;
				background: #fafafa;
				border-bottom: none;
			}

			.results-found.message-minlength,
			.results-found.message-enter_search {
				color: #996800;
				background: #fff9e6;
			}

			/* Simple error state */
			.error-message {
				color: #d73502;
				padding: 12px;
				background: #ffebe9;
				border: 1px solid #ffc9c5;
				font-size: 13px;
				text-align: center;
			}

			/* Simple loading state */
			.docsbot-searching {
				/* Class added to wrapper during search */
			}

			/* Simple keyboard navigation */
			.docsbot-result-item.keyboard-focused {
				background: var(--docsbot-hover-bg) !important;
				outline: 2px solid var(--docsbot-link);
				outline-offset: -2px;
			}


			/* Responsive design */
			@media (max-width: 640px) {
				.docsbot-search-wrap {
					max-height: 250px;
				}

				.docsbot-search-results {
					max-height: 250px !important;
				}
			}

		</style>
		---
title: "GravityKit Support"
date: 2014-06-27
author: "GravityKit"
link: "https://www.gravitykit.com/support/"
---

# GravityKit support

Choose how you would like to receive support:

[ Human Support](#human-support)[ Self-Service](#self-service)---

##  Our Professional & Friendly Support

We’re here to help you achieve your goals!

*We respond to 75% of tickets within 6 hours and all tickets within 24 business hours.*

### Contact GravityKit

 

##  Self-Service

If you want immediate answers to basic questions, our AI chatbot may be able to help. [**Click here for a full-page experience**](https://www.gravitykit.com/chatbot/).

*Note: AI responses may not be accurate. If you have a complex request, please contact our human support team!*