:root {
  --primary-bg-color: #004d9d;
}
input,
textarea,
button,
button:focus,
select,
a {
  -webkit-tap-highlight-color: transparent;
  outline: none !important;
}
body,
html {
  font-size: 16px;
  line-height: 1.4;
}
#degpeg-widget * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  font-family: 'Poppins', sans-serif !important;
}
#degpeg-widget form h5,
#degpeg-widget h6 {
  color: var(--primary-bg-color);
  font-style: normal;
}
#degpeg-widget button,
#degpeg-widget input,
#degpeg-widget select {
  border: 0;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#degpeg-widget input[type="date"],
#degpeg-widget input[type="time"] {
  font-family: inherit;
  letter-spacing: 1px;
  font-weight: 400;
}
#degpeg-widget input::placeholder {
  font-size: 13px;
  color: #939393;
}
#degpeg-widget.degpeg-onetoone-container {
  position: fixed;
  width: 300px;
  height: 580px;
  right: 10px;
  bottom: 10px;
  background: #fff;
  z-index: 999999999;
  border-radius: 8px;
  box-shadow: 0 -1px 20px rgb(0 0 0 / 16%);
  transition: transform 0.2s, visibility, opacity 0.2s, width 0.2s, height 0.2s;
  transform-origin: 100% 100%;
  padding: 0px 12px;
  overflow-y: auto;
  resize: none;
  user-select: none;
  box-sizing: border-box;
  padding-bottom: 25px;
  display: block !important;
  flex-direction: column;
  -webkit-animation: 0.5s ease-out 0s 1 scaleFromBottom;
  -moz-animation: 0.5s ease-out 0s 1 scaleFromBottom;
  -o-animation: 0.5s ease-out 0s 1 scaleFromBottom;
  -ms-transition: 0.5s ease-out 0s 1 scaleFromBottom;
  animation: 0.5s ease-out 0s 1 scaleFromBottom;
}
#degpeg-widget.degpeg-onetoone-container.expand {
  width: 500px;
  height: 665px;
}
/* #degpeg-widget.degpeg-onetoone-container.expand video{
  object-fit: contain !important;
} */
#degpeg-widget.degpeg-onetoone-container.no-animation {
  animation: none;
  transition: none;
}
#degpeg-widget.degpeg-onetoone-container.is-closed {
  transition: transform 0.2s, visibility, opacity 0.2s;
  transform: scale(0);
}
#degpeg-widget .degpeg-onetoone-card {
  position: relative;
  width: 95%;
  margin: auto;
  height: calc(100% - 30px);
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  justify-content: space-evenly;
}
#degpeg-widget .degpeg-onetoone-banner,
#degpeg-widget h6 {
  margin: 5px 0 0;
  text-align: center;
}
#degpeg-widget .degpeg-onetoone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 10px;
  z-index: 1;
}
#degpeg-widget .degpeg-onetoone-header img {
  max-width: 100px;
  max-height: 30px;
  width: auto;
  height: auto;
}
#degpeg-widget .degpeg-onetoone-footer {
  display: flex;
  align-items: center;
  border-top: 1px solid rgb(0 0 0 / 20%);
  justify-content: center;
  line-height: 20px;
  height: 20px;
  position: absolute;
  width: 100%;
  bottom: 1px;
  left: 0px;
  z-index: 1;
  background: #fff;
  border-radius: 0 0px 6px 6px;
}
#degpeg-widget .degpeg-onetoone-footer img {
  width: 14px;
  margin-right: 4px;
}
#degpeg-widget .degpeg-onetoone-footer a {
  color: #000;
  font-size: 10px;
  text-decoration: none;
}
#degpeg-widget .degpeg-onetoone-footer a:hover {
  text-decoration: underline;
}
#degpeg-widget .degpeg-onetoone-banner img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
}
#degpeg-widget .degpeg-onetoone-banner h4 {
  color: var(--primary-bg-color);
  font-size: 16px;
  line-height: 34px;
  margin: 5px 10px 0px;
  font-weight: 700;
}
#degpeg-widget .degpeg-onetoone-banner p {
  font-size: 16px;
  line-height: 160%;
  text-align: center;
  color: #4d4d4d;
  font-weight: 400;
}
#degpeg-widget .degpeg-onetoone-closebtn {
  position: relative;
  width: 1.4em;
  height: 1.4em;
  cursor: pointer;
  margin-left: auto;
  z-index: 1;
  background: rgb(255 255 255 / 60%);
  border-radius: 4px;
  display: block !important;
}
#degpeg-widget .degpeg-onetoone-closebtn::after,
#degpeg-widget .degpeg-onetoone-closebtn::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 1px;
  content: "";
  width: 1.3em;
  height: 1.5px;
  background-color: #1e1d1d;
  transform-origin: center center;
  transition: 0.5s;
  border-radius: 1em;
}
#degpeg-widget .degpeg-onetoone-closebtn::before {
  transform: rotate(-45deg);
}
#degpeg-widget .degpeg-onetoone-closebtn::after {
  transform: rotate(45deg);
}
#degpeg-widget .degpeg-onetoone-closebtn:hover::after,
#degpeg-widget .degpeg-onetoone-closebtn:hover::before {
  transform: rotate(-180deg);
}
#degpeg-widget .degpeg-onetoone-close {
  display: flex;
  width: 100%;
  background: 0 0;
  justify-content: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 2px;
}
#degpeg-widget form {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  background: #f9f9f9;
  max-width: 100%;
  text-align: center;
}
#degpeg-widget form h5 {
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
  margin: 0 0 10px;
}
#degpeg-widget input,
#degpeg-widget select {
  width: 100%;
  height: 34px;
  color: #4d4d4d;
  background: #fff;
  border: 1px solid #cfd4d9;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 13px;
  /* text-transform: capitalize; */
}
#degpeg-widget input {
  line-height: 34px;
}
#degpeg-widget select {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 12px) calc(1em + 1px),
    calc(100% - 7px) calc(1em + 1px), calc(100% - 24px) 0.5em;
  background-size: 5px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
  padding-right: 30px;
}
#degpeg-widget input.error {
  border-color: red;
  background: #fff;
  color: #000;
}
#degpeg-widget input.success {
  border-color: green;
  background: #fff;
  color: #000;
}
#degpeg-widget input[type="email"] {
  text-transform: lowercase !important;
}
#degpeg-widget input[type="email"]::placeholder {
  text-transform: capitalize !important;
}
#degpeg-widget .degpeg-onetoone-formgroup .iti {
  width: 100%;
}
#degpeg-widget .degpeg-onetoone-thankyou img {
  width: auto;
  max-width: 100%;
  height: 200px;
}
#degpeg-widget .degpeg-onetoone-formgroup .iti input {
  padding: 12px 12px 12px 85px;
  padding-left: 85px !important;
}
#degpeg-widget .degpeg-onetoone-formgroup {
  margin-bottom: 10px;
  position: relative;
}
#degpeg-widget .landscape {
  object-fit: contain !important;
}
#degpeg-widget .portrait {
  object-fit: cover !important;
}
#degpeg-widget .degpeg-onetoone-formgroup .degpeg-onetoone-clear {
  position: absolute;
  right: 14px;
  top: 10px;
  text-transform: uppercase;
  font-size: 10px;
  color: var(--primary-bg-color);
  font-weight: 700;
  background: #fff;
  padding: 2px;
}
#degpeg-widget .degpegbtn {
  width: 100%;
  height: 45px;
  font-size: 14px;
  line-height: 120%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: 0 solid transparent;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 0 17px 1px rgba(0, 0, 0, 0.34);
}
#degpeg-widget .degpegbtn img,
#degpeg-widget .degpegbtn svg {
  margin-right: 20px;
}
#degpeg-widget .degpegbtn div {
  position: relative;
  z-index: 1;
}
#degpeg-widget .option-card .degpegbtn {
  margin-top: 25px;
}
#degpeg-widget .btn-primary {
  color: #fff;
  background: #1a1a1a;
}
#degpeg-widget .degpegbtn.btn-primary:hover {
  background-position: left bottom;
}
#degpeg-widget h6 {
  font-size: 22px;
  font-weight: 700;
  line-height: 34px;
}
#degpeg-widget .degpegVideoCallCard {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
}
#degpeg-widget .degpegVideoCallCardWaiting {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
}
#degpeg-widget .degpegVideoCallCardWaiting .degpegVideoCallCardProgress {
  display: flex;
  justify-content: center;
  width: 100%;
  counter-reset: step;
  margin: 20px 0 10px;
}
#degpeg-widget .degpegVideoCallCardWaiting .degpegVideoCallCardProgress li {
  list-style-type: none;
  width: 25%;
  flex: 1;
  float: left;
  font-size: 9px;
  position: relative;
  text-align: center;
  color: #7d7d7d;
}
#degpeg-widget .degpegVideoPermissionsCard {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 16px;
}
#degpeg-widget .degpegVideoPermissionsCard .degpegVideoPermissions {
  width: 100%;
  height: calc(100% - 140px);
  padding-top: 25px;
  background: #fff;
  object-fit: contain;
}
#degpeg-widget .degpegVideoPermissionsCard p {
  font-size: 12px;
  text-align: center;
  color: #666;
  line-height: 150%;
  margin: 5px 0 10px;
}
#degpeg-widget .degpegVideoPermissionsCard button {
  width: 200px;
  margin: auto;
  font-size: 10px;
  line-height: 160%;
  /* text-transform: capitalize; */
  font-weight: normal;
}
#degpeg-widget .degpegMoreOption span {
  position: relative;
  width: 5px;
  height: 5px;
  background-color: #514f4f;
  border-radius: 50%;
  top: -8px;
}
.degpegMoreOptionWrapper {
  background: #000;
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding: 20px;
}
#degpeg-widget .degpegMoreOption span:before,
#degpeg-widget .degpegMoreOption span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  background-color: inherit;
  border-radius: inherit;
}
#degpeg-widget .degpegMoreOption span:before {
  top: 8px;
}
#degpeg-widget .degpegMoreOption span:after {
  top: 16px;
}
#degpeg-widget
  .degpegVideoCallCardWaiting
  .degpegVideoCallCardProgress
  li:before {
  width: 12px;
  height: 12px;
  content: "";
  line-height: 30px;
  border: 2px solid #7d7d7d;
  background-color: #7d7d7d;
  display: block;
  text-align: center;
  margin: 0 auto 6px auto;
  border-radius: 50%;
  transition: all 0.8s;
  box-sizing: border-box;
}
#degpeg-widget
  .degpegVideoCallCardWaiting
  .degpegVideoCallCardProgress
  li:after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #7d7d7d;
  top: 6px;
  left: -50%;
  z-index: -1;
  transition: all 0.8s;
}
#degpeg-widget
  .degpegVideoCallCardWaiting
  .degpegVideoCallCardProgress
  li:first-child:after {
  content: none;
}
#degpeg-widget
  .degpegVideoCallCardWaiting
  .degpegVideoCallCardProgress
  li.active:before {
  border-color: #55b776;
  background-color: #55b776;
  transition: all 0.8s;
}
#degpeg-widget
  .degpegVideoCallCardWaiting
  .degpegVideoCallCardProgress
  li.active {
  color: #55b776;
}
#degpeg-widget
  .degpegVideoCallCardWaiting
  .degpegVideoCallCardProgress
  li.active:after {
  background-color: #55b776;
  transition: all 0.8s;
}

