.drop-down {
  height: 45px;
  position: relative;
  -webkit-transition: none;
  transition: none;
  cursor: pointer;
}

.drop-down__hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.drop-down__hover:hover .drop-down__container {
  max-height: 100rem;
}

.drop-down__hover:hover .drop-down__container .drop-down__buttons-ul {
  opacity: 1;
}

.drop-down__container {
  max-height: 45px;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border: #0081c9 solid 2px;
  background: white;
  overflow: hidden;
}

.drop-down__selection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 45px;
  min-height: 45px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.drop-down__selection-display {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 2.625rem;
  letter-spacing: 0.125rem;
  margin: 0;
  color: #231f20;
  height: 2.8125rem;
}

.drop-down__selection-icon {
  height: 10px;
  width: 11px;
  background-position: 0 -1276px;
  background-image: url(/sitecore/shell/-/media/Project/DMC/DMCGlobal/Branding/sprites-sa6740fec12.png);
}

.drop-down__buttons-ul {
  padding: 10px 0px;
  opacity: 0;
}

.drop-down__button-li {
  min-height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.drop-down__button-li::before {
  content: '';
  width: 0.625rem;
  height: 0.625rem;
  border: 1px solid #909090;
  background: #fff;
  border-radius: 50%;
  left: 1.25rem;
  top: 50%;
  margin-top: -0.375rem;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.drop-down__button-li--selected::before {
  background: #0081c9;
  border-color: #0081c9;
}
