

/* $Id$ */
.f_popup_content {
    padding: 25px;
}
.f_group {
    display: flex;    
    align-items: flex-start;
    flex-flow: row wrap;
    justify-content: center
}
.f_filter {
    display: flex;
    align-items: flex-start;
    flex-flow: row wrap;
    justify-content: center;
    /* padding: 5px; */
    /* margin: 5px; */
    background-color: initial;
    /* border-radius: 2px; */
    /* border: 1px solid #f3f3f3; */
    /* min-width: 40%; */
    cursor: pointer;  
}
.f_filterbutton {
    background-color: initial;     
}
.f_footer {
    display: flex;
    margin: 5px;
    padding: 20px;
}
.f_dropdown {
    position: relative;
    display: inline-block;
    line-height: 2.3rem;
}
.f_dropdown-content {
    display: none;
    position: absolute;
    background-color: #fcfcfc;
    min-width: 200px;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    right: 0px;    
    /* bottom: 50px; */
} 
.f_dropdown_left {    
    left: 0px !important
} 
.dropdown_seperator div {
    border-bottom: 1px solid #bbb;
}
.dropdown_seperator, .dropdown_seperator div {
    background-color: #fcfcfc !important;
    color: #999;
    cursor: default !important;        
}
.dropdown_seperator:hover, .dropdown_seperator div:hover{
    background-color: #fff !important;   
    cursor: default !important;  
}
.dropdown_icon {
    width   : 20px;
    height  : 20px;
  }
.f_dropdown-content div {
    padding: 2px;
    margin: 2px;
    /* background-color: #fff; */
}
.f_dropdown-content div:hover {        
    background-color: #f3f3f3;
    cursor: pointer;
}
.f_dropdown-content a {
    color: black;
    padding: 2px 2px;
    text-decoration: none;
    display: block;    
}
.f_dropdown-content a:hover {
    background-color: initial;
}
/* .dropdown:hover .dropdown-content {
    display: block;
} */
.f_dropdown:hover .dropbtn {
    background-color: initial
}
.f_modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */    
    background-color: rgba(0,0,0,0.01); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .f_modal-content {
    background-color: #fefefe;
    margin: 25%auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #fafafa;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.10), 0 3px 5px rgba(0, 0, 0, 0.12);
    width: 50%; /* Could be more or less, depending on screen size */
  }
  
  