/**
 *
 *	=Structure
 *
 *	================================================================ */
/**
 *	=General
 *	---------------------------------------------------------------- */
.adropdown {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  line-height: 1.5;
  margin: 10px;
  flex: 1;
}
.adropdown a {
  text-decoration: none;
}
/**
 *	=Toggle
 *	---------------------------------------------------------------- */
.adropdown-toggle {
  background: #ffffff;
  display: inline-block;
  text-decoration: none;
  position: relative;
  font-size: 15px;
  padding: 8.75px 20px;
  margin: 0;
  /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); */
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid black;
}
.adropdown-toggle .adropdown-icon {
  height: 2px;
  width: 8px;
  opacity: 0.6;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}
.adropdown-toggle .adropdown-icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid;
}
.adropdown-toggle .adropdown-text {
  display: inline-block;
  vertical-align: middle;
}
.adropdown-toggle img {
  vertical-align: middle;
}
/**
 *	=Containers
 *	---------------------------------------------------------------- */
.adropdown-menu-wrapper {
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.adropdown-menu-container {
  position: relative;
  width: 300px;
  max-width: 100%;
  width: 100%;
}
.adropdown-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
}
.adropdown-menu-main,
.adropdown-menu-open {
  display: block;
}
.adropdown-menu-open {
  position: relative;
}
.adropdown-menu-wrapper {
  position: absolute;
  z-index: 999;
  display: none;
  opacity: 0;
}
.adropdown-below .adropdown-menu-wrapper {
  top: 100%;
  bottom: auto;
  margin: 3px 0 0;
  width: 100%;
}
.adropdown-above .adropdown-menu-wrapper {
  bottom: 100%;
  top: auto;
  margin: 0 0 3px;
}
.adropdown-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
}
.adropdown-animating .adropdown-mask {
  display: block;
}
.adropdown-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  opacity: 0;
}
/**
 *
 *	=Menu styles
 *
 *	================================================================ */
/**
 *	=Header
 *	---------------------------------------------------------------- */
.adropdown-header {
  position: relative;
  min-height: 25px;
  padding: 12.5px 50px;
  margin: 0;
  border-bottom: 1px solid #cccccc;
}
.adropdown-menu-main .adropdown-header {
  display: none;
}
.adropdown-title {
  font-size: 15px;
  text-align: center;
  line-height: 25px;
  padding: 0;
  margin: 0;
}
/**
 *	=Buttons
 *	---------------------------------------------------------------- */
.adropdown-close,
.adropdown-back {
  position: absolute;
  text-decoration: none;
  top: 0;
  font-weight: bold;
  color: #aaaaaa;
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.adropdown-close .adropdown-text,
.adropdown-back .adropdown-text {
  display: none;
}
.adropdown-back {
  left: 0;
}
.adropdown-back .adropdown-icon:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid;
}
.adropdown-menu-main .adropdown-back {
  display: none;
}
.adropdown-close {
  display: none;
  right: 0;
}
.adropdown-close .adropdown-icon:after {
  font-family: sans-serif;
  content: "\00d7";
}
/**
 *	=List
 *	---------------------------------------------------------------- */
.adropdown-list,
.adropdown-item {
  list-style-type: none;
  font-size: inherit;
}
.adropdown-list {
  overflow: hidden;
  text-align: left;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 10px 0;
  scrollbar-width: thin;
  height: 100% !important;
}

.adropdown-list::-webkit-scrollbar {
  width: 5px;
}

.adropdown-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.adropdown-list::-webkit-scrollbar-thumb {
  background: #ccc;
}

.adropdown-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.adropdown-item {
  padding: 0;
  margin: 0 0 1px;
}
.adropdown-item:last-child {
  margin-bottom: 0;
}
/**
 *	=Labels
 *	---------------------------------------------------------------- */
.adropdown-label {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  margin: 20px 0 0;
}
.adropdown-label:first-child {
  margin-top: 0;
}
/**
 *	=Dividers
 *	---------------------------------------------------------------- */
.adropdown-divider {
  border-bottom: 1px solid #e0e0e0;
  margin: 10px 0;
}
.adropdown-divider:first-child,
.adropdown-divider:last-child {
  display: none;
}
.adropdown-divider + .adropdown-label {
  margin-top: 10px;
}
.adropdown-divider:first-child + .adropdown-label {
  margin-top: 0;
}
/**
 *	=Items
 *	---------------------------------------------------------------- */
.adropdown-link {
  display: block;
  position: relative;
  font-size: 15px;
  text-decoration: none;
  padding: 10px 20px;
}
.adropdown-parent .adropdown-link:after {
  content: "";
  opacity: 0.6;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -4px;
  display: inline-block;
  vertical-align: middle;
  border-left: 4px solid;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
}
.adropdown-link:hover {
  background: rgba(0, 0, 0, 0.03);
  /* color: #0d659b; */
  color: black;
  text-decoration: none;
}
.adropdown-focused .adropdown-link {
  background: rgba(0, 0, 0, 0.03);
  /* color: #0d659b; */
  color: black;
}
.adropdown-selected .adropdown-link {
  background: #1d81c0;
  color: #ffffff;
}
/**
 *
 *	=Mobile styles
 *
 *	================================================================ */
@media screen and (max-width: 600px) {
  /**
	 *	=Overlays
	 *	---------------------------------------------------------------- */
  .adropdown-overlay {
    z-index: -1;
    transition: opacity 0.2s linear;
  }
  .adropdown-opening .adropdown-overlay,
  .adropdown-open .adropdown-overlay {
    z-index: 101;
    opacity: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  /**
	 *	=Containers
	 *	---------------------------------------------------------------- */
  .adropdown-menu-wrapper {
    width: auto !important;
    height: auto !important;
    position: fixed !important;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    margin: 0;
    border: 0;
  }
  .adropdown-above .adropdown-menu-wrapper,
  .adropdown-below .adropdown-menu-wrapper {
    top: 65px;
    bottom: 10px;
    margin: 0;
  }
  .adropdown-menu-container {
    width: 100%;
  }
  /**
	 *	=Header
	 *	---------------------------------------------------------------- */
  .adropdown-menu-main .adropdown-header {
    display: block;
  }
  .adropdown-close {
    display: block;
  }
}
@media all and (min-width: 601px) {
  .adropdown-overlay {
    display: none !important;
  }
}
