@font-face {
  font-family: Roboto-Light;
  src: url(../fonts/Roboto/Roboto-Light.ttf);
}
@font-face {
  font-family: Roboto-Regular;
  src: url(../fonts/Roboto/Roboto-Regular.ttf);
}
@font-face {
  font-family: Roboto-Bold;
  src: url(../fonts/Roboto/Roboto-Bold.ttf);
}
@font-face {
  font-family: UbuntuMono-Regular;
  src: url(../fonts/Roboto/UbuntuMono-Regular.ttf);
}
@font-face {
  font-family: UbuntuMono-Bold;
  src: url(../fonts/Roboto/UbuntuMono-Bold.ttf);
}

/*bootsrap redefined*/
:root {
  --white: #FFFFFF;  
  /*--primary: #6659ff;*/
  --primary: #005298;

  --primary-light: #99cfff;
  --primary-extralight: #edecff66;
  /*--secondary: #fa8070;*/
  --secondary: #ACBCFF;

  --secondary-light: #fee3e0;
  --success: #63d5be;
  --success-light: #e3f7f3;
  /*--info: #b52af6;*/
  --info: #AEE2FF;
  --info-light: #E6FFFD;

 /* --warning: #feb858;*/
  --warning: #ffc838;

  --warning-light: #ffe9b3;
 /* --danger: #f1523d;*/
  --danger: #d71313;
  --danger-light: #f15b5b;
  --light: #eeeded;
  --dark: #44588f;

  --bs-white: #FFFFFF;  
  --bs-primary: #6659ff;
  --bs-primary-light: #edecff;
  --bs-primary-extralight: #edecff66;
  --bs-secondary: #fa8070;
  --bs-secondary-light: #fee3e0;
  --bs-success: #63d5be;
  --bs-success-light: #e3f7f3;
  --bs-info: #b52af6;
  --bs-warning: #feb858;
  --bs-warning-light: #fff1de;
  --bs-danger: #f1523d;
  --bs-danger-light: #feefee;
  --bs-light: #d8ecff;
  --bs-dark: #44588f;

  --space: 10px;
}

.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-warning{
  color: var(--warning) !important;
}
.bg-success-light{
  background-color: #e3f7f3;
}
.bg-primary-light{
  background-color: #99cfff;
}
.bg-warning-light{
  background-color: #ffe9b3;
}
.bg-danger-light{
  background-color: #ffdfdf;
}

.row {
  --bs-gutter-x: var(--space);
}
.row.g-0, .row.gx-0 {
  --bs-gutter-x: 0;
}
.card {
  --bs-card-spacer-y: var(--space);
  --bs-card-spacer-x: var(--space);
  --bs-card-cap-padding-y: var(--space);
  --bs-card-cap-padding-x: var(--space);
  --bs-card-img-overlay-padding: var(--space);
  --bs-card-group-margin: var(--space);
}
.btn {
  --bs-btn-padding-x: 5px;
  --bs-btn-padding-y: 4.1px;
  --bs-btn-font-size: 13px;
  font-weight: 600;
}

.modal-backdrop {
    --bs-backdrop-zindex: 10000;
}
.modal {
    --bs-modal-zindex: 10001;
}

.badge-soft-warning {
  color: #996100;
}
.alert {
  --bs-alert-padding-y: 5px;
}
.input-group .btn {
    z-index: 0;
}
/*bootstrap redefined*/

.odinfo-dt .bg-soft-info{
  background-color: #D2E9FB;
}
.odinfo-dt .bg-soft-primary{
  background-color: #D3D4EF;
}
.odinfo-dt .bg-soft-warning{
  background-color: #FFEFD4;
}
.odinfo-dt .bg-soft-success{
  background-color: #C9ECDE;
}
.odinfo-dt .bg-soft-secondary{
  background-color: #DCDDE2;
}
.odinfo-dt .bg-soft-dark{
  background-color: #C7C8C9;
}
.odinfo-dt .bg-soft-danger{
  background-color: #FFD7D6;
}

/*flatpickr custom start*/
.flatpickr-month {
    width: calc(100% - 68px);
    position: unset !important;
}
.flatpickr-prev-month, .flatpickr-next-month {
    width: 34px;
    position: unset !important;
}
.flatpickr-current-month {
    font-size: 16px;
    width: 100%;
    padding: 6px 3px;
    position: unset;
    height: auto;
}
/*flatpickr custom end*/

/*loader custom start*/
.loader-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10100;
  background: rgba(255, 255, 255, 0.97);
}
.loader-inr {
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader-main .sk-fading-circle {
  margin: auto;
  width: 55px;
  height: 55px;
}
.loader-main .sk-circle .sk-child::before, .loader-main .sk-fading-circle .sk-circle::before {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb),var(--bs-bg-opacity)) !important;
}
/*loader customm end*/


/******* for scroll bar colour*********/
::-webkit-scrollbar {
    width: 5px;
    background:var(--primary-light);
    height: 5px;
}

::-webkit-scrollbar-track {
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background:var(--bs-primary);
}

/*! Firefox */    
html{
    scrollbar-color: var(--primary-light) var(--primary);
}

/*! Other Browser */
html {
  --scrollbarBG: var(--primary-light);
  --thumbBG: var(--bs-primary);
}
body::-webkit-scrollbar {
  width: 5px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
  border-radius: 6px;
  border: 2px solid var(--scrollbarBG);
}

a {
  text-decoration: none !important;
}
/****************/

/* login secton start */
.log-section {
  display: none;
}
.log-section.sec-show {
  display: block;
}
.auth-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  background: #fafafa;
}
.auth-logBox {
    width: 25%;
}
.resndOtp span {
  cursor: pointer;
}
.resndOtp span:hover {
  color: var(--bs-btn-hover-bg);
}
.sh-passBtn {
    padding: 0;
    width: 35px;
    position: relative;
}
.sh-passBtn i {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 35px;
}
.sh-passBtn:active {
  color: var(--bs-black);
}
.loginPage::after,.loginPage::before{
  display: none;
}
.logcontent-bx img {
  max-width: 678px;
  height: 350px;
  margin: 0 auto 30px;
}
.loginPage .slick-dots li {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: #ddd;
  margin: 0 5px;
  border-radius: 25px;
  cursor: pointer;
}
.loginPage .slick-dots li.slick-active {
  width: 35px;
}
.loginPage .slick-dots li.slick-active,.loginPage .slick-dots li:hover {
  background: var(--bs-primary);
}
.loginPage .slick-dots li button::before {
  display: none;
}
.auth-bg-inr {
  height: 450px;
  margin-top: calc(50vh - 330px);
}
.auth-bg-inr h6 {
  font-size: 12px;
  line-height: 20px;
}
.cont-shd {
  width: 75%;
  margin: auto;
}
.logFooter {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 3px;
  width: 100%;
  background: var(--dark);
  font-size: 13px;
  color: var(--bs-white);
}
.logFooter a{
  color: var(--white);
}
.logFooter a:hover{
  color: var(--primary);
}
.auth-content .logBtn {
  height: 40px;
  font-size: 14px;
}
.loginPage .slick-dots {
  bottom: -65px !important; 
}
.auth-logo img {
  max-width: 200px;
}

/** Login Responsive code start **/
@media screen and (max-width:1399px) {
  .auth-bg,.auth-bgOuter {
    width: 66.66666667%;
  }
  .auth-logBox {
      width: 33.3333%;
  }
  .logFooter {
    font-size: 13px;
  }

}
/* 1399end */
@media screen and (max-width:1199px) {
  .testi-contain h4 {
    font-size: 16px;
  }
  .auth-bg,.auth-bgOuter {
    width: 58.33333333%;
  }
  .auth-logBox {
      width: 41.6667%;
  }
  .logcontent-bx img {
    height: 250px;
    max-width: 80%;
  }
  .cont-shd {
    width: 80%;
  }
}
/* 1199end */

