.customdropcontainer{
    width: 100%;
    display: flex;
    justify-content: center;
}

.customdropcontainer .fa-chevron-down{
	color:black;
}   

.dropbtn{			
	background: white;
/*     color: #ACACAC; */
    font-size: 10px;
    font-weight: 500;
/*     border: none; */
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    height: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 4px 10px -2px #BBBBBB;
    font-size:1em;

    border-color: rgb(0, 32, 96);
    border-style: solid;
    border-width: 1px;
    color: rgb(0, 32, 96);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 400px;
    
}

.dropbtn div {
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}

.dropbtn svg{
	margin-right:10px;
}
/* .dropbtn:hover{ */
/*     background: rgb(0,32,96); */
/* } */

.dropdown-content-container {
	background: white;
    border-radius: 10px;
    box-shadow: 4px 7px 10px -2px #BBBBBB;
    overflow: hidden;
    width: 80%;
    margin: auto;
}

input.txtCatFilter::placeholder {
    color: #002060;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-content p {
    text-align: left;
	margin: auto;
    padding: .75rem;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-content p:nth-child(odd){
	background: white;;
	color:rgb(0,32,96);
}

.dropdown-content p:nth-child(even){
	background: #bfcff024;
}

.dropdown-content p:hover {
	background-color:#adddf9;
	cursor:pointer;
}

.dropdown-content{
    background-color: #f6f6f6;
    overflow-y: scroll;
    scrollbar-width: thin;
    max-height: 160px;
    margin:auto;
    text-align: center;
}

.arrow-div {
	display:none;
    position: absolute;
    top: 115%;
    z-index: 2;
    width: 90%;
    left: 50%;
    border-width: 1px;
    border-style: solid;
    border-color: darkgray;
    border-radius: 10px;
    padding: 5px;
    background: white;
    transform: translateX(-50%);
    
}

.arrow-div:after, .arrow-div:before {
	bottom: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow-div:after {
	border-color: rgba(241, 241, 241, 0);
	border-bottom-color: #f1f1f1;
	border-width: 13px;
	margin-left: -13px;
}
.arrow-div:before {
	border-color: rgba(221, 221, 221, 0);
	border-bottom-color: #DDDDDD;
	border-width: 20px;
	margin-left: -20px;
}

.txtCatFilter{
	font-size: 15px;
    border: none;
    border-bottom: 1px solid #ddd;
    width: 90%;
    margin-bottom: 8px;
    margin-top: 8px;
    border-radius: 5px;
    border-color: #002060;	
}

.filterLbl {
 	font-size:14px;
 	font-weight:500;
}