
/*-------------------------- ------------ ------------ 
------------ ------------ ------------ ------------ 
------------ ------------  Record Tab ---------------*/

.single-company--item {
    padding: 10px 10px 10px 10px !important;
    background: #FFFFFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 10px;


  }
  
  .single-company--logo {
    margin-top:20px;
    max-height: 80px;
    height: 100%;
    background-color:black;
    border-radius: 50%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)
    
  }
  
  .single-company--title {
    margin-top:20px;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 34px;
    color: #FFFFFF ;
  }

  .single-company--title a{
    color: #FFFFFF !important;
    text-decoration: none;
  }
 
  
  .single-company--type {
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 27px;
    color: #FFFFFF;
  }
  
  .single-company--label {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #18214D;
    margin: 0;
  }
  
  .single-company--info {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
    color: #378CEF;
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
  }
  
  .single-company--tags {
    margin-top: 20px;
    display: flex;
    align-items: center;
  }
  
  .single-company--tag {
    margin-top:10px;
    margin-bottom: 10px;
    font-style: normal;
    font-weight: normal;
    font-size: 10px;
    line-height: 15px;
    color: #18214D;
    padding: 3px 8px;
    text-align: center;
    background: #EFF2F6;
    border-radius: 11px;
    margin-right: 10px;
  }
  
  .fix-height { min-height:78px; }


  /*-------------------------- ------------ ------------ 
------------ ------------ ------------ ------------ 
------------ ------------ Pagination ---------------*/


button {
    font-family: proxima-nova, sans-serif;
}

.fl-filter-btn {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 16px;
    text-align: left;
    background: white;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.fl-filter-btn.open {
    border-color: #f1f3f4;
    background: #f1f3f4;
}

.fl-sort-icon,
.fl-filter-icon {
    margin-right: 8px;
    width: 20px;
    fill: #5f6368;
}

.fl-filters-active {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    background: #3c4043;
    color: white;
}

.fl-filters-active.empty {
    display: none;
}

.fl-filter-button-wrapper > * ~ * {
    margin-left: 10px;
}

.fl-filter-buttons {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template: 1fr / 1fr 1fr;
    grid-gap: 40px;
    background: white;
}

.fl-filter-button-wrapper:nth-child(2) {
    display: flex;
    justify-content: flex-end;
}

.fl-view-btn,
.fl-sort-btn {
    box-sizing: border-box;
    height: 40px;
    border: 1px solid #55de65;
    border-radius: 8px;
    font-size: 16px;
    background: white;
}

.fl-filter-dropdown {
    height: 0;
    pointer-events: none;
    transition: all 0.2s ease;
}

.fl-filter-dropdown.open {
    pointer-events: all;
}

.fl-filter-dropdown-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    padding-top: 40px;
}

@media (max-width: 980px) {
    .fl-filter-dropdown-wrapper {
        grid-template-columns: 1fr 1fr;
        grid-auto-flow: row;
    }
}

@media (max-width: 768px) {
    .fl-filter-dropdown-wrapper {
        grid-template-columns: 1fr;
    }
}

.fl-filter-title {
    font: 16px sans-serif;
}

.fl-filter-input {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    border-radius: 8px;
    font-size: 16px;
    background: white;
}

.fl-search-filter {
    padding: 0 20px 0 50px;
    border: none;
    background: #f1f3f4;
    outline: none;
    transition: all 0.2s ease;
}

.fl-search-filter:hover,
.fl-search-filter:focus {
    box-shadow: 0 0 0 4px rgba(69, 209, 81, 0.1);
    background: white;
}

.fl-select-filter {
    border: 1px solid #7fea86;
}

/* Search */

.fl-search-filter-wrapper {
    position: relative;
}

.fl-search-svg {
    position: absolute;
    top: 50%;
    left: 20px;
    display: block;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
}

.fl-search-svg circle,
.fl-search-svg line {
    fill: none;
    stroke: rgb(116, 221, 105);
    stroke-width: 2;
    stroke-miterlimit: 10;
    vector-effect: non-scaling-stroke;
    transition: stroke 0.2s ease;
}

/*
|---------------------------------------
| Select
|---------------------------------------
*/

.fl-select-label {
    margin-bottom: 10px;
}

.fl-select-reset {
    padding: 0;
    border: none;
    border-radius: 5px;
    float: right;
    background: none;
    color: #9aa0a6;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fl-select-reset:hover {
    color: #6ae28c;
}

.fl-select-reset.hidden {
    opacity: 0;
    pointer-events: none;
}

.fl-select-wrapper {
    position: relative;
}

/* Button */

.fl-select-btn {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    padding: 0 40px 0 20px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 16px;
    text-align: left;
    background: white;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.fl-select-btn:hover {
    box-shadow: 0 0 0 4px rgba(255, 64, 0, 0.1);
    border-color: rgba(97, 223, 122, 0.1);
}

.fl-select-btn__arrow {
    position: absolute;
    right: 20px;
    top: 15px;
    fill: gray;
    width: 10px;
    height: 10px;
    margin: 0;
    transition: transform 0.2s ease;
}

.fl-select-wrapper.open .fl-select-btn__arrow {
    transform: rotate(180deg);
}

/* Dropdown */

.fl-select-dropdown {
    position: absolute;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    min-width: 180px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    margin-top: 10px;
    background: white;
    opacity: 0;
    transform: translatey(-10px);
    pointer-events: none;
    transition: all 0.1s ease;
}

.fl-select-wrapper.open .fl-select-dropdown {
    opacity: 1;
    transform: translatey(0);
    pointer-events: all;
}

.fl-select-dropdown ul {
    padding: 20px 10px;
    margin: 0;
    list-style: none;
}

.fl-select-dropdown input {
    position: absolute;
    visibility: hidden;
}

.fl-select-dropdown label {
    display: block;
    padding: 8px 10px;
    border-radius: 5px;
    color: #4e95dd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fl-select-dropdown input:checked ~ label {
    color: #9a6c95;
}

.fl-select-dropdown label:hover {
    background: #2c3e50 !important;
    color: #ffffff !important;
}

/* View Button */

.fl-view-select {
    display: inline-block;
}

/*
|---------------------------------------
| Post Items
|---------------------------------------
*/

.fl-post-container {
    margin-top: 40px;
}

.fl-post-container__inner {
  
    background: white;
}


.list-group-item{

    border: none !important;
    background-color: #ffffff;
    
    
}


.single-company--type a{

    text-decoration: none;
    color: white;
    
}

.scroll {
    margin:4px, 4px;
    padding:4px;
    
    
    height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    text-align:justify;
}

@media (max-width: 980px) {
    .fl-post-item {
        width: 100%;
        padding: 5px 5px 5px 5px;
    }
}


.pagination li:hover{
    cursor: pointer;
}
		table tbody tr {
			display: none;
		}


        .badge-danger{

            background: #8E2DE2;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #4A00E0, #8E2DE2);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #4A00E0, #8E2DE2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */


        }