#degpeg-widget .degpegVideoCallCardWaiting video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  object-fit: cover;
}
#degpeg-widget .degpegVideoCallCardWaiting img {
  margin-bottom: 40px;
  max-width: 60%;
  max-height: 50%;
}
#degpeg-widget .degpegVideoCallCardWaiting span {
  font-size: 18px;
  text-align: center;
}
#degpeg-widget .degpegVideoCallCardWaiting p {
  margin-top: 20px;
  line-height: 165%;
  opacity: 0.6;
  text-align: center;
  font-size: 12px;
}
#degpeg-widget .degpegVideoCallCardWaiting.connectingCall span {
  color: #fff;
  z-index: 1;
}
#degpeg-widget .degpegVideoCallCardWaiting.connectingCall p {
  opacity: 0.8;
  font-size: 14px;
  color: #fff;
  padding: 20px 0 0;
  line-height: 180%;
}
#degpeg-widget .degpegVideoCallCardWaiting .degpeg-connectLoader {
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  padding: 20px 10px;
}
#degpeg-widget .degpegVideoCallCardWaiting div {
  font-size: 10px;
  text-align: center;
  color: #666;
  line-height: 150%;
  margin-top: 15px;
}
#degpeg-widget .degpegVideoCallCardWaiting ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#degpeg-widget .degpegVideoCallCardWaiting li {
  line-height: 160%;
  font-size: 11px;
}
#degpeg-widget .degpegVideoCallCardWaiting li a {
  color: #00f;
  cursor: pointer;
  font-weight: 700;
}
#degpeg-widget .degpegVideoCallCardWaiting .degpegbtn {
  width: 100%;
  opacity: 0.8;
  padding: 10px;
  font-size: 12px;
  line-height: 150%;
  margin: 20px 0 0px;
  letter-spacing: 0.6px;
  /* text-transform: capitalize; */
}
#degpeg-widget .degpegVideoCallConnected {
  position: relative;
  z-index: 2;
}
#degpeg-widget .degpegVideoCallConnected,
#degpeg-widget .degpegVideoCallVideoWrapper {
  width: 100%;
  height: 100%;
}
#degpeg-widget .degpegVideoCallVideoWrapper .fullscreen {
  width: calc(100% - 30px);
  height: calc(100% - 40px);
  z-index: 9;
  position: absolute;
  top: 20px;
  transition: all 0.5s linear;
}
#degpeg-widget .degpegVideoCallVideoHost {
  position: absolute;
  height: 120px;
  width: 90px;
  background: #000;
  border: 1px solid #000;
  z-index: 1;
  border-radius: inherit;
  left: 15px;
  top: 40px;
  border-radius: 8px;
}
#degpeg-widget .degpegVideoCallVideoHostVideo {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: -1;
  object-fit: cover;
  border-radius: inherit;
}
#degpeg-widget .degpegVideoCallVideoGuest {
  width: 50%;
  max-height: 100%;
  background: #000;
  position: relative;
  object-fit: cover;
  flex: 1 1 auto;
  border: 3px solid black;
  border-radius: inherit;
}
#degpeg-widget .degpegVideoCallVideoGuest span {
  position: absolute;
  z-index: 1;
  top: 5px;
  right: 10px;
  left: auto;
  font-size: 14px;
}
#degpeg-widget .degpegVideoCallVideoGuestVideo {
  position: relative;
  height: calc(100% - 3px) !important;
  width: 100% !important;
  object-fit: cover;
  border-radius: inherit;
  transition: height 0.5s linear;
}
#degpeg-widget .vjs-big-play-button,
#degpeg-widget .vjs-error-display,
#degpeg-widget .vjs-control-bar {
  display: none;
}
#degpeg-widget .degpegVideoCallVideoHost span {
  position: absolute;
  z-index: 1;
  left: 0px;
  bottom: 0px;
  font-size: 10px;
  background: rgb(255 255 255 / 47%);
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  padding: 2px;
  border-radius: 0px 0 6px 6px;
}
#degpeg-widget .fullscreenvideo {
  position: absolute !important;
  top: 4% !important;
  left: 7% !important;
  width: 86% !important;
  height: 92% !important;
  z-index: 9 !important;
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: all 0.5s linear;
  transform: translate(0) !important;
}
#degpeg-widget .movable {
  cursor: move;
  touch-action: none;
  user-select: none;
}
#degpeg-widget .movable:active {
  cursor: grabbing;
}
#degpeg-widget .oneToOneDegpegMultiCall {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 6px !important;
  display: flex;
  flex-wrap: wrap;
}
#degpeg-widget .oneToOneDegpegMultiCall.fullwidth {
  flex-direction: column;
}
#degpeg-widget .oneToOneDegpegMultiCall.fullwidth .degpegVideoCallVideoGuest {
  width: 100%;
}
#degpeg-widget .oneToOneDegpegMultiCall.halfHeight .degpegVideoCallVideoGuest {
  height: 50%;
}
#degpeg-widget
  .oneToOneDegpegMultiCall.threerowHeight
  .degpegVideoCallVideoGuest {
  height: 33.3%;
}
#degpeg-widget
  .oneToOneDegpegMultiCall.fourrowHeight
  .degpegVideoCallVideoGuest {
  height: 25%;
}
#degpeg-widget .degpeg-linkbtn {
  background: var(--primary-bg-color);
  color: #000;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}
