.dark-layout .form-control[type=file]::file-selector-button {
  background-color: #283046;
}

/* driver chatbox css */
div#driver-chat-box {
    display: none;
}
  .chat-box-data{
    cursor: pointer;
  }
  .chat-container{
    display:none;
  }
    .modal-footer {
        display: flex;
        flex-wrap: nowrap;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        padding: 0.8rem 1.4rem -0.25rem;
        border-top: 1px solid rgba(34, 41, 47, 0.05);
        border-bottom-right-radius: 0.357rem;
        border-bottom-left-radius: 0.357rem;
        /* text-align: center; */
        align-content: space-between;
    }

    form#messageForm {
    display: flex;
    flex-direction: column;
   padding: 15px;
}
#overlay {
  display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

div#driver-chat-box {
    background: #FFF;
    width: 100%;
    padding: 0;
    max-width: 400px;
    position: fixed;
    z-index:2;
    top: 45%;
    left: 55%;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px 4px #ffffff63;
}

form#messageForm textarea {
  margin: 10px 0;
    padding: 5px 10px;
    height: 70px;
}

button.close-button {
    border: none;
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    background: #B4141E;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    color: #FFF;
    align-items: center;
    justify-content: center;
}
.chat-container li {
    list-style: none;
}

.chat-container li.clearfix.send_message {
    text-align: right;
}

.chat-container ul {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.chat-container .message.my-message {
    background: whitesmoke;
    width: fit-content;
    padding: 2px 10px;
    float: right;
    /* display: flex; */
}

.chat-container .message.other-message {
    background: whitesmoke;
    width: fit-content;
    padding: 2px 10px;
    float: left;
}
.chat-container .chat-history {
    overflow-y: auto;
    max-height: 50vh;
    scrollbar-width: none;
}
.chat-container .message-data span {
    font-weight: 500;
}

.chat .chat-history .send_message .my-message:after {
  
  left: 93% !important;
}
.chat .chat-history  .message-data{
  margin-bottom: 0 !important;
      height: 25px;
}
.chat .chat-history .receive_message .message.other-message {
    border-radius: 0 30px 30px;
}
.chat .chat-history .send_message .message.my-message {
    border-radius: 30px 0 30px 30px;
}


#messageForm-customer{
  display: flex;
    flex-direction: column;
    padding: 10px;
}


/*driver view*/
.app-user-view-billing .card-header {
    background-color: transparent;
    border: 0;
}

.app-user-view-billing h4.card-title.mb-50 {
    color: #5e5873;
}

.app-user-view-billing  {
    font-family: 'Montserrat';
}