@media screen and (max-width:991px) {
  .auth-bg,.auth-bgOuter {
    width: 50%;
  }
  .auth-logBox {
      width: 50%;
  }
  .auth-full-page-content {
      padding: var(--space) var(--space) 50px !important;
  }
  .testi-contain h4 {
    font-size: 14px;
  }
  .logContSec {
    padding: 0px !important;
  }
  .logcontent-bx img {
    max-width: 90%;
  }
  .cont-shd {
    width: 90%;
  }
}
/* 991end */

@media screen and (max-width:767px) {
  .auth-logo {
    margin-top: 20px;
  }
  .auth-logBox {
      width: 100%;
  }
  .cont-shd {
    width: 95%;
  }
}
/* 767end */

/** Login Responsive code End **/
/* login secton end */


p {
  margin-bottom: var(--space);
}

.counter-item .card-body {
  padding: 17px var(--space);
}
.counter-item {
  min-height: 121px;
}
.page-content {
  padding: 60px var(--space) 70px;
}
.card {
  margin-bottom: var(--space);
}

body {
  position: relative;
/*  font-family: OpenSans-Regular;*/
  font-family: var(--bs-body-font-family);
}
body::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url('../images/bg_1.png');
  background-position: bottom left;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-repeat: no-repeat;
}
body::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  background-image: url('../images/bg_2.png');
  background-position: center;
  width: 750px;
  height: 550px;
  opacity: 0.05;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}
.img-fluid {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}
.cursor-pointer {
  cursor: pointer;
}

.p-3 {
  padding: var(--space) !important;
}
.pt-3 {
  padding-top: var(--space) !important;
}
.pb-3 {
  padding-bottom: var(--space) !important;
}
.ps-3 {
  padding-left: var(--space) !important;
}
.pe-3 {
  padding-right: var(--space) !important;
}
.px-3 {
  padding-right: var(--space) !important;
  padding-left: var(--space) !important;
}
.py-3 {
  padding-top: var(--space) !important;
  padding-bottom: var(--space) !important;
}


.m-3 {
  margin: var(--space) !important;
}
.mt-3 {
  margin-top: var(--space) !important;
}
.mb-3 {
  margin-bottom: var(--space) !important;
}
.ms-3 {
  margin-left: var(--space) !important;
}
.me-3 {
  margin-right: var(--space) !important;
}
.mx-3 {
  margin-right: var(--space) !important;
  margin-left: var(--space) !important;
}
.my-3 {
  margin-top: var(--space) !important;
  margin-bottom: var(--space) !important;
}


.card.card-transparent {
  background: none;
  border: 0;
}
.card.card-transparent > .card-header {
  background: none;
  padding: 0 0 calc(0.5 * var(--space));
  margin-bottom: 10px;
}
.card.card-transparent > .card-body {
  padding: 0;
}

.btn-label {
  padding-left: 41px;
  padding-right: 10px;
}


.navbar-header {
  padding: 0 var(--space) 0 0;
}
#page-topbar {
  z-index: 9999;
}
.form-control,.form-control:focus {
  color: var(--bs-dark);
}
.modal-footer > * {
  margin: 0 0 0 var(--space);
}

.header-item i {
  font-size: 20px;
}
button:focus,.btn:focus,.form-select:focus {
  box-shadow: none !important;
  outline: none !important;
}

.f-img {
  max-width: 100px;
  max-height: 100px;
  width: auto;
  height: auto;
  border-radius: 50%;
}
.myfollower-item .badge {
  background: #fff;
  padding: 4px 7px;
}
.myfollower-item .descp {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 135px;
}
.watch-item-main {
  margin-bottom: calc(-1 * var(--bs-gutter-x));
}
.watch-item {
  width: 10%;
  margin-bottom: var(--bs-gutter-x);
}
.watch-item-inr {
  padding: 5px;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.watch-item-inr p {
  margin: 0;
  font-size: 10px;
}
.watch-item-inr p.w-val i {
  font-size: 13px;
}


.watch-item-main .bg-soft-primary i{
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb),var(--bs-text-opacity)) !important;
}
.watch-item-main .bg-soft-secondary i{
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb),var(--bs-text-opacity)) !important;
}
.watch-item-main .bg-soft-success i{
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb),var(--bs-text-opacity)) !important;
}
.watch-item-main .bg-soft-info i{
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb),var(--bs-text-opacity)) !important;
}
.watch-item-main .bg-soft-warning i{
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb),var(--bs-text-opacity)) !important;
}
.watch-item-main .bg-soft-danger i{
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb),var(--bs-text-opacity)) !important;
}
.watch-item-main .bg-soft-dark i{
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity)) !important;
}
.watch-item-main .bg_icon {
  position: absolute;
  top: -11px;
  right: 13px;
  font-size: 45px;
  opacity: 0.15;
}

.w-nm {
  font-size: 11px;
}
.counterIcon {
  width: 90px;
  height: 90px;
  line-height: 80px;
  position: absolute;
  right: 5px;
  top: -33px;
  text-align: center;
  font-size: 55px;
  animation: morph 6s ease-in-out infinite;
/*  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;*/
}
.counterIcon-1 {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.counterIcon-2 {
  border-radius: 12% 88% 26% 74% / 55% 31% 69% 45%;
}
.counterIcon-3 {
  border-radius: 34% 66% 77% 23% / 32% 18% 82% 68%;
}
.counterIcon-4 {
  border-radius: 92% 8% 64% 36% / 70% 50% 50% 30%;
}

@keyframes morph {
  0% {
    border-radius:  60% 40% 30% 70% / 60% 30% 70% 40%;
  } 

  50% {
    border-radius:  30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius:  60% 40% 30% 70% / 60% 30% 70% 40%;
  } 
}



.card-header .nav-tabs-custom.card-header-tabs .nav-link {
  height: 23px;
  padding-top: 0;
  padding-bottom: 0px;
  margin-top: 25px;
}

.myFollowers .list-group-item:hover {
  background-color: transparent;
}
.myFollowers .list-group-item:hover .u-nam{
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb),var(--bs-text-opacity)) !important;
}
.myFollowers .actinBtns {
  position: absolute;
  top: 0;
  right: 0;
}
.myFollowers {
  max-height: 265px;
  overflow-y: auto;
}
.uploadModal .file-group {
  position: relative;
  overflow: hidden;
}
.uploadModal .input-group.file-group .btn {
  width: 100%;
  position: unset;
  transform: unset;
  border-radius: 3px !important;
}
.uploadModal .file-group input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.table > :not(caption) > * > * {
  padding: 5px;
  vertical-align: middle;
}
.btn-soft-success:focus{
  color: #2ab57d;
  background-color: rgba(42,181,125,.1);
  border-color: transparent;
}
.btn-soft-success.btn-active{
  color: #fff;
  background-color: #2ab57d;
}
.follownowBtn.btn-active i.mdi::before{
  content: "\F11FE";
}
.btn-soft-danger:focus{
  color: #fd625e;
  background-color: rgba(253,98,94,.1);
  border-color: transparent;
}
.btn-soft-danger.btn-active{
  color: #fff;
  background-color: #fd625e;
}
.btn.btn-icon {
  font-size: 24px;
  padding: 0 10px;
}
.unfollownowBtn i.mdi::before{
  content: "\F0AED";
}
.prfifo-item {
  border-bottom: 1px dashed #ddd;
  padding: 3px 0;
}
.prfifo-item:first-child {
  padding-top: 0;
}
.prfifo-item:last-child {
  border-bottom: 0;
}
.prfifo-item .badge {
  min-width: 100px;
}
.with-icon {
  text-align: center;
  font-size: 36px;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  width: 67px;
  height: 67px;
  line-height: 60px;
}


.sec-left {
  width: 50px;
}
.newodrreqmdl .ribbon-top-right {
  top: -14px;
  right: unset;
  transform: translate(23px, 14px) rotate(-45deg);
  left: -35px;
}
/*.grp-bx {
  margin: 15px 0;
}*/
.sec-right {
  width: calc(100% - 50px);
  padding-left: 10px;
}