#degpeg-widget .degpeg-connectlinkbtn {
  background: var(--primary-bg-color);
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  padding: 8px 20px;
  margin-top: 10px;
  color: #fff;
}
#degpeg-widget .switchcam .degpegVideoCallVideoGuest {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 8px !important;
  object-fit: cover;
}
#degpeg-widget .switchcam .degpegVideoCallVideoHost {
  position: absolute;
  height: 120px;
  width: 90px;
  background: #000;
  border: 1px solid #fff;
  z-index: 1;
  border-radius: 8px !important;
  left: 15px;
  top: 20px;
  object-fit: cover;
}
#degpeg-widget .degpegVideoCallActionBtn {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  z-index: 1;
}
#degpeg-widget .degpegVideoCallActionBtn button {
  width: 44px;
  height: 44px;
  margin: 0 5px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #efefef;
}
#degpeg-widget .degpegMoreOptionWrapper {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  padding: 50px 15px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
}
#degpeg-widget .degpegMoreOptionWrapper::after {
  content: "";
  flex: 1 1 100%;
  max-width: 33.3%;
}
#degpeg-widget .degpegMoreOptionWrapper button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  position: relative;
  margin-bottom: 20px;
  flex: 0 0 33.3%;
}
#degpeg-widget .degpegMoreOptionWrapper img {
  width: 45px;
  height: 45px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #efefef;
  position: relative;
  padding: 6px;
  object-fit: scale-down;
}
#degpeg-widget .degpegMoreOptionWrapper span {
  color: #fff;
  font-size: 10px;
  margin-top: 5px;
}
#degpeg-widget .degpegMoreOptionWrapper .notify {
  position: absolute;
  left: calc(50% + 10px);
  top: -5px;
  font-size: 8px;
  color: #fff;
  font-weight: bold;
  background: red;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
