﻿   /* Force Select2 to behave like Bootstrap input */
.select2-container .select2-selection--single {
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 34px !important;
}

/* Align Go button nicely */
.btn-go {
    height: 34px;
    padding: 6px 15px;
}

/* Remove search icon inside Select2 search box */
.select2-search__field {
    background-image: none !important;
    padding-left: 8px !important;
}

/* If theme adds icon via pseudo elements */
.select2-search:before,
.select2-search:after {
    display: none !important;
	content: none !important;
}

  .loader {
            position: fixed;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            z-index: 9999;
            background: url('../../Content/pageloader.gif') 50% 50% no-repeat rgb(249,249,249);
        }

        .theme-color {
            color: #26a69a;
        }

               /* Navbar search */
.navbar-search-container {
    padding: 8px 10px;
}

.navbar-search {
    position: relative;
    width: 280px;
}

.navbar-search input {
    width: 100%;
    height: 36px;
    padding: 0 35px 0 35px;
    border-radius: 20px;
    border: none;
    outline: none;
    background: #2f2f2f;
    color: #fff;
}

.navbar-search input::placeholder {
    color: #aaa;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 10px;
    color: #aaa;
}

.clear-search {
    position: absolute;
    right: 12px;
    top: 10px;
    cursor: pointer;
    color: #aaa;
}

.navbar-search-wrapper {
    position: relative;
}

#searchResultPanel {
    display: none;
    position: absolute;
    top: 45px; /* below textbox */
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-height: 300px;
    overflow-y: auto;
}

/* result item */
.search-item {
    padding: 10px 12px;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
    font-size: 13px;
    color:black;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: #f5f7fa;
}
