/* support widget */

/* Styles for the chat widget */
/* #supportWidget {
    position: fixed;
    top: 150px;
    
    right: 20px;
    
    width: 150px;
    

    overflow: hidden;
    z-index: 1000;

   
} */
 #ticketHeader{
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 15px 0;
        
    
 }
#supportWidget{
    overflow: hidden;
    
    width: 150px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#supportContainer {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    
    background-color: white;
    font-size: 1.2em;
}

#supportL {
    background-color: #1D91A5;
    color: white;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#supportL i {

    padding: 4px;
}

#supportR {
    color: #112326;
    display: flex;
    justify-content: center;
    flex-grow: 3;
}

#supportR span {
    padding: 3px;

}

@media (max-width:850px) {
    #supportR {
        display: none;
    }

    #supportWidget {
        width: 40px;
    }
    #supportL i{
        padding: 7px;
    }

}