#fixed{
    position: fixed;
    right: 50px;
    top: 50%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    align-items: flex-end;
}
#fixed>a{
    width: 200px;
    padding: 5px 0;
    font-size: 18px;
    font-family: 'SUIT-Bold', sans-serif;
    color: #371d1e;
    background-color: #f9e000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}
.top_btn{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* mobile */
@media screen and (max-width: 767px){ 
    #fixed{
        top: unset;
        right: 10px;
        bottom: 10%;
    }
    #fixed>a{
        width: 120px;
        padding: 3px 0;
        font-size: 12px;
    }
    #fixed>a img{
        width: 23%;
    }
    .top_btn{
      display: none;
    }
  }
  
  /* tablet */
  @media screen and (min-width: 768px) and (max-width: 1024px){
       #fixed{
        top: unset;
        right: 10px;
        bottom: 10%;
    }
     .top_btn{
        display: none;
      }
}