@keyframes right-sidebar-phone-submenu {
  0% {height: 0px; opacity: 0}
  100% {height: 260px; opacity: 1}
}

@media (max-width: 930px) {
  .right-sidebar {
    width: 100px;
  }
  
  .right-sidebar-phone {
    border: 10px solid rgb(51, 51, 51);
    font-size: 60px;
    height: 70px;
    width: 70px;
  }
  
  .right-sidebar-phone-icon {
    top: 30px;
    right: 35px;    
  }
  
  .right-sidebar-location {
    width: 90px;
  }  

  .right-sidebar-location img {
    height: 90px;
    width: 90px;
  }
}

@media (min-width: 931px) { 
  .right-sidebar {
    width: 70px;
  }
  
  .right-sidebar-phone {
    border: 7px solid rgb(51, 51, 51);
    font-size: 50px;
    height: 58px;
    width: 58px;
  }
  
  .right-sidebar-phone-icon {
    top: 30px;
    right: 20px;    
  }
  
  .right-sidebar-location {
    width: 70px;
  }  

  .right-sidebar-location img {
    height: 70px;
    width: 70px;
  }
}

.right-sidebar {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 5;
}

.right-sidebar-phone {
  background-color: white;
  border-radius: 70px;
  color: rgb(51, 51, 51);
  margin: 20px 10px 10px 10px;
}

.right-sidebar-phone:hover .right-sidebar-phone-submenu {
  display: block;
}

.right-sidebar-phone-submenu {
  animation: right-sidebar-phone-submenu 1s;
  background-color: rgba(255, 255, 255, 0.8);
  border: 7px solid rgb(51, 51, 51);
  border-radius: 10px;
  display: none;
  font-size: 30px;
  padding: 30px;
  position: fixed;
  top: 30px;
  right: 90px;
  height: 260px;
}

.right-sidebar-phone-icon {
  position: fixed;
}

.right-sidebar-location {
  margin: 10px;
}

.right-sidebar-location:hover .right-sidebar-location-submenu {
  display: block;
}

.right-sidebar-location-submenu {
  animation: right-sidebar-phone-submenu 1s;
  background-color: rgba(255, 255, 255, 0.8);
  border: 7px solid rgb(51, 51, 51);
  border-radius: 10px;
  display: none;
  font-size: 25px;
  padding: 30px;
  position: fixed;
  top: 90px;
  right: 80px;
  height: 260px;
}