﻿/*

http://code.cwwonline.be/serviceddlistjquery

*/

.ddListContainer ul li{
  font-size: 14px;
  line-height: 18px;
  padding-left: 0;
}

.ddListContainer {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
  font-size: 14px;
  line-height: 18px;

}


#ddList-programme{
  margin-right: 10px;
}

/* The 'selection' rectangle of the dropdownlist */
.ddListContainer > a {
  border: solid 1px #bababa;
  cursor: pointer; 
  background: #eeeeee;
  overflow: hidden;
  display: block;
  padding: 0.8333em 30px 0.8333em 0.8333em;
  color: #006c68;
  font-weight: normal;
  border-radius: 5px;
  text-decoration:none;

  
}


.ddListContainer > a:hover {
  /*border: solid 1px #808080;*/
  color: #c1d72e;
  font-weight: normal;
}
.ddListContainer.ddListDisabled > a {
  /*border: solid 1px #e0e0e0;*/
  cursor: default; 
  background: #f8f8f8;
  color: #999;
}

/* The 'selection' rectangle of the dropdownlist when open */
.ddListIsOpen > a,
.ddListIsOpen > a:hover {
  /*border:solid 1px #212121;*/
  background-color:#001B56;
  color:#ffffff;
}

/* The right arrow in the 'selection' rectangle of the dropdownlist */
.ddListArrow {
  width: 0;
  height: 0;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -4px;
  border: solid 7px transparent; 
  border-top: solid 7px #505050;
  pointer-events: none;
}
.ddListDisabled .ddListArrow {
  border-top: solid 7px #999;
}
.ddListIsOpen .ddListArrow {
  border: solid 7px transparent !important; 
  border-bottom: solid 7px #ffffff !important; 
  margin-top: -11px;
}

/* The 'options' list of the dropdownlist */
.ddListContainer > ul {
  display: none;
  position: absolute;
  z-index: 2000;
  /*border: solid 1px #212121;*/
  border-top: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: auto;
  -moz-box-shadow: 0 1px 5px #ddd;
  -webkit-box-shadow: 0 1px 5px #ddd;
  box-shadow: 0 1px 5px #ddd;
  max-height: 400px;
  /* background: red;*/
}


.ddListContainer > ul li { 
  margin-bottom: 0;
}
.ddListContainer > ul > li:last-child > a {
  border-bottom: none;
}

/* Any 'option' inside the 'options' list of the dropdownlist */
.ddListContainer > ul li a {
  padding: 0.8333em;
  display: block;
  overflow: hidden;
  text-decoration: none;
  font-weight: normal;
  color: #333;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background: #eee;
}
.ddListContainer > ul li a:hover { 
  background: #d0d0d0; 
  color: #404040; 
}

/* A 'selected' option inside the 'options' list of the dropdownlist */
.ddListOptionIsSelected { 
  background: #eff4f5; 
}

/* List header when open */
.ddListIsOpen > a > label{
  color: #FFFFFF!important;

}

/*
.ddListContainer .ddListIsOpen > a > label{
  color: #FFFFFF!important;

}
*/

/*
.ddListIsOpen label{
  color: #FFFFFF;
}
*/


/* Additional styling of text, img, description for 'selection' and 'option' */
.ddListContainer:not(.ddListDisabled) > a > label,
.ddListContainer:not(.ddListDisabled) > ul li a > label {
  cursor: pointer;
}
.ddListContainer > a > label { 
  font-weight:normal;
  color:#001B56;
  
}
.ddListContainer > a > small,
.ddListContainer > ul li a > small {
  color:#aaa;
  display:block;
  overflow: hidden;
  font-weight:normal;
  line-height: 1.4em;
}
.ddListContainer > a > img,
.ddListContainer > ul li a > img {
  vertical-align: middle; 
  float: left;
  margin-right: 5px; 
  max-width: 64px;
}

#ddList-project_title > ul {
    max-height: 400px;
}

.ddListContainer {
  ul li{
    padding-left: 0;
  }
}