#degpeg-widget .degpegMoreOptionWrapper .degpegMoreClose {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  color: #fff;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
}
#degpeg-widget .degpegVideoCallActionBtn button.hangup {
  background: #f44336;
}
#degpeg-widget .degpegVideoCallActionBtn button img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
#degpeg-widget .degpegPictureWrapper {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 8px;
  background: rgba(36, 36, 36, 0.9);
  z-index: 3;
}
#degpeg-widget .degpegUploadingCard {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-radius: 8px;
  z-index: 3;
}
#degpeg-widget .degpegUploadingCardWrapper {
  background: #a6a6a6;
  max-width: 100px;
  position: relative;
  height: auto;
  margin: 50px 12px;
  padding: 2px;
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
#degpeg-widget .degpegUploadingCardWrapper img,
#degpeg-widget .degpegUploadingCardWrapper video {
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
}
#degpeg-widget .degpegPictureWrapperCard {
  background: #a6a6a6;
  max-width: 90%;
  height: auto;
  min-width: 250px;
  max-height: 90%;
  margin: auto;
  padding: 8px;
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: scroll;
  z-index: 1;
}
#degpeg-widget .degpegPictureWrapperCard img,
#degpeg-widget .degpegPictureWrapperCard video {
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  max-height: calc(100% - 61px);
  border-radius: 4px;
}
.degpegPictureWrapperCard label {
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  border: 3px dotted #a3a3a3;
  background: #fff;
  width: 100%;
}
.degpegPictureWrapperCard label input{
  display: none;
}
#degpeg-widget .degpegPictureWrapperbutton {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #212121;
  padding: 10px;
  border-radius: 4px;
  margin-top: 5px;
}
#degpeg-widget .degpegPictureWrapperbutton button {
  flex: 1px;
  margin: 0 5px;
  height: 36px;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #fff;
  cursor: pointer;
}
#degpeg-widget .degpegPictureWrapperbutton .upload-btn {
  background: #6fb756;
}
#degpeg-widget .degpegPictureWrapperbutton .cancel-btn {
  background: #dc1818;
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 70px;
  height: 25px;
}
#degpeg-widget .degpegPictureWrapperProcessing {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 8px;
  left: 0;
  margin: 0;
  color: #ffff;
  font-size: 18px;
  position: absolute;
  z-index: 1;
  background: green;
  transition: width 0.5s linear;
}
/* chat */
#degpeg-widget .degpegChatWrapper {
  position: absolute;
  bottom: 4px;
  left: 4px;
  z-index: 3;
  background: #fff;
  height: 300px;
  width: calc(100% - 8px);
  padding: 10px;
  border-radius: 8px;
}
#degpeg-widget .degpegChatWrapper .degpegChatWrapperCard {
  height: 100%;
}
#degpeg-widget .degpegChatWrapper .degpegChatWrapperBody {
  display: flex;
  flex-direction: column;
  height: calc(100% - 45px);
  overflow-y: auto;
  width: 100%;
  padding-top: 25px;
}
#degpeg-widget .degpegChatWrapper .degpegChatWrapperBody span {
  background: #f2f4fa;
  padding: 6px 10px;
  font-size: 14px;
  margin: 5px 0;
  word-break: break-all;
}
#degpeg-widget .degpegChatWrapperCard .degpeg-onetoone-closebtn {
  position: absolute;
  right: 10px;
  top: 10px;
}
#degpeg-widget .degpegChatWrapper .degpegChatWrapperbutton {
  position: relative;
  margin-top: 10px;
}
#degpeg-widget .degpegChatWrapper .degpegChatWrapperbutton input {
  padding-right: 60px;
  height: 40px;
}
#degpeg-widget .degpegChatWrapper .degpegChatWrapperbutton button {
  position: absolute;
  right: 6px;
  top: 6px;
  background: #000;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  height: 28px;
}
#degpeg-widget .degpeg-onetoone-product-wrapper {
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  background: #fff;
  bottom: -1000%;
  padding: 10px 8px;
  max-height: 70%;
  transition: bottom 0.5s ease-in-out;
}
#degpeg-widget .degpeg-onetoone-product-wrapper.active {
  bottom: 0;
}
#degpeg-widget .degpeg-onetoone-product-wrap {
  max-height: 100%;
  overflow-y: auto;
}
#degpeg-widget .degpeg-onetoone-product-card {
  display: flex;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  position: relative;
  margin: 10px 2px;
  padding: 5px;
}
#degpeg-widget .degpeg-onetoone-product-img {
  width: 100px;
  height: 80px;
}
#degpeg-widget .degpeg-onetoone-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#degpeg-widget .degpeg-onetoone-product-desc {
  width: calc(100% - 85px);
}
#degpeg-widget .degpeg-onetoone-product-desc h5 {
  font-weight: 600;
  font-size: 13px;
  line-height: 140%;
  color: #000;
  margin: 5px 0 0;
  display: -webkit-box;
  padding-right: 10px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#degpeg-widget .degpeg-onetoone-product-desc h4 {
  display: inline-flex;
  background: #6fb756;
  border-radius: 3px;
  color: #fff;
  padding: 6px 15px;
  font-size: 12px;
  margin: 8px 0 0;
  font-weight: 400;
}
#degpeg-widget .degpeg-onetoone-product-desc a {
  background: linear-gradient(90deg, #0052d4 0, #4364f7 50%, #6fb1fc 100%);
  border-radius: 4px 0;
  color: #fff;
  text-decoration: none;
  padding: 7px 20px;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  display: flex;
}
#degpeg-widget .degpeg-onetoone-product-desc a img {
  margin-right: 15px;
}
#degpeg-widget .degpeg-onetoone-schedule-card {
  background: #fff;
  padding: 0.5em;
  /* margin-bottom: 30px; */
  border-radius: 8px;
}
#degpeg-widget .degpeg-onetoone-thankyou {
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: calc(100% - 20px);
}
#degpeg-widget .degpeg-onetoone-thankyou span {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #4d4d4d;
  padding: 0 30px;
  display: block;
  text-align: center;
  margin-top: 5px;
}
#degpeg-widget .degpeg-onetoone-thankyou button {
  margin: 15px auto 10px;
  width: 270px;
}
#degpeg-widget .degpeg-onetoone-thankyou b {
  margin: 5px 0;
  display: block;
  color: var(--primary-bg-color);
}
#degpeg-widget .degpeg-onetoone-thankyou-card {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  padding: 0;
}
#degpeg-widget .degpeg-onetoone-thankyou-card h5 {
  margin: 10px 0 5px;
  font-size: 12px;
  color: #808083;
}
#degpeg-widget .degpeg-onetoone-thankyou-card p {
  font-size: 12px;
  line-height: 160%;
  margin: 0;
  color: #000;
}
#degpeg-widget .degpeg-network-btn {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  border-radius: 4px;
  color: #000;
  min-width: 90px;
  text-align: center;
  font-weight: 700;
  height: 20px;
  line-height: 11px;
}
#degpeg-widget .degpeg-record-notify-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  margin: 8px 0 5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 7px 10px;
  border-radius: 8px;
  transform: scale(0.8);
  align-items: center;
  line-height: 14px;
  font-size: 14px;
}
#degpeg-widget .degpeg-record-notify-btn.bottom {
  top: 30px;
}
#degpeg-widget .degpeg-record-notify-btn span {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  transform: scale(1);
  display: flex;
  margin-right: 10px;
  background: #ff5252;
  box-shadow: 0 0 0 0 #ff5252;
  animation: 2s infinite pulse-red;
}
#degpeg-widget .degpeg-record-notify-btn.bottom span {
  background: #e4f336;
  box-shadow: 0 0 0 0 #e4f336;
}
#degpeg-widget .degpeg-chat-notify {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%);
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
}
#degpeg-widget .degpeg-chat-notify img {
  width: 15px;
}
#degpeg-widget .degpeg-chat-notify span {
  position: absolute;
  right: -10px;
  top: -5px;
  font-size: 8px;
  color: #fff;
  font-weight: bold;
  background: red;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.error-msg {
  padding: 15px 30px;
  display: flex;
  text-align: center;
  border-radius: 4px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  box-sizing: border-box;
  position: fixed;
  z-index: 999999999;
  min-width: 250px;
  max-width: 300px;
  top: 30px;
  right: 30px;
  color: #ba3939;
  background: #ffcdcd;
  border: 1px solid #a33a3a;
  /* text-transform: capitalize; */
}
.error-msg::before {
  content: "";
  height: 3px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ba3939;
  animation: 2s ease-in-out load;
}
#deviceOption {
  display: block;
  position: relative;
  z-index: 999;
  margin-top: 250px;
}
#degpeg-loading {
  display: flex;
  align-items: center;
  background-color: #f2f1f4;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  justify-content: center;
  position: absolute;
  margin: auto;
}
#degpeg-loading .degpeg-loading-border {
  width: 120px;
  height: 120px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #e30a79;
  background: linear-gradient(0deg, rgba(227, 10, 121, 0.1) 33%, #e30a79 100%);
  animation: 0.8s linear infinite spin;
}
#degpeg-loading .degpeg-loading-core {
  width: 100%;
  height: 100%;
  background-color: #f2f1f4;
  border-radius: 50%;
}
#degpeg-widget .degpeg-tooltip {
  background: rgb(70, 135, 72, 0.9);
  color: #fff;
  padding: 15px 20px;
  width: auto;
  max-width: 70%;
  margin: auto;
  border-radius: 4px;
  text-align: center;
  position: absolute;
  top: 50px;
  left: 0px;
  right: 0px;
  z-index: 9;
}
#degpeg-widget .success {
  background: rgb(70, 135, 72, 0.9);
  color: #fff;
}
#degpeg-widget .error {
  background: rgba(208, 53, 53, 0.961);
  color: #fff;
}
#degpeg-widget .degpeg-tooltip::before {
  content: "";
  width: 0%;
  height: 4px;
  bottom: 0;
  position: absolute;
  background: #1c6e37;
  left: 0;
}
#degpeg-widget .degpeg-tooltip p {
  margin: 0;
  font-size: 13px;
  line-height: 140%;
}
#degpeg-widget .muteAudio {
  position: relative;
}
#degpeg-widget .offMedia {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#degpeg-widget .offMedia img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}
#degpeg-widget .degpeg-onetoone-recording {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
#degpeg-widget .degpeg-onetoone-recording img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 50px;
}
#degpeg-widget #degpeg-offline-video {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#degpeg-widget .degpeg-onetoone-upload {
  border: 1px dashed #000;
  padding: 10px;
  width: 100%;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
}
#degpeg-widget .degpeg-onetoone-upload input {
  display: none;
}
#degpeg-widget .degpeg-onetoone-upload label {
  display: flex;
  align-items: center;
  justify-content: center;
}
#degpeg-widget .degpeg-onetoone-upload label svg {
  margin-right: 10px;
}
#degpeg-widget .degpeg-or-option {
  margin: 20px 0;
  font-size: 14px;
  color: #5a5a5a;
}
#preloader_1 {
  position: relative;
  margin-top: 30px;
  width: 100%;
}
#preloader_1 div {
  display: block;
  bottom: 0px;
  width: 4px;
  height: 5px;
  background: #fff;
  position: absolute;
  animation: preloader_1 1.5s infinite ease-in-out;
}
#preloader_1 div:nth-child(2) {
  left: 11px;
  animation-delay: 0.2s;
}
#preloader_1 div:nth-child(3) {
  left: 22px;
  animation-delay: 0.4s;
}
#preloader_1 div:nth-child(4) {
  left: 33px;
  animation-delay: 0.6s;
}
#preloader_1 div:nth-child(5) {
  left: 44px;
  animation-delay: 0.8s;
}
@keyframes preloader_1 {
  0% {
    height: 5px;
    transform: translateY(0px);
    background: #9b59b6;
  }
  25% {
    height: 30px;
    transform: translateY(15px);
    background: #3498db;
  }
  50% {
    height: 5px;
    transform: translateY(0px);
    background: #9b59b6;
  }
  100% {
    height: 5px;
    transform: translateY(0px);
    background: #9b59b6;
  }
}
.assistCard {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 999999;
}
.assistCard .assistVideoWrapper {
  width: 84px;
  height: 84px;
  cursor: pointer;
  margin-left: auto;
  position: relative;
  /* animation: 1s ease 5s 1 normal forwards expandIcon; */
}
.assistCard video {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* border: 2px solid #de8181; */
  object-fit: cover !important;
  /* animation: 1s ease 5s 1 normal forwards radius-animation; */
  box-sizing: border-box !important;
}
.assistCard .assistClose {
  all: revert;
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.6);
  padding: 2px;
  box-sizing: content-box;
  color: #fff;
  border-radius: 50%;
  visibility: hidden;
  opacity: 1;
  animation: after-animation-effect 1s forwards;
  height: 20px;
  width: 20px;
  line-height: 20px;
}
.assistCard .assistClose svg {
  width: 20px;
  height: 20px;
}
.assistCard .assistCardOption {
  position: absolute;
  background: #fff;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0;
  margin: 0;
  border-radius: 0 0 10px 10px;
  width: 100%;
  bottom: 0;
  opacity: 0;
  transition: all 0.7s linear;
}

