﻿.sideFixedPanel {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    @media only screen and (max-width: 480px) {
        top: auto;
        transform: translateY(0%);
        bottom: 0;
        width: 100%;
        display: flex;
        border-radius: 40px 40px 0 0;
        overflow: hidden;
    }
    .btnItem {
        display: flex;
        align-items: center;
        padding: 7px;
background: #0066A4;
background: linear-gradient(90deg, rgba(0, 102, 164, 1) 0%, rgba(0, 150, 241, 0.5) 50%);    
    margin-bottom: 1px;
        border-radius: 0 24px 24px 0;
        text-decoration: none !important;
        outline: none;
        border: none;
        width:49px;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
        @media only screen and (max-width: 480px) {
            margin-bottom: 0;
            border-radius: 0;
            flex: 1;
            justify-content: center;
            padding: 10px;
            & + .btnItem{
                border-left: 1px solid #212121;
            }
        }
        .btnText {
            color: #fff;
            margin-right: 0px;
            width: 0px;
            font-size: 14px;
            font-weight: 600;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            transition: all 0.4s ease-in-out;
            @media only screen and (max-width: 480px) {
                display: none;
            }
        }
        .btnIcon {
            width: 35px;
            height: 35px;
            line-height: 34px;
            text-align: center;
            background: #263238;
            color: #fff;
            font-size: 14px;
            border-radius: 50%;
        }
        
      
      
      &:hover{
        width: auto;
        .btnText {
            margin-right: 10px;
            width: 85px;
          }
       } 
  
  
    }
}
