.shortcut-dropdown-container {
  border-radius: 10px;
  padding: 20px;
  min-height: 100px;
  z-index: 5000;
  display: block;
  position: fixed;
  width: 320px;
  background-color: white;
  -moz-box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.shortcut-dropdown-container .shortcut-element {
  flex-direction: column;
}
.shortcut-dropdown-container .shortcut-element .shortcut-button-container {
  display: flex;
  gap: 16px;
}
.shortcut-dropdown-container .shortcut-element .shortcut-text {
  font-size: 16px;
  padding-bottom: 16px;
}
.shortcut-dropdown-container .shortcut-element a.eon-button.small {
  margin: 0;
  padding: 0 15px;
}
.shortcut-dropdown-container .shortcut-element a.eon-button.small span {
  height: 32px;
  line-height: 30px;
  z-index: 900000;
  position: absolute;
}
.shortcut-dropdown-container .shortcut-element a.eon-button.small:before {
  margin-left: -10px;
}
.shortcut-dropdown-container .shortcut-element a.eon-button.small:after {
  margin-left: 46px;
}
.shortcut-dropdown-container .link-container span.links_text {
  font-weight: bold;
}
.shortcut-dropdown-container hr {
  border-color: #bfbfbf!important;
}
@media only screen and (max-width: 767px) {
  .shortcut-dropdown-container {
    right: 20px;
    top: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shortcut-dropdown-container {
    right: 5%;
    top: 70px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .shortcut-dropdown-container {
    right: 3%;
    top: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .shortcut-dropdown-container {
    top: 60px;
  }
}
