* {
  box-sizing: border-box;
}

.feature-menu-container {
    z-index: 300;
    position: fixed;
    bottom: 1em;
    right: 1em;
}

.menu-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #005EA7;
  -webkit-box-shadow: 12px 12px 15px -12px rgba(0,0,0,0.30);
  -moz-box-shadow: 12px 12px 15px -12px rgba(0,0,0,0.30);
  box-shadow: 12px 12px 15px -12px rgba(0,0,0,0.30);
  position: absolute;
  z-index: 5;
  bottom: 0;
  right: 0;
  display: table;
  text-align: center;
}

.menu-toggle .fa {
  display: table-cell;
  color: #fff;
  font-size: 2em;
  opacity: 0;
  vertical-align: middle;
  transition: 0.1s;
}

.menu-toggle.open .fa {
  /*transform: rotate(135deg);*/
  opacity: 1;
  transition: 0.1s;
  transition-delay: 0.1s;
}

.menu-toggle.open .up-down-arrows {
  opacity: 0;
  transition: 0.1s;
}

.up-down-arrows-span {
  width: 60px;
  height: 60px;
}

.up-down-arrows {
  position: absolute;
  width: 20px;
  margin-top: 16px;
  right: 20px;
}

.btn-app {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  position: absolute;
  background-color: #005EA7;
  color: #fff;
  text-align: center;
}

.btn-app:hover {
  background-color: #2bb2df !important;
  color: #fff;
}
.btn-app:focus {
  background-color: #2bb2df !important;
  color: #fff;
}
.btn-app:active {
  background-color: #2bb2df !important;
  color: #fff;
}

.open .btn-app {
  -webkit-box-shadow: 12px 12px 15px -12px rgba(0,0,0,0.30);
  -moz-box-shadow: 12px 12px 15px -12px rgba(0,0,0,0.30);
  box-shadow: 12px 12px 15px -12px rgba(0,0,0,0.30);
  width: 200px;
  border-radius: 30px;

}

.open .btn-app p {
  opacity: 1;
  transition: 0.2s;
  transition-delay: 0.2s;
}

.btn-app p {
  line-height: 2.4em;
  font-size: 16px;
  font-family: 'PoppinsMedium';
  opacity: 0;
  transition: 0.1s;
  transition-delay: 0.1s;
}

.menu-line {
  position: absolute;
  z-index: 2;
}

.menu-line .btn-app {
  bottom: 0.1em;
  right: 0.8em;
  transition: 0.25s;
  transition-delay: 0.1s;
}
.menu-line.open .btn-app:nth-of-type(1) {
  bottom: 3.25em;
}
.menu-line.open .btn-app:nth-of-type(1) {
  bottom: 6.25em;
}
.menu-line.open .btn-app:nth-of-type(2) {
  bottom: 9.25em;
}
.menu-line.open .btn-app:nth-of-type(3) {
  bottom: 12.25em;
}
.menu-line.open .btn-app:nth-of-type(4) {
  bottom: 15.25em;
}
.menu-line.open .btn-app:nth-of-type(5) {
  bottom: 18.25em;
}

.menu-line.open .cm-features-mobile-back-btn {
  bottom: 21.25em;
}