/* Fonts
*****************************************************************/
/* Palette
*****************************************************************/
/* Text
*****************************************************************/
/* Background
*****************************************************************/
/* Layout
*****************************************************************/
/* Margins
******************************************************************************/
/* Mixins
*****************************************************************/
dcom-dropdown .dropdown {
  position: relative;
}
dcom-dropdown .dropdown .icon-down-arrow-thick {
  font-size: 0.5em;
}
dcom-dropdown .dropdown .dropdown-toggle *:focus {
  outline: 0;
}
dcom-dropdown .dropdown .dropdown-menu {
  z-index: 10001;
  width: 250px;
  position: absolute;
  display: block;
  visibility: hidden;
  opacity: 0;
  padding: 0;
  border-radius: 3px;
  border: none;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
  background: #F8F8F8;
  text-align: left;
  -moz-transition: all 100ms ease-in-out;
  -o-transition: all 100ms ease-in-out;
  -webkit-transition: all 100ms ease-in-out;
  transition: all 100ms ease-in-out;
}
dcom-dropdown .dropdown .dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
  margin-top: 0;
}
dcom-dropdown .dropdown .dropdown-menu li:first-child > a {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
dcom-dropdown .dropdown .dropdown-menu li:last-child > a {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
dcom-dropdown .dropdown .dropdown-menu li > a {
  display: block;
  padding: 10px 15px;
  cursor: pointer;
}
dcom-dropdown .dropdown .dropdown-menu li > a.active, dcom-dropdown .dropdown .dropdown-menu li > a:hover {
  background: #49AAFF;
  color: #fff;
}
dcom-dropdown .dropdown .dropdown-menu:after, dcom-dropdown .dropdown .dropdown-menu:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
}
dcom-dropdown .dropdown .dropdown-menu:after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #F8F8F8;
  top: -7px;
  left: 20px;
}
dcom-dropdown .dropdown .dropdown-menu:before {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #CCCCCC;
  top: -8px;
  left: 19px;
}
dcom-dropdown .dropdown.open > .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

dcom-dropdown-overlay a {
  display: none;
}
dcom-dropdown-overlay a.visible {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}
