﻿/* ****************************************** */
/* 01 Twitter Typeahead */
/* 02 Pagination */
/* ****************************************** */


/* ****************************************** */
/* Twitter Typeahead */
/* ****************************************** */
span.twitter-typeahead .tt-suggestion {
    display: block;
    width: 100%;
    padding: 0;
    clear: both;
    font-weight: normal;
    line-height: 1.5;
    color: #373a3c;
    text-align: inherit;
    background: none;
    border-bottom: 1px solid #f2f2f2;
}

.dropdown-menu, span.twitter-typeahead .tt-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 256px;
    width: 450px;
    padding: 0;
    margin: 2px 0 0;
    font-size: 14px;
    color: #373a3c;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    white-space: normal !important;
}

@media screen and (min-width: 415px) and (max-width: 768px) {
    .dropdown-menu, span.twitter-typeahead .tt-menu {
        width: 375px;
    }
}

/* iphone 6/7/8/X*/
@media screen and (min-width: 321px) and (max-width: 414px) {
    .dropdown-menu, span.twitter-typeahead .tt-menu {
        width: 315px;
    }
}

/* iphone 5 */
@media screen and (max-width: 320px) {
    .dropdown-menu, span.twitter-typeahead .tt-menu {
        width: 250px;
    }
}

/* ****************************************** */
/* Pagination */
/* ****************************************** */
.paginationjs {
    display: -ms-flexbox !important;
    display: flex !important;
    flex-direction: row;
    /*-ms-flex-pack: center !important;
    justify-content: center !important;*/
}

    .paginationjs li {
        border-radius: 0px !important;
        margin: 0px .25rem 0px .25rem;
        border: 1px solid rgba(0, 0, 0, 0.15) !important;
    }

        .paginationjs li.paginationjs-prev {
            margin-left: 0px;
        }

        .paginationjs li.active {
            border: none !important;
        }

            .paginationjs li.active a {
                border-radius: 0px !important;
                border: none !important;
                background-color: var(--action-button) !important;
                border-color: var(--action-button) !important;
            }

    .paginationjs .disabled {
        cursor: not-allowed;
    }
