/* fixed-button */
.fixed-button {
  display: none;
  position: fixed;
  top: 25vh;
  right: 0;
  z-index: 4000;
}

.fixed-button a {
  width: 100px;
  
  color: #fff;
  display: block;
  text-decoration: none;
  z-index: 4000;
  transition: none;
 
}

.fixed-button a:hover {
  width: 200px;
  transition: width 1s;
}

.fixed-button .image-rui {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  background-image: url(../Images/FixedButton/fixed-button-bg1.svg);
  background-repeat: no-repeat;
  background-color: #fff;
  padding-left: 0.75rem;
  box-sizing: border-box;
  height: 85px;
  border-radius: 22px 0 0 22px;
}

.fixed-button .info-rui {
  display: none;
  justify-content: center;
  align-items: center;
  width: 200px;
  font-weight: bold;
  font-size: 1.25rem;

  text-align: center;
  background-image: url(../Images/FixedButton/fixed-button-bg2.svg);
  background-repeat: no-repeat;
  box-sizing: border-box;
  height: 85px;
}

.fixed-button .info-rui p {
  margin: 0;
}

.fixed-button a:hover .info-rui {
  display: flex;
}
.fixed-button a:hover .image-rui {
  display: none;
}


/* ab 960px - 
   ========================================================================== */
@media screen and (min-width: 960px) {
    
    .fixed-button {
      display: block;
    }
    
}