﻿/*
For instance level customizations sub off of this selector:
.tt-dataset-{cache_key}
*/
.tt-dataset {
    min-width: 600px;
    font-size: 1.1em;
}
.tt-header {
    cursor: pointer;
    padding: 5px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #68a;
    font-weight: bold;
    text-decoration: underline;
    text-align: center;
}
.tt-header:hover {
    color: #5d9dc3;
    text-decoration:none;
}
.tt-dropdown-menu {
    background-color: white;
    border: 1px solid #000;
    padding: 0px;
}
.tt-suggestion {
    -moz-transistion: all linear 0.25s;
    -o-transform: all linear 0.25s;
    -webkit-transform: all linear 0.25s;
    transition: all linear 0.25s;
    padding: 10px;
    border-top: 1px dashed #666;
}
.tt-suggestion:hover {
    -moz-transistion: all linear 0.25s;
    -o-transform: all linear 0.25s;
    -webkit-transform: all linear 0.25s;
    transition: all linear 0.25s;
    font-size: 1.05em;
    background-color: #7dbde3;
    color: #fff;
}
.tt-suggestion:first-child {
    border: 0px;
}
.tt-suggestion.selected {
    background-color: #5d9dc3;
    font-size: 1.05em;
    color: #fff;
}
.tt-loading {
    display: none;
}
.tt-is-under-cursor {
    border: 2px solid yellow;
    background: #ddd;
}
.tt-suggestion:first-child.tt-is-under-cursor {
    border: 2px solid yellow;
}