.dlvper-item .sec-left {
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.dlvper-item .sec-right {
  width: calc(100% - 60px);
}

.s-price {
  font-size: 15px;
  margin: 0;
}
.s-price i {
  width: 100%;
  display: block;
  font-size: 16px;
}
.sec-right p {
  font-size: 12px;
}
.my-subscrp .grp-bx {
  margin: 0px 0;
  height: 39px;
  width: auto;
  max-width: 100%;
  border-radius: 3px;
  overflow: hidden;
}
.my-subscrp .grp-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.my-subscrp .s-price {
  font-size: 12px;
  margin: -1px 0 0;
}
.list-itm {
  transition: 0.200s;
}
.list-itm:hover {
  border-color: rgba(81,86,190,.25) !important;
}
.notifications-main .activity-wid {
  margin-left: 0;
}
.notifications-main .activity-wid .activity-list .activity-icon {
  left: 0;
}
.activity-wid .activity-list .activity-icon {
  top: 9px;
  z-index: 0;
}
.notifications-main .activity-border::before {
  display: none;
}
.notifications-main .activity-wid .activity-list {
  position: relative;
  padding-left: 50px !important;
}
.hd {
  font-size: 16px;
  margin: 0 0 0;
}
.shd {
  font-size: 10px;
}
.details-page .price-dt {
  font-size: 18px;
}
.details-page .avatar-xl {
  width: 100px;
  /*max-height: 130px;*/
  font-size: 75px;
  /*height: auto;*/
}
.details-page .price-dt span {
  font-weight: var(--bs-body-font-weight);
  font-size: 14px;
  margin-bottom: 3px;
}
.notify-box {
  height: 230px;
  overflow: auto;
}
.page-title-box .page-title-txt {
  font-size: 16px;
  margin: 0;
}
.max-scroll {
  max-height: 300px;
}
.details-page .grp-bx {
  margin: 0;
}
.modal-header,.modal-body,.modal-footer {
  padding: var(--space);
}
.modal-title {
  font-size: 14px;
}
.modal-header .btn-close {
  font-size: 10px;
}
.card-h-100 {
  height: calc(100% - var(--space));
}
.footer {
  padding: calc(var(--space) * .5);
  height: auto;
  font-size: 13px;
}
.totalCommAmt {
  font-size: 16px;
}
.cardHdr-btns {
  position: absolute;
  top: 5px;
  right: 10px;
}
.dtInr-right {
  position: absolute;
  top: var(--space);
  right: calc(.5 * var(--bs-gutter-x));
  z-index: 1;
  width: auto;
}
.graphImg-box {
  margin: auto;
}
.table-responsives .col-sm-12 {
  overflow: auto;
}
.dataTables_empty {
  color: var(--bs-danger);
}
div.dataTables_wrapper div.dataTables_info {
  padding-top: 10px;
  padding-bottom: 8px;
}
div.dataTables_wrapper div.dataTables_length label {
  margin-bottom: 0;
}
.dt-bootstrap4 {
  display: flex;
  flex-wrap: wrap;
}
.dt-buttons {
  width: 33.33%;
  order: 2;
  text-align: center;
}
.dataTables_length {
  width: 33.33%;
  order: 1;
}
.dataTables_filter {
  width: 33.33%;
  order: 3;
}
.table-responsives .dataTables_scroll {
  margin-top: var(--space) !important;
  margin-bottom: var(--space) !important;
  width: 100%;
  order: 4;
}
.dataTables_info {
  width: 50%;
  order: 5;
}
.dataTables_paginate {
  width: 50%;
  order: 6;
}
.dt-buttons button {
  border: 0;
  padding: 3px 7px;
  font-size: 12px;
  border-radius: 3px;
}
.dt-buttons button.buttons-copy{
  background-color: #5156be;
  color:#fff;
}
.dt-buttons button.buttons-copy:hover{
  background-color: #303482;
  color:#fff;
}
.dt-buttons button.buttons-csv{
  background-color: #74788d;
  color:#fff;
}
.dt-buttons button.buttons-csv:hover{
  background-color: #454754;
  color:#fff;
}
.dt-buttons button.buttons-excel{
  background-color: #2ab57d;
  color:#fff;
}
.dt-buttons button.buttons-excel:hover{
  background-color: #1d7c56;
  color:#fff;
}
.dt-buttons button.buttons-pdf{
  background-color: #4ba6ef;
  color: #fff;
}
.dt-buttons button.buttons-pdf:hover{
  background-color: #148aeb;
  color:#fff;
}
.dt-buttons button.buttons-print{
  background-color: #fd625e;
  color:#fff;
}
.dt-buttons button.buttons-print:hover{
  background-color: #fd231c;
  color:#fff;
}



.table-responsives div.dataTables_wrapper div.dataTables_filter label {
  margin-bottom: 0 !important;
}
.table-responsives div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  margin: 0px 0 !important;
}
.table-responsives tfoot .form-control {
  padding: 0 var(--space);
  height: 28px;
  font-size: 12px;
}
.activity-wid .notify-item .activity-icon span {
  border: 0px;
}
.notify-item .timeline-list-item {
  padding-left: 10px;
}
.activity-wid .notify-item .activity-icon span {
  margin-top: 7px;
}
.footer {
  position: fixed;
}
body[data-sidebar-size="lg"],body[data-sidebar-size=sm] {
  min-height: calc(100vh - 30px);
}
body[data-sidebar-size="lg"] #sidebar-menu {
  height: calc(100vh - 70px);
  overflow: auto;
}
.plan-item {
  width: 33.33%;
}
.plan-item .card-title {
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.odinfo-dt .od-hd {
  font-size: 14px;
}
.odinfo-dt .od-shd {
  font-size: 13px;
}
.odStats .badge {
  font-size: 14px;
  border: 0;
}
.allStats-bx {
  margin-top: -22px;
  margin-bottom: 5px;
}
.allStats-bx .btn {
  width: 100%;
  padding: 0px 3px;
  font-size: 11px;
  height: 100%;
}



.ttlAmt {
  font-size: 14px;
  margin: 0;
  height: 100%;
  align-items: center;
  display: flex;
}
.ttlAmt .badge {
  font-size: 14px;
}
.DeliveryPerson-box {
  text-align: center;
}
.DeliveryPerson-box .dlv-img {
  width: 67px;
  height: 67px;
  padding: 3px;
  background: var(--bs-gray-600);
  border-radius: 50%;
  margin: 0 auto 10px;
  overflow: hidden;
}
.DeliveryPerson-box .dlv-img .img-fluid {
  border-radius: 50%;
}
.DeliveryPersonsListPage .DeliveryPerson-box .dlv-img img.addedVendrImg,.DeliveryPerson-box .dlv-img img.addedVendrImg {
    width: 14px !important;
    position: absolute;
    bottom: 5px;
    left: 13px;
    background: #fff;
    padding: 1px;
    border-radius: 25px;
    height: 14px !important;
}
.DeliveryPerson-box .od-hd {
  font-size: 13px;
  line-height: 18px;
}
.DeliveryPerson-box .od-shd {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.odinf-left {
  width: calc(100% - 200px);
}
.odinf-right {
  width: 200px;
}
.DeliveryPersonInfo{
/*  display: none;*/
}
.DeliveryPerson-select i {
  font-size: 54px;
  line-height: 1;
  margin-top: -10px;
  display: block;
}
.DeliveryPerson-select .slct-dlvhd {
  font-size: 14px;
  margin-bottom: 9px;
}
.DeliveryPerson-select {
  display: none;
}
.DeliveryPerson-select,.DeliveryPersonInfo {
  height: 134px;

}
.nodIcon {
  --bs-bg-opacity: 1;
  font-size: 55px;
  line-height: 1;
 /* background: -webkit-linear-gradient(rgba(var(--bs-primary-rgb),var(--bs-bg-opacity)), #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  color: var(--primary);
}
.newodrreqmdl .sec-left {
  width: 70px;
  overflow: hidden;
}
.newodrreqmdl .sec-right {
  width: calc(100% - 70px);
}
.newodrreqmdl .grp-bx {
  margin: 0;
}
.newodrreqmdl .odInf-r .s-price i {
  font-size: 20px;
  line-height: 1;
}
.newodrreqmdl .odInf-r .s-price {
  font-size: 16px;
}
.newodrreqmdl .odInf-r .card-title {
  font-size: 14px;
}
.mdl-Footer,.mdl-Body,.mdl-Header{
  display: none;
}
.mdl-Body.mdl-Body-open,.mdl-Footer.mdl-Footer-open{
  display: block;
}
.mdl-Header.mdl-Header-open{
  display: flex;
}
.newodrreqmdl .plan-item {
  width: 50%;
}
.newodrreqmdl .modal-dialog {
  max-width: unset;
  width: 800px;
}
.newodrreqmdl .my-subscrp {
  margin-bottom: calc(-1 * var(--bs-gutter-x));
}
.payStts {
  margin-bottom: 4px;
}
.payStts .badge {
  font-size: 13px;
}
.mdl-Header .goReason-btn {
  position: relative;
  top: 5px;
}
.dlvryprsBox {
  width: 20%;
}
.slct-DeliveryPerson {
  cursor: pointer;
}
.slct-DeliveryPerson:hover,.slct-DeliveryPerson.DeliveryPerson-Actv {
  border-color: var(--bs-primary);
}





.dlvper-item .grp-bx {
  margin: 0;
  border-radius: 3px;
  overflow: hidden;
}
.dlvper-item .grp-bx .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dlvper-item .s-price {
  font-size: 10px;
  margin: 0;
}
.dlvper-item .card-title {
  font-size: 13px;
}
.dlvper-item {
  border-bottom: 1px dashed var(--bs-card-border-color) !important;
  padding-bottom: calc(var(--space) * .5);
  margin-bottom: calc(var(--space) * .5);
}
.dlvper-item:hover {
  border-color: var(--bs-primary) !important;
}
.rwScroll {
  height: 365px;
  overflow-y: auto;
}
.srchOrdr .form-control {
  font-size: 12px;
}
.app-search .btn {
  font-size: 16px;
}

.ribbon-top-right::after {
  z-index: -1;
  background-color: var(--bs-danger);
  border-bottom: 0.5em solid var(--bs-dark);
  transition: background-color 0.2s ease-in-out;
}
.ribbon-top-right::before, .ribbon-top-right::after {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-clip-path: polygon(2em 0, 8em 0, 10em 2em, 10em 2.5em, 9.5em 2em, 0.5em 2em, 0 2.5em, 0 2em);
  clip-path: polygon(2em 0, 8em 0, 10em 2em, 10em 2.5em, 9.5em 2em, 0.5em 2em, 0 2.5em, 0 2em);
}

.ribbon-top-right::before {
  top: 0.1em;
  height: 1.8em;
  border: 2px dotted rgba(0,0,0,0.3);
  border-left: none;
  border-right: none;
}
.ribbon-top-right {
  top: -13px;
  right: 8px;
  transform: translate(23px, 14px) rotate(45deg);
  color: var(--bs-white);
}
.ribbon-top-right {
  filter: drop-shadow(0 0.5em 0.5em rgba(0,0,0,0.1));
}
.ribbon-top-right {
  position: absolute;
  line-height: 19px;
  display: block;
  width: 55px;
  height: 25px;
  text-align: center;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 9px;
}
.fltr-itm {
  width: 11.1111%;
  margin-bottom: var(--space);
  flex: 1 0 0%;
}
.fltr-itm.cstm-dtrng {
  width: 110px;
  flex: 1 0 auto;
}
.fltr-itm .fltr_btn {
    width: 100%;
    height: 30px;
    padding: 0;
}
.fltr-itm  .app-search .form-control {
  height: 30px;
}
.fltr_btn.btn_actv{
  color: var(--white);
  text-decoration: none;
  background-color: var(--primary);
  border-color: var(--primary);
}
.cstm-dtrng .app-search .btn {
  font-size: 12px;
}
.cstm-dtrng .app-search .btn {
  height: 24px;
}
.barGrph-bx {
  width: 100%;
  height: 500px;
}

.analyticsDashboard .sec-right p .h6 {
  font-size: 12px;
}
.analyticsDashboard .dlvper-item .sec-left {
  width: 35px;
  height: 35px;
}
.analyticsDashboard .dlvper-item .sec-right {
  width: calc(100% - 35px);
}
.analyticsDashboard .dlvper-item .s-price {
  font-size: 12px;
}
.analyticsDashboard .rwScroll {
  height: 500px;
}
.details-page .avatar-xl {
  text-align: center;
}
.details-page .avatar-xl .addedVendrImg {
    bottom: 0;
    left: 0;
    width: 20px;
    position: absolute;
    height: 20px;
}
.details-page .nodIcon {
  font-size: 115px;
}
.cd-1 .sec-left {
  width: 60px;
}
.cd-1 .sec-right {
  width: calc(100% - 60px);
}
/*.cd-1 .ribbon-top-right {
  top: -20px;
  right: unset;
  transform: translate(23px, 14px) rotate(-45deg);
  left: -45px;
}*/
.cd-1 .grp-bx {
  margin: 7px 0;
}
.cd-1 .card-title {
  font-size: 14px;
}
.cd-1 .s-price {
  font-size: 14px;
}
.filter-open .filter-bx {
  right: 0;
}
.rightbar-overlay {
  position: fixed;
}
.filter-open .rightbar-overlay {
  display: block;
}
.filter-bx .form-select, .filter-bx .form-control {
  padding: 5px 7px;
  font-size: 12px;
}
.filter-bx .choices__inner {
  padding: 5px 7px !important;
  border: 1px solid var(--bs-input-border) !important;
  border-radius: .25rem !important;
  font-size: 12px !important;
  min-height: 30px !important;
}
.filter-bx .choices__list--single {
  padding: 0 !important;
}
.filter-bx .choices__list--dropdown .choices__item {
  padding: 6px !important;
  font-size: 12px !important;
}
.priceRange-bx {
  display: flex;
  margin: 15px 0 0;
}
.priceRange-bx input.price_range_flds {
  height: 30px;
  font-size: 12px;
  padding: 5px;
}
.priceRange-bx .prc-to {
  margin: 0;
  height: 30px;
  padding: 4px 6px;
  font-size: 12px;
}
.cHeaderSrch .form-control {
  height: 30px;
  font-size: 12px;
}
.cHeaderSrch .btn {
  font-size: 14px;
  height: 24px;
}

.odr-sec-left {
  width: calc(100% - 300px);
}
.odr-sec-right {
  width: 300px;
}
.odr-sec-right .DeliveryPerson-box .dlv-img {
  width: 54px;
  height: 54px;
  margin-bottom: 5px;
}
.order-details .plan-item {
  width: 33.33%;
}
.oderItems-main .sec-left {
  width: 100px;
}
.oderItems-main .sec-right {
  width: calc(100% - 100px);
}
.oderItems-main .grp-bx {
  height: 100px;
}

.dpersnList-itm {
  width: 20%;
}

.ststnIcon {
  font-size: 50px;
}
.dlvPrsnStatin-item h6 span {
  font-weight: 300;
  font-size: 90%;
}
.dlvPrsnStatin-item {
  width: 16.6666%;
}
.actionbtns {
    position: absolute;
    top: 0px;
    right: 0;
    z-index: 1;
    padding: var(--space);
}
.menuItems {
  width: 14.2857%;
}
.menuItems .m-nm {
  font-size: 13px;
}
.menuItems p {
  font-size: 12px;
  color: var(--bs-dark) !important;
}

.menuItems .m-price {
  font-size: 14px;
  margin-top: 3px;
  float: right;
}
.actionbtns-2 {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 10px;
}
.choices__list--multiple .choices__item {
  background-color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
}
.choices[data-type*="select-multiple"] .choices__button, .choices[data-type*="text"] .choices__button {
  border-left: 1px solid var(--white) !important;
}
.choicesjs label{
  opacity: .65;
  -webkit-transform: scale(.85) translateY(-.5rem) translateX(.15rem);
  transform: scale(.85) translateY(-.5rem) translateX(.15rem);
}
.choicesjs .choices__inner {
  border: 1px solid var(--bs-input-border);
  border-radius: .25rem;
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.choicesjs .choices[data-type*="select-one"] .choices__inner {
  padding-bottom: .625rem;
  padding-top: 1.625rem;
}

.choices[data-type*="select-multiple"] .choices__inner{
  max-height: 57px;
  padding-top: 23px;
  overflow: auto;
  padding-left: 12px;
}


.page-title-box {
  height: 30px !important;
  padding: 0;
  margin-bottom: 10px;
}
.sec-right p,.details-page p,.menuItems p {
  margin: 0;
  color: var(--bs-dark) !important;
}
.sec-right p label,.details-page p label,.menuItems p label {
  margin: 0;
  color: var(--bs-text-muted);
}
.srchDrpdw .btn {
  font-size: 16px;
}
.details-page .acnbtnsSet {
  margin-left: auto;
  min-width: 160px;
  text-align: right;
}
.menuItem-details .details-page .avatar-xl {
    width: 200px;
    height: 200px;
    max-height: unset;
}
.customiz-itm .descp {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 54px;
  text-align: justify;
}
.customiz-itm .cd-1 {
  border: 0;
  background: transparent;
  border-bottom: 1px dashed var(--bs-card-border-color);
  border-radius: 0;
  padding-bottom: 3px;
  margin-bottom: 5px;
}
.customiz-itm .cd-1 .card-body {
  padding: 0;
}
.dlvper-item {
  overflow: hidden;
}
.odinfo-dt .ribbon-top-right {
  z-index: 1;
}
.odinfo-dt .ribbon-top-right::after, .odinfo-dt .ribbon-top-right::before {
  display: none;
}
.odinfo-dt .ribbon-top-right {
  width: 180px;
  height: 27px;
  font-size: 12px;
  background: var(--bs-danger);
  top: 8px;
  right: -28px;
  transform: translate(23px, 14px) rotate(45deg);
  color: var(--bs-white);
  border: 1px dashed rgba(0,0,0,0.3);
  line-height: 22px;
}
.watch-item {
  width: 20%;
}
.onGoingOrders .rwScroll {
  height: calc(365px - 30px);
}
.odinfo-dt .plan-item ,body[data-sidebar-size="lg"] .odinfo-dt .plan-item {
  width: 33.33%;
}
.fltr-itm .app-search .form-control {
  background-color: var(--bs-input-bg) !important;
  border: 1px solid var(--bs-input-border) !important;
}
.active > .page-link, .page-link.active {
  z-index: 0 !important;
}
.dataTables_scrollHeadInner,.dataTables_scrollFootInner {
  min-width: 100%;
}
.dataTable {
  min-width: 100%;
}
.prfAction {
  position: absolute;
  top: 0;
  right: 0;
  padding: var(--space);
  z-index: 1;
}
.closureItem {
  margin-bottom: var(--space);
}
.closureItem .card {
  margin-bottom: 0;
}
.profilePage .dlvPrsnStatin-item {
  width: 100%;
}
.profilePage .dlvPrsnStatin-main {
  max-height: 420px;
  overflow-y: auto;
}
.choices[data-type*="select-one"]::after {
  border-width: 0 !important;
  margin-top: -7.5px !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  width: 16px !important;
  height: 14px !important;
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 16px 12px;
}
.choices {
  margin-bottom: 0 !important;
}
.menuItems {
  width: 20%;
}
.customzItem {
  transition: 0.300s;
}
.customzItem i {
  font-size: 45px;
}
.customzItem:hover {
  background-color: var(--bs-primary);
  color: #fff !important;
}
.customzItem:hover h6{
  color: #fff !important;
}
.navbar-brand-box {
  padding: 0 var(--space);
  text-align: center;
}
.choices__list--single {
    color: var(--bs-dark);
}
.footer {
    z-index: 2;
}
.navbar-header {
  height: 50px;
}
.vertical-menu {
  top: 50px;
}
body[data-sidebar-size=sm] .vertical-menu {
    min-height: calc(100vh - 50px);
}
.header-item {
  height: 50px;
}
.logo {
  line-height: 50px;
}
.card-header.cshdr {
  height: 28px;
}
.cshdr .card-title {
  line-height: 22px;
}
.cshdr .btn {
  height: 20px;
  padding: 0 6px;
}
.chevronIcon {
    position: relative;
    top: 4px;
}
label {
    font-weight: var(--bs-body-font-weight);
}
.text-truncate-2 {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.DeliveryPersonsDetailsPage .dlvPrsnStatin-item {
  width: 33.33%;
}
.dlvinFo  .dlvinFoImg {
  max-width: 123px;
}
.dlvinFo h6 {
  font-size: 22px;
}
.dlvinFo p {
  font-size: 14px;
}
.dlvinFo {
  height: 170px !important;
  background-image: url('../images/banner-white-1-min.png');
  background-size: cover;
  padding: 50px 0;
}
body[data-sidebar-size="sm"] .vertical-menu #sidebar-menu > ul > li:hover > a {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}
#sidebar-menu ul li a i {
  padding-bottom: 0;
}
.notificationPage .cd-1 .grp-bx {
  margin: 0;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  font-size: 22px;
}
.notificationPage .cd-1 .grp-bx {
  text-align: center;
  line-height: 38px;
  font-size: 22px;
}
.notificationPage .cd-1 .sec-left {
  width: 40px;
}
.notificationPage .cd-1 .sec-right {
  width: calc(100% - 40px);
}
.notificationPage .cd-1 .sec-right h6 {
  font-size: 11px;
}
.analyticsDashboard .dlvper-item .s-price {
    font-size: 11px;
    padding-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.analyticsDashboard .dlvper-item .s-price i {
  width: auto;
  display: unset;
  font-size: 14px;
  position: relative;
  top: 1px;
  right: -2px;
}
.analyticsDashboard .dlvper-item .s-price > span {
  font-size: 15px;
}
.dlvPrsnStatin-item h6 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}


/*AUTOCOMPLTE STYLES*/
.autocomplete-suggestions { 
    border: 1px solid var(--primary-hover); 
    background: #FFF; 
    overflow: auto; 
    border-bottom-left-radius:0.25rem;;
    border-bottom-right-radius:0.25rem;; 
  /*border-radius: 0.25rem;*/
}
.autocomplete-suggestion { 
    padding: 2px 5px; white-space: nowrap; overflow: hidden; }
.autocomplete-selected { 
    background: var(--primary); }
.autocomplete-suggestions strong { 
    font-weight: normal;
    color: var(--primary); }
.autocomplete-group { 
    padding: 2px 5px; }
.autocomplete-group strong { 
    display: block; border-bottom: 1px solid #000; }
.autocomplete-suggestion { 
    cursor: pointer;
}
/*AUTOCOMPLETE STYLE END*/

.cs-no-click {
    pointer-events: none;
}
.header-item:hover,li.breadcrumb-item a:hover {
    color: var(--primary);
}
.noti-icon .badge {
    top: 8px;
    right: -1px;
}
p.rresnTxt {
    font-size: 12px;
    margin: 0;
}
.odinfo-dt {
    z-index: 10001;
}
.table-responsives th, .table-responsives td {
    white-space: nowrap;
}
.pagination .page-link {
    padding: 5px 10px;
    font-size: 12px;
}
div.dataTables_wrapper div.dataTables_info {
    padding: 0;
}
#lfno_crtn.popShow{
  display: block;
  opacity: 1;
  background: rgba(0,0,0,0.5);
}
.profilePage .DeliveryPerson-box .od-shd {
  white-space: unset;
}
.anaLyClm-1 {
    width: 65%;
}
.anaLyClm-2 {
    width: 35%;
}
.cs-rsn-badge {
    font-size: 12px;
}
.tabScroll .cs-tblcntntdvhdr {
    background: var(--primary-light);
    width: 25%;
    text-align: center;
    padding: var(--space) !important;
    font-weight: 500;
    cursor: pointer;
    border-radius: 22px 22px 0px 0px;
    line-height: 1;
    color: var(--primary);
}
.tabScroll .tblcntntdvhdr p {
    margin: 0;
}
.tabScroll .cs-tblcntntdvhdr:hover,.tabScroll .cs-tblcntntdvhdr.tblcntntdvhdractv {
  background: var(--primary);
  color: var(--white);
}
.archivedcrtn {
    position: absolute;
    background-color: rgba(255,255,255,0.7);
    z-index: 4;
    left: calc(var(--space) * 0.5);
    top: 0;
    width: calc(100% - var(--space));
    height: calc(100% - var(--space));
    cursor: not-allowed;
    text-align: center;
    color: var(--dark);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.DeliveryPersonsListPage .archivedcrtn {
    font-size: 16px;
}
.form-floating textarea.form-control~label {
    background: var(--white);
    padding: 0;
    top: 8px;
    height: 25px;
    left: var(--space);
    opacity: 1 !important;
    padding-top: 5px;
    color: #808080;
}
.swal2-container {
    z-index: 10002 !important;
}
.swal2-actions button {
    font-size: 12px !important;
}
.swal2-styled.swal2-confirm {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}
.order-details .odinfo-dt {
    z-index: 10;
}





/** Responsive code start ++++++++++ **/


@media screen and (max-width:1799px) {




}


@media screen and (max-width:1599px) {

  .plan-item {
    width: 33.33%;
  }
  .ordersList-itm {
    width: 50%;
  }
  
  .menuItems {
    width: 25%;
  }
  .customiz-itm {
    width: 50%;
  }
  .order-details .plan-item {
      width: 50%;
  }
  .dlvinFo h6 {
    font-size: 18px;
  }
  .dlvinFo p {
    font-size: 13px;
  }
  body[data-sidebar-size="lg"] .DeliveryPersonsDetailsPage .dlvPrsnStatin-item {
    width: 50%;
  }


}





@media screen and (max-width:1399px) {

  .counterIcon {
    width: 70px;
    height: 70px;
    line-height: 68px;
    font-size: 35px;
  }
  .page-title-box .breadcrumb {
    font-size: 13px;
  }
  .card-title {
    font-size: 14px;
  }
  .cardHdr-btns {
    top: 4px;
  }
  .card-header .nav-tabs-custom.card-header-tabs .nav-link {
    margin-top: 21px;
  }
  .watch-item {
    width: 16.6666%;
  }
  .myfollower-item .badge {
    margin-bottom: 3px;
  }
  .myfollower-item .descp {
    -webkit-line-clamp: 6;
    height: 119px;
  }
  .pl-item .font-size-16 {
    font-size: 14px !important;
  }
  body[data-sidebar-size="lg"] .plan-item {
    width: 50%;
  }
  .vertical-menu {
    width: 200px;
  }
  .main-content {
    margin-left: 200px;
  }
  .navbar-brand-box {
    width: 200px;
  }
  .footer {
    left: 200px;
  }
  #sidebar-menu ul li a {
    padding: 5px 10px;
    font-size: 13px;
  }
  #sidebar-menu ul li ul.sub-menu li a {
    padding: 5px 10px 5px 45px;
    font-size: 12px;
  }
  .onGoingOrders .rwScroll {
    height: calc(365px - 40px);
  }
  .profilePage .dlvPrsnStatin-item {
    width: 100%;
  }
  .closureItem {
    width: 50%;
  }
  body[data-sidebar-size="lg"] .DeliveryPersonsListPage .dpersnList-itm {
    width: 25%;
  }
  .dlvPrsnStatin-item .ststnIcon {
    font-size: 40px;
  }
  .dlvPrsnStatin-item h6 {
    font-size: 13px;
  }
  .dlvPrsnStatin-item p {
    font-size: 12px;
  }

  body[data-sidebar-size="lg"] .menuItems {
    width: 33.3333%;
  }
  body[data-sidebar-size="lg"] .DeliveryPersonsDetailsPage .dlvPrsnStatin-item,.DeliveryPersonsDetailsPage .dlvPrsnStatin-item {
    width: 50%;
  }
  .dlvinFo {
    height: 150px !important;
    padding: 30px 0;
  }
  .analyticsDashboard .rwScroll {
      max-height: 500px;
      height: auto;
  }






}
/* 1399end */


@media screen and (max-width:1199px) {
  .font-size-16 {
    font-size: 13px !important;
  }
  .font-size-14 {
    font-size: 12px !important;
  }
  .font-size-13 {
    font-size: 12px !important;
  }
  body:not([data-sidebar-size="sm"]) #vertical-menu-btn {
    margin-left: 0;
    margin-right: 0;
  }
  .navbar-brand-box {
    width: 165px;
  }
  body[data-sidebar-size="lg"] #sidebar-menu {
    height: calc(100vh - 70px);
    overflow: auto;
  }
  .watch-item-inr p {
    font-size: 10px;
  }
  .watch-item .w-nm {
    font-size: 12px !important;
  }
  .watch-item-inr p.w-val i {
    font-size: 15px;
  }
  .recentTrc .font-size-14 {
    font-size: 13px !important;
  }
  .curnt-itm {
    font-size: 12px;
  }
  .curnt-itm h6 {
    font-size: 13px;
  }
  .btn.btn-icon {
    font-size: 20px;
  }
  .listView-content {
    font-size: 12px;
  }
  .btn {
    font-size: 12px;
  }
  .totalCommAmt {
    font-size: 14px;
  }
  .alert {
    font-size: 12px;
  }
  .plan-item {
    width: 50%;
  }
  .flowSlider {
    height: 100%;
  }
  .flowSlider .carousel-indicators {
    bottom: 8px;
  }
  .myfollower-item .descp {
    -webkit-line-clamp: 5;
    height: 100px;
  }
  .odinfo-dt .modal-dialog,.sslctDelveryPersb-mdl .modal-dialog {
    --bs-modal-width: 95%;
  }
  .odinfo-dt .odinf-left {
    width: 100%;
  }
  .odinfo-dt .odinf-right {
    width: 100%;
  }
  .odinfo-dt .plan-item, body[data-sidebar-size="lg"] .odinfo-dt .plan-item {
    width: 50%;
  }
  .sslctDelveryPersb-mdl .dlvryprsBox {
      width: 25%;
  }
  .analyticsDashboard .rwScroll {
    max-height: 500px;
    height: auto;
  }
  .fltr-itm {
    width: 20%;
  }
  
  .profilePage .ststnIcon {
    font-size: 40px;
  }
  .profilePage .dlvPrsnStatin-item h6 {
    font-size: 12px;
  } 
  .font-size-13 .h6 {
    font-size: 12px;
  }
  body[data-sidebar-size="lg"] .ordersList-itm {
    width: 100%;
  }
  .odr-sec-left,.odr-sec-right {
    width: 100%;
  }
  .order-details .plan-item,body[data-sidebar-size="lg"] .order-details .plan-item {
    width: 100%;
  }
  .footer {
    font-size: 12px;
  }
  .DeliveryPersonsListPage .dpersnList-itm {
    width: 25%;
  }
  body[data-sidebar-size="lg"] .DeliveryPersonsListPage .dpersnList-itm {
    width: 33.3333%;
  }
  .DeliveryPersonsDetailsPage .dlvPrsnStatin-item {
    width: 50%;
  }
  .menuItems {
    width: 33.3333%;
  }
  .onGoingOrders .rwScroll {
      max-height: calc(365px - 40px);
      height: auto;
  }
  .rwScroll {
      max-height: 365px;
      height: auto;
  }
  body[data-sidebar-size="lg"] .order_item_dv_id {
      width: 50%;
  }
  .settlements-details .ordersList-itm, body[data-sidebar-size="lg"] .settlements-details .ordersList-itm {
      width: 100%;
  }

  



}
/* 1199end */

@media screen and (min-width:992px) {

  footer{
    z-index: 5; 
  }

  .watch-item {
    width: 25%;
  }
  
  .dlvPrsnStatin-item {
    width: 20%;
  }

  




}


@media screen and (max-width:991px) {

  .text-start-md {
    text-align: left !important;
  }
  .mb-3-md{
    margin-bottom: var(--space) !important;
  }
  .mb-1-md {
      margin-bottom: .25rem!important;
  }


  .navbar-brand-box {
    width: 70px;
  }
  .watch-item {
    width: 20%;
  }
  .page-title-box .page-title-txt {
    font-size: 14px;
  }
  .page-content {
    padding: 60px var(--space) 70px;
  }
  .counter-item h4 {
    font-size: 18px;
  }
  .counter-item {
    font-size: 13px;
  }
  .counter-item {
    min-height: 110px;
  }
  .counterIcon {
    top: -30px;
  }
  .recentTrc .font-size-14 {
    font-size: 12px !important;
  }
  .order-details .plan-item {
    width: 100%;
  }

  .dpersnList-itm {
    width: 25%;
  }

  .menuItems .m-nm {
    font-size: 12px;
  }
  .menuItems .m-price {
    font-size: 12px;
  }
  .allStats-bx {
    margin-top: 0;
    -webkit-box-pack: start!important;
      -ms-flex-pack: start!important;
      justify-content: flex-start!important;
  }
  .profilePage .details-page.h-100 {
    height: auto !important;
    margin: 0;
  }
  .profilePage .card.DeliveryPerson-box {
    height: auto;
    margin: 0;
  }
  .profilePage .dlvPrsnStatin-item {
    width: 33.3333%;
  }
  .footer {
    font-size: 12px;
    left: 0;
  }
  .profilePage .DeliveryPerson-box .od-hd {
    font-size: 15px;
  }
  .cd-1 .card-title {
    font-size: 13px;
  }
  .ordersList-itm {
    width: 50%;
  }
  .cd-1 .card-title {
    font-size: 12px;
  }
  .inr-sec-left .h6 {
    font-size: 12px;
  }
  .cd-1 .s-price {
    font-size: 12px;
  }
  .s-price i {
    font-size: 16px;
  }
  .rightbar-title h5 {
    font-size: 14px;
  }
  .DeliveryPersonsListPage .dpersnList-itm,body[data-sidebar-size="lg"] .DeliveryPersonsListPage .dpersnList-itm {
    width: 33.3333%;
  }
  .newodrreqmdl .modal-dialog {
      width: 750px;
  }
  .fltr-itm .fltr_btn {
    font-size: 11px;
    padding: 0;
    height: 30px;
  }
  .chng-sts-p-dv {
      margin-bottom: 2px !important;
  }
  .chng-sts-p-dv p {
    color: #495057 !important;
    font-weight: 600;
  }
  .order_item_dv_id, body[data-sidebar-size="lg"] .order_item_dv_id {
      width: 50%;
  }
  .anaLyClm-1, .anaLyClm-2 {
      width: 100%;
  }
  



  
  

}
/* 991end */



@media screen and (max-width:767px) {
  .text-start-sm{
    text-align: left !important;
  }
  .mb-3-sm{
    margin-bottom: var(--space) !important;
  }


  .font-size-14 {
    font-size: 12px !important;
  }
  .counterIcon {
    width: 70px;
    height: 70px;
    line-height: 60px;
    font-size: 35px;
  }
  .counterIcon {
    top: -26px;
  }
  .counter-item h4 {
    font-size: 16px;
  }
  .counter-item {
    font-size: 12px;
  }
  .card-title {
    font-size: 13px;
  }
  .watch-item {
    width: 33.3333%;
  }
  .pl-item .font-size-16 {
    font-size: 13px !important;
  }
  .footer {
    font-size: 12px;
  }
  .recentTrc .font-size-14 {
    font-size: 11px !important;
  }
  .recentTrc .font-size-12 {
    font-size: 10px !important;
  }
  #sidebar-menu ul li a {
    padding: 0.32rem 1.5rem;
    font-size: 13px;
  }
  #sidebar-menu ul li ul.sub-menu li a {
    font-size: 12px;
  }
  .listView-content .table > :not(caption) > * > * {
    white-space: nowrap;
  }
  .notify-item .divdr {
    flex-wrap: wrap;
  }
  .notify-left {
    width: 100%;
    margin: 0 !important;
  }
  .notifi-timing {
    width: 100%;
    display: flex;
    margin-top: 5px;
  }
  .notifi-timing .hd {
    font-size: 12px;
  }
  .notifi-timing .shd {
    margin: 0 5px;
  }
  .plan-item {
    width: 100%;
  }
  .s-price {
    font-size: 13px;
  }
  .s-price i {
    font-size: 16px;
  }


  .odr-sec-left {
    width: 100%;
  }

  .odr-sec-right {
    width: 100%;
  }

  .dpersnList-itm {
    width: 33.33%;
  }

  .dlvPrsnStatin-item {
    width: 25%;
  }

  .menuItems,body[data-sidebar-size="lg"] .menuItems {
    width: 50%;
  }
  .odinfo-dt .plan-item, body[data-sidebar-size="lg"] .odinfo-dt .plan-item {
    width: 100%;
  }
  .dataTables_length {
    width: 50%;
    order: 1;
    text-align: left !important;
  }
  .dataTables_wrapper.dt-bootstrap4 div.dataTables_filter {
    width: 50%;
    order: 2;
    text-align: right !important;
  }
  .dt-buttons {
    width: 100%;
    order: 3;
    text-align: center;
    margin-top: var(--space);
  }
  div.dataTables_wrapper div.dataTables_length, div.dataTables_wrapper div.dataTables_filter, div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_paginate {
    text-align: left !important;
  }
  div.dataTables_wrapper div.dataTables_paginate.paging_simple_numbers ul.pagination {
    justify-content: right !important;
  }
  .dataTables_scroll {
    overflow: auto;
  }
  .profilePage .dlvPrsnStatin-item {
    width: 50%;
  }
  .vtype {
    display: inline !important;
  }
  .ordersList-itm {
    width: 100%;
  }
  .btnwIcon i{
    margin-right: 0 !important;
  }
  .btnInr-txt {
    display: none;
  }
  .details-page .avatar-xl {
    margin: 0 auto var(--space) !important;
  }
  .cs-shrink.itmInr-left,.orderList .cd-1 .sec-left {
    position: absolute !important;
    opacity: 0.13 !important;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .cs-shrink {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    opacity: 0.2;
  }
  .orderList .cd-1 .sec-left .nodIcon {
    font-size: 55px;
  }
  .orderList .cd-1 .sec-right {
    width: 100%;
    padding: 0;
  }
  
  .DeliveryPersonsDetailsPage .dtInr-left-main,.menuItem-details .dtInr-left-main{
    flex-wrap: wrap;
  }
  .DeliveryPersonsDetailsPage .dtInr-left-main .itmInr-left,.DeliveryPersonsDetailsPage .dtInr-left-main .itmInr-right,
  .menuItem-details .dtInr-left-main .itmInr-left,.menuItem-details .dtInr-left-main .itmInr-right {
    width: 100%;
  }
  .DeliveryPersonsDetailsPage .dlvPrsnStatin-item h6,.menuItem-details .dlvPrsnStatin-item h6 {
    font-size: 12px;
  }
  .customiz-itm {
    width: 100%;
  }
  .nf-rw {
    flex-wrap: wrap;
  }
  .nf-rw .nf-left {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 5px;
  }
  .nf-rw .nf-right {
    display: flex;
    width: 100%;
  }
  .nf-rw .nf-right h6{
    margin: 1px 5px 0 0 !important;

  }
  .counter-item {
      min-height: 104px;
  }
  .sslctDelveryPersb-mdl .dlvryprsBox {
      width: 33.3333%;
  }
  .newodrreqmdl .modal-dialog {
      width: 95%;
  }
  .newodrreqmdl .plan-item {
      width: 100%;
  }
  .dlvinFo {
    background-position: bottom;
  }
  .fltr-itm {
    flex: 1 0 17%;
  }
  .cshdr .btn i {
      margin-right: 0 !important;
  }
  .order_item_dv_id, body[data-sidebar-size="lg"] .order_item_dv_id {
      width: 100%;
  }
  .tabScroll {
      display: flex;
      flex-wrap: nowrap;
      overflow: auto;
  }
  .tabScroll .cs-tblcntntdvhdr {
      width: auto;
      flex: 0 0 auto;
      padding: var(--space) calc(var(--space) * 3) !important;
  }
  .tabScroll .tblcntntdvhdr p {
      white-space: nowrap;
  }

  
}
/* 767end */



