*{
    margin: 0;
    padding: 0;
    /* position: relative; */
    box-sizing: border-box;
}
html {
    overflow-x: hidden;
}
body{
    background: transparent !important;
    overflow-x: hidden;
}

/* Master CSS */
.chat-flex{
    display: flex;
    display: -webkit-flex;
}

.chat-flex-column{
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chat-flex-space-bw{
    justify-content: space-between;
}

.chat-flex-end{
    justify-content: flex-end;
}
.chat-flex-space-equal{
    justify-content: space-evenly;
}

.chat-w100{
    width: 100%;
}

.chat-flg{
    font-size: 15px;
}

.chat-fsm{
    font-size: 13px;
}

.chat-lsp{
    letter-spacing: 1px;
}
/* Master CSS */

/* Chat Icon */
.chat-icon{
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: fixed;
    bottom: 50px;
    z-index: 1111;
    right: 15px;
}
.chat-icon img {
    width: 50px;
}

.notify{
    width: 15px;
    height: 15px;
    background-color: red;
    position: absolute;
    right: -6px;
    top: -6px;
    z-index: 1025;
    border-radius: 50%;
}
/* Chat Icon */

/* Chat Window */
.chat-window{
    width: 350px;
    height: 600px;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 20%);
    position: fixed;
    bottom: 35px;
    z-index: 1111;
    right: 40px;
    border-radius: 15px;
    background-color: #fff;
    animation: slide-right-to-left 0.2s 1 ease-in-out;
}

.minimize{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #0dcaf0;
    border:1px solid  #0dcaf0;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: -20px;
}

.minimize i {
    width: 16px;
}

.minimize:hover{
    background-color: #fff;
    color: #0dcaf0;
}

.close-anime{
    animation: slide-left-to-right 0.2s 1 ease-in-out;
}

.chat-inner, .chatpanel {
    width: auto;
    height: auto;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    bottom: 0;
}
.chatpanel-top {
    flex-grow: 1;
}

.layouts{
    padding: 10px;
    margin: 0;
    list-style: none;
    overflow-y: auto;
    overflow-x: hidden;
    flex-grow: 1;
    border-radius: 4px;
    background: #fff;
}


.layouts > form {
    background: transparent;
    padding: 0;
    margin-top: 0;
    border: none;
    box-shadow: none;
  }

  .layouts > form  input[type="text"] {
    height: initial;
    font-size: initial;
  }
  .chat-btn{
    width: fit-content;
    border: 1px solid black;
    padding: 2px;
    border-radius: 0.2rem;
    color: #fff;
    background-color: #198754 !important;
    border-color: #198754 !important;
    cursor: pointer;
}
  .layouts  button {
    background: transparent;
    display: initial;
    padding: 3px 18px;
    margin-top: 10px;
    border-radius: 0;
}
/* Chat Window */

/* Chat Header */
/* .chat-head {
    background-color: #4caf50;
    padding: 6px 15px;
    height: auto;
    width: 100%;
    color: #fff;
  }
.chat-header{
    height: auto;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 6px ;
} */

.back-btn{
    width: 25px;
    height: 25px;
    border: 1px solid #0dcaf0;
    color: #0dcaf0;
    cursor: pointer;
    border-radius: 4px;
    border-top-left-radius: 10px;
}

.back-btn:hover{
    background-color: #0dcaf0;
    color: #fff;
}

.user-details .bx-user-circle{
    color: #0dcaf0;
    font-size: 23px;
    font-weight: 100 !important;
}
/* Chat Header */

/* Chat Button */


.not-event{
    cursor: not-allowed !important;
}

.lds-dual-ring {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
/* Chat Button */

/* Login */
.login{
    margin-top: 20px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
/* Login */

/* Orders */
.orders{
    height: 100%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.all-orders{
    max-height: 96%;
    overflow-y: auto;
    padding: 5px;
}

.all-orders::-webkit-scrollbar{
    width: 5px;
}

.all-orders::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: #6c757d;
}

.order{
    padding: 10px;
    background-color: #6c757d;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 5px;
}
/* Orders */

/* Chat Panel */


.chatpanel-bottom{
      flex-shrink: 0;
      display: flex;
      padding-top: 10px;
      max-height: 90px;
      background: transparent !important;
}

.all-msgs{
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px;
}

.all-msgs::-webkit-scrollbar{
    width: 5px;
}

.all-msgs::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: #6c757d;
}
.msg{
    margin: 5px 0;
}

.msg div {
    padding: 1px 5px;
    border-radius: 4px;
}
.msg div::after {
    content:"";
    border-width: 0px 0 10px 10px;
    border-color: transparent transparent transparent #e1ffc7;
    top: 0;
    right: -10px;
}
.chatpanel img{
    width: 30px;
    height: 30px;
}

.msg-box{
    width: 80%;
    border: none;
    outline: none;
    background-color:#f9fafb ;
}

.send-msg{
    background: none;   
    border: none;
    outline: none;
}
/* Chat apnel */

/* Name */
.skip-btn{
    background: none;
    text-decoration: underline;
    margin-right: 10px;
    border: none;
    color: rgba(0,0,0,0.4);
}
/* Name */

/* Tel Input */
.tel-input {
    position: relative;
    padding: 0 5px;
}

.tel-input input {
    width: 100%;
}

.flag{
    position: absolute;
    top: 9px;
    left: 5px;
    background-color: white;
    cursor: pointer;
}
.iti__country-list {
    max-width: 265px;}
.flag img{
    width: 35px;
    height: 20px;
    margin-right: 3px;
    border: 1px solid black;
}

/* Tel Input */

/* Loader */
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: green;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
  
/* Loader */



/* Animations */
@keyframes slide-right-to-left {
    0%{
        right: -250px;
    }
    100%{
        right: 40px;
    }
}

@keyframes slide-left-to-right{
    0%{
        right: 40px;
    }
    100%{
        right: -250px;
    }
}

@keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
}
  
/* Animations */

@media (min-width: 320px) and (max-width: 767px) {
    .iti--container {
        z-index: 2258594001!important;
    }
}