.assistCard video:hover + .assistCardOption,
.assistCard .assistCardOption:hover {
  opacity: 1;
}
.assistCard .assistCardOption li {
  list-style-type: none;
  padding: 0 10px;
}
.assistCard .assistCardTooltip {
  background: #fff;
  padding: 10px 0px 10px 30px;
  position: relative;
  border-radius: 10px;
  color: #1962dc;
  font-size: 15px;
  width: 185px;
  line-height: 140%;
  margin-bottom: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 1.5s linear;
}
.assistCard .assistCardTooltip::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  display: inline-block;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-color: rgba(255, 0, 0, 0.8);
  animation: 1s ease 0s infinite blinker;
}
.assistCard .assistCardTooltip::after {
  content: " ";
  position: absolute;
  width: 2rem;
  height: 1rem;
  top: 100%;
  right: 20px;
  background-color: inherit;
  clip-path: polygon(0 0, 80% 0, 100% 100%);
}
.assistCard:hover .assistCardTooltip {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s linear;
}
.assistFullCard {
  display: flex;
  margin: auto;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.assistFullCard .assistCardHeader {
  text-align: center;
}
.assistFullCard .assistCardHeader h5 {
  font-size: 20px;
  margin: 20px 0 10px;
}
.assistFullCard .assistCardHeader p {
  font-size: 14px;
  margin: 0 0 20px;
  color: rgb(109, 109, 109);
}
.assistFullCard h4 {
  color: rgb(109, 109, 109);
  font-size: 14px;
  margin: 20px 0 10px;
  font-weight: 500;
  text-align: center;
}
.assistFullCard .assistFullCardVideo {
  height: 250px;
  width: 250px;
  border-radius: 100%;
  margin: auto;
  position: relative;
}
.assistFullCard .assistFullCardVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}
.assistFullCard .assistFullCardMute {
  background: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}