@media screen and (max-width:575px) {
  .text-start-xs {
    text-align: left !important;
  }


  .mb-3-xs{
    margin-bottom: var(--space) !important;
  }

  .watch-item {
    width: 50%;
  }
  .footer {
    font-size: 11px;
  }
  .dtInr-left-main {
    flex-wrap: wrap;
  }
  .itmInr-left {
    width: 100%;
  }
  

  .sd-contnt .itmInr-right {
    flex-wrap: wrap;
    display: flex;
  }
  .sd-contnt .sd-left {
    width: 50%;
  }
  .sd-contnt .dtInr-right {
    position: relative;
    width: 50%;
  }

  /*ORDER LIST ITEMS START*/
  .cs_list_srch_dv{
    width: 80%;
  }
  .cs_list_fltr_btn{
    width: 20%;
  }
  .font-size-13 {
    font-size: 11px !important;
  }
  .cd-1 .cs-ribbon-top-right {
    top: -20px;
    right: unset;
    transform: translate(22px, 12px) rotate(45deg);
    right: 0;
    left: unset;
  }
  .cd-1 .sec-left {
    width: 40px;
  }
  .nodIcon {
    font-size: 40px;
  }
  .cd-1 .sec-right {
    width: calc(100% - 40px);
  }
  .cd-1 .card-title {
    font-size: 11px;
  }
  .sec-right p {
    font-size: 11px;
    list-style: 10px;
  }

  .cd-1 .s-price {
    font-size: 10px !important;
  }
  
  /*ORDER LIST ITEMS END*/

  /*ORDER DETAILS PAGE START*/
  .DeliveryPerson-box .od-hd {
    font-size: 12px;
  }
  

  .h6, h6 {
    font-size: 11px;
  }
  .details-page .nodIcon {
    font-size: 85px;
  }
  .plan-item .card-title {
    font-size: 12px;
  }
  
  .oderItems-main .sec-right {
    width: calc(100% - 80px);
  }
  
  .font-size-16 {
    font-size: 12px !important;
  }
  
  /*ORDER DETAILS PAGE END*/

  /*  DAHBOARD START*/
  .watch-item-inr p {
    font-size: 10px;
  }
  .watch-item .w-nm {
    font-size: 11px !important;
  }
  .card-title {
    font-size: 13px;
  }
  .badge {
    font-size: 10px;
  }
  .counter-item h4 {
    font-size: 14px;
  }
  .counter-item {
    font-size: 12px;
  }
  .dlvper-item .card-title {
  font-size: 11px;
  }
  .dlvper-item .s-price {
    font-size: 9px;
  }
  .odinf-left {
    width: 100%;
  }
  .odinf-right {
    width: 100%;
  }
  .modal-title {
    font-size: 11px;
  }
  .odinfo-dt .od-hd {
    font-size: 11px;
  }
  .odinfo-dt .od-shd {
    font-size: 10px;
  }
  .allStats-bx .btn {
    font-size: 9px;
  }
  .DeliveryPerson-box .od-shd {
    font-size: 11px;
  }
  
  .dlvryprsBox{
    width: 50%;
  }
  /*DASHBOARD END*/
  /*  EXTRAS*/
  .page-title-box .breadcrumb {
    font-size: 12px;
  }
  .page-title-box .page-title-txt {
    font-size: 11px;
  }
  .page-title-box {
    display: flex;
  }
  .fltr-itm.cstm-dtrng {
    width: 50%;
  }

  .menuItems, body[data-sidebar-size="lg"] .menuItems {
    width: 100%;
  }

  .menuItems .m-nm {
    font-size: 11px;
  }
  .menuItems p {
    font-size: 11px;
  }
  .menuItems .m-price {
    font-size: 11px;
    margin-top: 3px;
  }
  /*  EXTRAS END*/
  .fltr-itm {
    width: 33.33%;
    flex: 1 0 26%;
  }
  .fltr-itm:nth-child(7), .fltr-itm:nth-child(8) {
    width: 50%;
  }
  .fltr-itm.cstm-dtrng {
    width: 100%;
  }
  .dataTables_wrapper.dt-bootstrap4 div.dataTables_filter input {
    width: 107px;
  }
  div.dataTables_wrapper div.dataTables_info, div.dataTables_wrapper div.dataTables_paginate {
    text-align: center !important;
  }
  .dataTables_info {
    width: 100%;
  }
  .dataTables_paginate {
    width: 100%;
  }
  div.dataTables_wrapper div.dataTables_paginate.paging_simple_numbers ul.pagination {
    justify-content: center !important;
  }
  .dataTables_info {
    padding-top: 0 !important;
  }
  .profilePage .DeliveryPerson-box .od-shd {
    font-size: 11px;
  }
  .profilePage .DeliveryPerson-box .od-hd {
    font-size: 12px;
  }
  .profilePage .dlvPrsnStatin-item {
    width: 100%;
  }
  .profilePage .closureItem {
    width: 100%;
  }
  .oderItems-main .sec-right {
    width: 100%;
    padding: 0;
    margin-top: var(--space);
  }
  .oderItems-main .sec-left {
    margin: auto;
  }
  .DeliveryPersonsListPage .dpersnList-itm,body[data-sidebar-size="lg"] .DeliveryPersonsListPage .dpersnList-itm {
    width: 50%;
  }
  .sslctDelveryPersb-mdl .dlvryprsBox {
      width:50%;
  }
  .newodrreqmdl .sec-left {
      width: 40px;
  }
  .newodrreqmdl .sec-right {
      width: calc(100% - 40px);
  }
  .newodrreqmdl .odInf-r .card-title {
      font-size: 12px;
  }
  .newodrreqmdl .odInf-r .s-price {
      font-size: 14px;
  }
  .newodrreqmdl .odInf-r .s-price i {
      font-size: 16px;
      margin-top: 3px;
  }
  .newodrreqmdl .s-price i {
      font-size: 16px;
  }
  .ttlAmt {
      font-size: 12px;
  }
  .ttlAmt .badge {
      font-size: 12px;
  }
  .details-page .badge {
      font-size: 10px !important;
  }
  div.dataTables_wrapper div.dataTables_info {
      margin-bottom: var(--space);
  }



}
/* 575end */


@media screen and (max-width:450px) {

  .totalCommAmt {
    font-size: 11px;
  }

  .dpersnList-itm {
    width: 50%;
  }

  .dlvPrsnStatin-item {
    width: 33.33%;
  }
  .navbar-brand-box {
    display: block;
  }


}
/* 575end */



/** Responsive code End **/


