#map {
    height: 400px;
    width: 100%;
    border-radius: 5px;
}

.loginRegiter_btn button {
    width: 100%;
}

input#phone {
    padding: 6px 100px !important;
}

.wtruncate {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.discount-relative {
    position: relative;
    width: 300px;
    height: 89px;
}

#discount-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 310px;
    height: 95px;
    background-image: url('/assets/img/discount-banner.png');
    background-repeat: no-repeat;
    background-size: cover;
}

#business-image {
    /* color: white; */
    position: absolute;
    top: 20px; /* Adjust the positioning of the text as needed */
    left: 20px; /* Adjust the positioning of the text as needed */
}

#discount-image {
    position: absolute;
    top: 20px; /* Adjust the positioning of the text as needed */
    right: 20px; /* Adjust the positioning of the text as needed */
}

#discount-text {
    position: absolute;
    bottom: 40px; /* Adjust the positioning of the text as needed */
    right: 6%; /* Adjust the positioning of the text as needed */
    transform: translateX(-50%); /* Center horizontally */
    color: black; /* Text color */
    font-size: 14px; /* Font size */
    font-weight: bold; /* Font weight */
}

.loader-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 60px;
 /   aspect-ratio: 1;
    border-radius: 50%;
    -webkit-mask: linear-gradient(0deg, #000 55%, #0000 0) bottom/100% 18.18%;
    background: linear-gradient(#f03355 0 0) bottom/100% 0% no-repeat #ddd;
    animation: l8 2s infinite steps(7);
}
@keyframes l8 {
    100% {
        background-size: 100% 115%;
    }
}

.chat-screen .right-sight .chat-box .chat-body .chat_wrapper_inner::-webkit-scrollbar {
  width: 5px;
}


.chat-screen .right-sight .chat-box .chat-body .chat_wrapper_inner::-webkit-scrollbar-track {
  background: #181829;
}


.chat-screen .right-sight .chat-box .chat-body .chat_wrapper_inner::-webkit-scrollbar-thumb {
  background: #1d1f33;
}


.chat-screen .right-sight .chat-box .chat-body .chat_wrapper_inner {
    overflow: overlay;
}


.bottom_box_inner {
    display: flex;
    width: 100%;
    padding: 0 20px 20px;
}
@media (max-width: 1499px) {
    .bottom_box_inner {
        margin-top: 35px;
   }
}
.bottom_box_inner .input-group {
    background: #1d1f33;
    border-radius: 22px;
    padding: 10px 20px;
    align-items: center;
    position: relative;
}
.bottom_box_inner .input-group .form-control {
    background: transparent;
    border: 0;
    padding: 0;
    color: #fcfcfc;
}
.bottom_box_inner .input-group .form-control:focus {
    box-shadow: none;
}
.bottom_box_inner .input-group .form-control::placeholder {
    font-family: "Inter";
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    color: #fcfcfc;
}
.bottom_box_inner .input-group .input-group-text {
    position: absolute;
    right: 20px;
    background: transparent;
    border: 0;
    padding: 0;
}




range-slider {
    --element-height: 24px;
    --track-height: 4px;
    --thumb-size: 16px;
    position: relative;
    display: flex;
    align-items: center;
    height: var(--element-height);
    width: 100%;
    min-width: 130px;
    margin: 2px;
    overflow: visible;
    cursor: pointer;
    touch-action: none;
  }

  range-slider:focus {
    outline: 0;
  }

  range-slider[disabled] {
    filter: grayscale(1);
    opacity: .8;
  }

  range-slider:before {
    content: "";
    display: block;
    width: 100%;
    height: var(--track-height);
    border-radius: calc(var(--track-height) / 2);
    background: linear-gradient(88.34deg, #F3701B 4.33%, #F80A60 58.01%, #A216DC 105.61%) 0/var(--value-percent,0) 100% no-repeat #0B0B0B;

  }

  range-slider:focus .thumb {
    box-shadow: 0 0 0 .3em rgba(98, 33, 234, .2);
  }

  range-slider.touch-active .thumb-wrapper .thumb {
    box-shadow: none;
    transform: scale(1.5);
  }
