/*==============================================================================
| Plugin: back2top - main.js
|=============================================================================*/
#back2top_id {
   position: fixed;
   bottom: 70px;
   right: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}


.back2top-btn {
   background-color: #333;
   color: white;
   padding: 10px 12px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   opacity: 0.8;
   z-index: 9999;
   transition: opacity 0.3s ease;
}

.back2top-btn:hover {
   opacity: 1;
}

#back2bottom_id {
   position: fixed;
   bottom: 40px;
   right: 20px;
   display: flex;
   flex-direction: column;
   gap: 10px;
}


.back2bottom-btn {
   background-color: #333;
   color: white;
   padding: 10px 12px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   opacity: 0.8;
   z-index: 9999;
   transition: opacity 0.3s ease;
}

.back2bottom-btn:hover {
   opacity: 1;
}