.assistFullCard .assistFullCardOption {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
  justify-content: space-evenly;
}
.assistFullCard .assistFullCardOption li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  flex: 1;
}
.assistFullCard .assistFullCardOption li button {
  width: 55px;
  height: 55px;
  display: flex;
  border-radius: 100%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background: #060606;
  margin-bottom: 10px;
}
.assistFullCard .assistFullCardOption li span {
  font-size: 10px !important;
  color: #010101;
  height: 28px;
  text-align: center;
}
.assistFullCard .assistFullCardOption li button svg {
  width: 25px;
}
.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 60px;
}
.loader-ripple div {
  position: absolute;
  border: 4px solid #fff;
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes expandIcon {
  from {
    width: 84px;
    height: 84px;
  }
  to {
    width: 180px;
    height: 280px;
  }
}
@keyframes after-animation-effect {
  from {
    visibility: hidden;
  }
  to {
    visibility: unset;
  }
}
/* @keyframes radius-animation {
  from {
    border-radius: 50%;
  }
  to {
    border-radius: 10px;
    border: 0px solid #fff;
  }
} */
@keyframes top {
  from {
    opacity: 0;
    visibility: hidden;
    opacity: 0;
    top: -1000%;
  }
  to {
    opacity: 1;
    visibility: visible;
    opacity: 1;
    top: 00px;
  }
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 82, 82, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
  }
}
@keyframes scaleFromBottom {
  0% {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@-webkit-keyframes scaleFromBottom {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    visibility: visible;
  }
}
@-moz-keyframes scaleFromBottom {
  0% {
    -moz-transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
    visibility: visible;
  }
}
@-o-keyframes scaleFromBottom {
  0% {
    -o-transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    -o-transform: scale(1);
    visibility: visible;
  }
}
@-ms-keyframes scaleFromBottom {
  0% {
    -ms-transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    -ms-transform: scale(1);
    visibility: visible;
  }
}
@keyframes scaleFromBottom {
  0% {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
}
@keyframes pulse {
  0% {
    width: 0%;
  }
  100% {
    width: var(--width);
  }
}
#degpeg-widget .degpegVideoCallActionCtaBtn,
#degpeg-widget .degpegVideoCallActionSwitchBtn {
  display: none !important;
}
@media screen and (max-width: 991px) {
  #degpeg-widget.degpeg-onetoone-container {
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 0;
    height: 100%;
    /* height: calc(var(--vh, 1vh) * 100); */
  }
  #degpeg-widget .degpegPictureWrapper,
  #degpeg-widget .degpegVideoCallCard,
  #degpeg-widget .switchcam .degpegVideoCallVideoGuest,
  #degpeg-widget .degpegVideoCallVideoGuest,
  #degpeg-widget .degpegVideoCallVideoHost {
    border-radius: 0 !important;
  }
  #degpeg-widget .degpegPictureWrapperCard {
    max-width: calc(100% - 15px);
  }
  #degpeg-widget .degpegVideoCallActionSwitchBtn {
    display: flex !important;
  }
  .assistFullCard {
    height: calc(100% - 100px);
  }
  #degpeg-widget .degpeg-onetoone-footer,
  #degpeg-widget .oneToOneDegpegMultiCall {
    border-radius: 0px !important;
  }
}

@media screen and (min-width: 992px) and (max-height: 660px) {
  #degpeg-widget.degpeg-onetoone-container {
    min-height: 500px;
    max-height: calc(100vh - 30px);
  }
}

.shared-screen {
  object-fit: contain !important;
  background-color: #000 !important;
}

.iti__flag {
  display: block !important;
}

.fieldSeperator {
  margin-bottom: 10px !important;
}

.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 12px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s, bottom 0.5s;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

#chat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  max-height: 400px;
  overflow-y: auto;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.avatar {
  margin-top: 12px !important;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  object-fit: cover;
}

.message-container {
  display: flex;
  flex-direction: column;
  max-width: 300px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 5px;
}

.user-name {
  font-weight: bold;
  font-size: 14px;
  color: #000;
}

.timestamp {
  font-size: 12px !important;
  background-color: white !important;
}

.chat-message {
  background-color: #e4e6eb;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  color: #000;
  width: fit-content;
  max-width: 100%;
  margin: 0px !important;
}