.loader,
.small-loader {
    background: #fff;
    box-shadow: 2px 2px 1px rgba(0, 0, 0, .3)
}

.loader {
    margin: 0 auto;
    position: fixed;
    top: 400px!important;
    bottom: auto;
    left: 50%;
    right: auto;
    width: 56px;
    height: 56px;
    z-index: 1000;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px
}

.loader:before {
    content: '';
    display: block;
    padding-top: 100%
}

.small-loader {
    position: relative;
    width: 40px;
    height: 40px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px
}

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round
}

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

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

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}

@-webkit-keyframes color {
    0%,
    100% {
        stroke: #d62d20
    }
    40% {
        stroke: #0057e7
    }
    66% {
        stroke: #008744
    }
    80%,
    90% {
        stroke: #ffa700
    }
}

@keyframes color {
    0%,
    100% {
        stroke: #d62d20
    }
    40% {
        stroke: #0057e7
    }
    66% {
        stroke: #008744
    }
    80%,
    90% {
        stroke: #ffa700
    }
}

.search-bar .tt-menu {
    z-index: 8889;
    /*list-style-type: none;*/
    width: 100%;
    /*margin: 0;*/
    /*padding: 0;*/
    background: #ffffff;
    /*border: 1px solid #d4d4d4;*/
    /*border-radius: 3px;*/
    /*-webkit-box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);*/
    /*box-shadow: 0px 4px 7px 0px rgba(0, 0, 0, 0.1);*/
    /*overflow: hidden;*/
}

.search-bar .tt-menu .title {
    width: calc(100% - 35px);
    padding-left: 8px;
    white-space: nowrap;
    /* The text-overflow property is supported in all major browsers. */
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-align: left;
}

.search-bar .tt-menu .thumbnail {
    display: block;
    width: 32px;
    height: 32px;
    margin: 3px 0 3px 3px;
    padding: 0;
    text-align: center;
}

.search-bar .tt-cursor {
    background-color: #23527c!important;
    color: #FFFFFF !important;
}


.twitter-typeahead {
    width: 100%;
}