
#dropDownMenuBtn{
    display: none;
}

#dropDownMenuBtn i{
  font-size: xx-large;
  color: white;
  cursor: pointer;
  vertical-align: middle;
}
#dropDownMenuBtn:hover {

    
    transition: .2s ease;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;

    animation: scaleMenuBtnAnimation .2s ease;
    -webkit-animation: scaleMenuBtnAnimation .2s ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

@-webkit-keyframes scaleMenuBtnAnimation {
  0%{
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100%{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes scaleMenuBtnAnimation {
  0%{
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100%{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.dropDownMenuWrapInitial{
  position: fixed;
  z-index: 99;
  top: 70px;
  background: white;
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.3);


  width: auto;
  padding: 20px;
  border-radius: 20px;
  pointer-events :none;
  right:-300px;
  opacity: 0;
}




.dropDownMenuWrapShowAnimation{
  pointer-events :auto;
  opacity:1;
  right:30px;
  transform-origin: center;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;

  animation: .2s ease 1 linkMenuShowAnimation;
  -webkit-animation: .2s ease 1 linkMenuShowAnimation;
}

@-webkit-keyframes linkMenuShowAnimation {
  0%{
    right:10px;
    opacity:0;
    -webkit-transform: scale(.8);
            transform: scale(.8);
  }
  100%{
    right:30px;
    opacity:1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes linkMenuHideAnimation {
  0%{
    right:30px;
    opacity:0;
    -webkit-transform: scale(.8);
            transform: scale(.8);
  }
  100%{
    right:30px;
    opacity:1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.dropDownMenuWrapOpen{
  pointer-events :auto;
  right:30px;
  opacity: 1;
  animation: none;
  -webkit-animation: none;
}
.dropDownMenuPulsate {
  animation: pulsateAnimation .1s linear infinite;
  -webkit-animation: pulsateAnimation .1s linear infinite;
}
@-webkit-keyframes pulsateAnimation {
  0% { 
    -webkit-transform: rotate(1deg) scale(1.01); 
    transform: rotate(1deg) scale(1.01);
  }
  33% { 
    -webkit-transform: rotate(0deg) scale(1); 
    transform: rotate(0deg) scale(1);
  }
  66% { 
    -webkit-transform: rotate(-.2deg) scale(1.01); 
    transform: rotate(-.2deg) scale(1.01); 
  }
  100% { 
    -webkit-transform: rotate(0deg) scale(1); 
    transform: rotate(0deg) scale(1);
  }
}
@keyframes pulsateAnimation {
  0% { 
    -webkit-transform: rotate(.2deg) scale(1.01); 
    transform: rotate(.2deg) scale(1.01);
  }
  33% { 
    -webkit-transform: rotate(0deg) scale(1); 
    transform: rotate(0deg) scale(1);
  }
  66% { 
    -webkit-transform: rotate(-.2deg) scale(1.01); 
    transform: rotate(-.2deg) scale(1.01); 
  }
  100% { 
    -webkit-transform: rotate(0deg) scale(1); 
    transform: rotate(0deg) scale(1);
  }
}

.dropDownMenuWrapHideAnimation{
  pointer-events :none;
  opacity:0;
  right:-300px;
  transform-origin: center;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;

  animation: .2s ease 1 linkMenuHideAnimation;
  -webkit-animation: .2s ease 1 linkMenuHideAnimation; 
}

@-webkit-keyframes linkMenuHideAnimation {
  0%{
    right:10px;
    opacity:1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100%{
    right:30px;
    opacity:0;
    -webkit-transform: scale(.8);
            transform: scale(.8);
  }
}
@keyframes linkMenuHideAnimation {
  0%{
    right:30px;
    opacity:1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100%{
    right:10px;
    opacity:0;
    -webkit-transform: scale(.8);
            transform: scale(.8);
  }
}

.dropDownMenuWrapInitial a{
  text-decoration: none;
  margin-bottom:5px;
  margin-top:5px;
  display: block;
}
.dropDownMenuLinkWrap{
    cursor: pointer;
    border-radius: 20px;
    text-align: center;
    padding-top:5px;
    padding-bottom:5px;
    padding-left: 20px;
    padding-right: 20px;
}
.dropDownMenuLinkWrap:hover{
    background: var(--primary-color);
}
.dropDownMenuLinkWrap:hover .dropDownMenuLinkText{
    color: white;
}

.dropDownMenuLinkText{
    text-align: center;
    color: var(--primary-color);
    font-size: large;
    margin: 0;
    font-weight: bold;

}


@media (max-width: 1500px) {
    
  #dropDownMenuBtn{
    display: block;
  }

}