.sticky-button-container {
    position: fixed;
    top: 50%;
    right: 0;
    transform-origin: top right;
    transform: translateY(50%) rotate(90deg);
    z-index: 100000; 
}

.sticky-button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  background: #3ec6c5;
    color: #fff!important;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 24px;
    box-shadow: #0000002e 0px 12px 20px 0px;
    transition: all .5s;
    z-index: 100000; 
}

a.sticky-button:hover {
background: #4cdbda;

@media screen and (max-width: 600px) {
    .sticky-button-container {
        top: 50%;
        right: 0;
        transform-origin: bottom right;
        transform: translateY(50%) rotate(-90deg);
      
    }
}
