
.loader {
  border: 16px solid #000000;
  border-radius: 50%;
  border-top: 16px solid #D6FF30;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  margin: 0 auto;
	
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.vertical-alignment-helper {
    display:table;
    height: 100%;
    width: 100%;
}
.vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
}
.loader-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
	position:relative;
    width:inherit;
    height:inherit;
    /* To center horizontally */
    margin: 0 auto;
}

.tab-pane {
	padding-top: 10px;
}

.isHidden {
	display: none;
}

@media (max-width:768px){
	
	h1{
		font-size: 20pt;
	}
	
	h2{
		font-size: 16pt;
	}
	
	h3{
		font-size: 12pt;
	}
	
	.tab-text {
		
		display: none;
	}
	
	.container .row:first-child {
		margin-top: 50px !important;
		margin-bottom: 10px !important;
	}
}

.twitter-typeahead {
width: 100% ;
}

.typeahead, .tt-query, .tt-hint {
margin-top: 5px;
}
.typeahead {
	 background: rgba(255, 255, 255, 1);
}
.typeahead:focus {
	border: 2px solid #0097CF;
}
.tt-query {
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}
.tt-hint {
	 color: #fff;
}
.tt-menu {
	background: rgba(255, 255, 255, 1);
	border: none;
	border-radius: 4px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	margin-top: 12px;
	padding: 8px 0;
	width: 100%;
}
.tt-suggestion {
	font-size: 16px;  /* Set suggestion dropdown font size */
	padding: 3px 20px;
}
.tt-suggestion:hover {
	cursor: pointer;
	background-color: #007DD2;
	color: #FFFFFF;
}
.tt-suggestion p {
	margin: 0;
}