.notebookdropdown {

display:inline-block;
font-weight: 400;
line-height: 100%;

}

.notebookdropdown_button {
    position: relative;
    white-space: nowrap;
    color: white;
    text-align: left;
    width: 260px;
    padding-left: 12px;
    padding-right: 30px;
    padding-top: 3px;
    padding-bottom: 3px;
    display: inline-block;
    
    overflow-x: hidden;
    background-color: rgb(26,28,32);
    font-size: 14px;
    height: 34px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(43,44,48);
    box-sizing: border-box;
    border-radius: 3px;
   line-height: 27px;
   overflow: hidden;
}
.dropdown_with_value .notebookdropdown_button {
 
    
    overflow-y: hidden;
}
.notebookdropdown_button_small {
  width: 80px;
}
.notebookdropdown_button:after{
  content: ' ';
    background-image: url(../img/notebookdropdown_icon.png);
    background-size: 25px;
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    background-color: rgb(26,28,32);
    height: 100%;
    width: 36px;
    position: absolute;
    right: 0;
    top: 0;
}
.notebookdropdown_button:hover:after {
  background-image: url(../img/notebookdropdown_icon2.png);
}

.notebookdropdown-options {
  display: none;
   border-color: rgb(43,44,48);;
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
  background-color: rgb(26,28,32);
  box-shadow: 0px 7px 20px rgba(0,0,0,0.1);
  
  list-style-type: none;
  padding:0px;
 
  text-align: left;
  max-height: 330px;
  min-width: 260px;
  overflow-y:auto;
  overflow-x:hidden;
  position: absolute;
  margin:0;
  z-index:9999;

}
.notebookdropdown-options li {
  display: block;
  line-height: 150%;
  margin: 0;
    font-size: 14px;
    display: block;
    padding: 6px;
    padding-left: 30px;
    padding-right: 12px;
    min-width: 199px;
    color: #b7b7b7;
}
.notebookdropdown-options li.option_not_available {
  color:#717171;cursor: help !important;
}
.notebookdropdown_button.option_not_available {
  color:#fa9191;
}
.notebookdropdown-options .dropseparator {
  font-size: 14px;
    display: block;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 204px;
    color: rgb(177, 177, 177);
    user-select: none;
    text-transform: uppercase;
}

.notebookdropdown-options li:hover {
  background-color: rgb(45,47,51);
   transition-property: background-color;
    transition-duration: 0.15s;
    transition-timing-function: linear;
}
li.notebookdropdown-selected {
  background-image: url(../img/notebookcheck.png);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: 10px;
    color:white;
}
.notebookdropdown-title {
  font-size: 12px;
    color: rgb(100,100,100);
    padding: 6px;
}
.notebookdropdown-options input {
  margin: 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-right: -5px;
    padding: 8px;
    padding-right: 50px;
    vertical-align: top;
    font-size: 14px;
    border: 0;
    border-bottom-style: solid;
    border-bottom-color: rgb(230,230,230);
    border-bottom-width: 1px;
    width: 100%;
    color: rgb(80,80,80);
    height: 47px;
    
    background: url(../img/search.png) no-repeat ;
    background-size: 16px;
    background-position: top 16px right 16px;
  
}  

.notebookdropdown-options input:focus {
outline: 0;


}

.dropblock {
  width: 360px;
  height: 48px;
  margin-right: 24px;
  display: inline-block;
}

.block:last-child,.dropblock:last-child {
  margin-right: 0px;
}


.notebookdropdown-options::-webkit-scrollbar       {background-color:rgb(26,28,32);width:18px}
.notebookdropdown-options::-webkit-scrollbar-track {background-color:rgb(26,28,32)}
.notebookdropdown-options::-webkit-scrollbar-thumb {background-color:rgb(100,100,100);border-radius:6px;border:4px solid rgb(26,28,32)}
.notebookdropdown-options::-webkit-scrollbar-thumb:hover {background-color:rgb(145,145,145); !important;}


@media only screen and (max-height : 800px) {
.notebookdropdown-options {
  max-height: 198px;
}  
}
