﻿.fixedBtn{
  position: fixed;
  z-index: 999;
  width: 5.875rem;
  min-height: 5.875rem;
  background-color: #fff;
  box-shadow: 0px 0 .9375rem 0px #3443A624;
  cursor: pointer;
  border-radius: 5.875rem;
  text-align: center;
  top: 30%;
  /* transform: translateY(-50%); */
  right: 2.5rem;
}

.fixedBtn .fixedBtn-logo{
  width: 3.125rem;
  height: 3.125rem;
  margin-top: 1.375rem;
}

.fixedBtn .btn-list {
  display: none;
  overflow: hidden;
  animation-name: heightAnim;
  animation-duration: .4s;
}

.fixedBtn:hover .btn-list{
  display: block;
}

.fixedBtn .btn-list .item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  padding-top: 1.375rem;
}

.fixedBtn .btn-list .item:hover{
  color: #005BAC;
}

.fixedBtn .btn-list .item:last-child{
  padding-bottom: 2.75rem;
}

@keyframes heightAnim{
  0% {
    opacity: 0; 
    height: 0;
  }
  100% { 
    opacity: 1; 
    height: 25rem;
  }
}