.handorgel
{
  display: block;
  width: 100%;
  border: 1px solid #eee;
  border-top: none;
}

.handorgel__header
{
  display: block;
  margin: 0;
}

.handorgel__header--open .handorgel__header__button
{
    background-color: #fff;
    color: #004288;
}

.handorgel__header--notransition .handorgel__header__button
{
  -webkit-transition: none;
  transition: none;
}

.handorgel__header--focus .handorgel__header__button
{
  background-color: #fff;
  color: #004288;
  outline: none;
}

.handorgel__header__button
{
  box-shadow: 2px 2px 12px rgba(0,0,0,.175);
  display: block;
  width: 100%;
  padding: 20px 24px;
  border: none;
  border: 1px solid #004288;
  margin: 5px 0px;
  background-color: #004288;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font-size: inherit;
  text-align: left;
  padding-left: 4.3em;
  text-indent:-3.6em;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.handorgel__header__button::-moz-focus-inner 
{
  border: 0;
}

.handorgel__content
{
  display: none;
  overflow: hidden;
  height: 0;
  /* border-top: 1px solid #eee;*/
  background-color: #fff;
  -webkit-transition: height 0.1s ease 0.1s;
  transition: height 0.1s ease 0.1s;
}

.handorgel__content--open
{
  display: block;
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}

.handorgel__content--opened
{
  overflow: visible;
}

.handorgel__content--notransition
{
  -webkit-transition: none;
  transition: none;
}

.handorgel__content__inner
{
  padding: 20px 24px;
  opacity: 1;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}

.handorgel__content--opened .handorgel__content__inner
{
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
