@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* font-family: 'Manrope', sans-serif;
font-family: 'Poppins', sans-serif; */

:root {
  --rs-main-color: #e5e5e5;
  --rs-primary-color: #A75F49;
  --rs-second-color: #f33;
  --rs-font-color: #000000;
  --rs-white-color: #fff;
  --rs-font-one: 'Poppins', sans-serif;
  --rs-font-two: 'Manrope', sans-serif;
}

/**user-selext-content**/
::-moz-selection {
  /* Code for Firefox */
  color: var(--rs-white-color);
  background: var(--rs-primary-color);
}

::selection {
  color: var(--rs-white-color);
  background: var(--rs-primary-color);
}

a {
  color: #191919;
  text-decoration: none;
}

/**user-selext-content-end**/

body {
  /*-webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;*/
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: var(--rs-font-two);
  color: var(--rs-font-color);
  background-image: url('{{ asset('/images/bg.png') }}');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  font-weight: 500;
}


input,
select {
  font-family: 'Poppins', sans-serif;
}

/* loader and scrollbar */
/* #preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgb(255 255 255 / 50%);
z-index: 999;
} */
#loader {
  position: fixed;
  left: 0;
  top: 0;
  /* background-image: url(../../../images/loader.gif); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 150px;
  z-index: 9;
  width: 100%;
  height: 100%;
  /* background-color: rgb(255 255 255 / 50%); */
  z-index: 9999;
}

/* Preloader */

.handle-preloader {
  background-color: rgb(0 0 0 / 40%);
}

.handle-preloader {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -ms-flexbox;
  height: 100%;
  justify-content: center;
  -webkit-justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader-close {
  position: fixed;
  z-index: 99999999;
  font-size: 18px;
  background: #fff;
  width: 30px;
  height: 30px;
  line-height: 26px;
  text-align: center;
  cursor: pointer;
  right: 15px;
  top: 15px;
  border-radius: 0%;
  display: none;
}

.handle-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  height: 150px;
  margin: 0 auto 45px auto;
  width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  top: 0;
  position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  font-weight: 500;
  letter-spacing: 5px;
  display: inline-block;
  position: relative;
  font-size: 50px;
  line-height: 50px;
  text-transform: uppercase;
  color: #000;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.30);
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8),
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9) {
  font-weight: 900;
  color: #A75F49;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before {
  animation-delay: 1.6s;
}

.handle-preloader .loader-section {
  background-color: #fff;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  color: #fff;
}

.handle-preloader .animation-preloader .spinner {
  border: 3px solid #fff;
  border-top-color: rgba(255, 255, 255, 0.5);
}

@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/*scroll bar css**/
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #A75F49;
}

/*loader and scrollbar end*/
img,
svg {
  max-width: 100%;
}

.show-sidebar .fa-bars::before {
  content: "\f00d";
  font-size: 25px;
  color: #233c7a;
}

.brand-logo {
  min-height: 80px;
  padding: 0 24px;
  justify-content: center !important;
}

.brand-logo {
  justify-content: center !important;
}

.brand-logo img {
  width: 180px;
}

.admin_logo {
  text-align: center;
  max-width: 140px;
  margin: 0 auto 30px;
}

.mr_login h3 {
  font-weight: 600;
}

.login_screen {
  background-image: url(../../assets/images/login.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sidebar-link .hide-menu {
  color: #141414;
}

/* .sidebar-link span svg path {
  stroke: #141414;
} */

.app-header {
  background: transparent;
}

.container-fluid {
  max-width: 1600px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 120px 24px 42px !important;
}

.sr_pj {
  color: #A75F49;
}

.sr_pj h4 {
  font-weight: 600;
}

.sr_pj h4+h4 {
  font-weight: 500;
}
.app-header {
  padding: 0 0;
}
.app-header .navbar {
  max-width: 100%;
  margin: 0;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 8px 20px #FEEFE866;
  border-radius: 0;
  padding: 0 25px;
  z-index: 99;
  position: relative;
}

footer.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: calc(100% - 270px);
  z-index: 102;
}

.white_shadow {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 24px 30px #FFF2EFA3;
  border-radius: 10px;
  padding: 20px 0;
}

.charts_orb {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  font-family: arial;
  color: white;
}

.charts_orb .orb {
  padding: 0;
}

.charts_orb .orb .orb_graphic {
  position: relative;
}

.charts_orb .orb .orb_graphic .orb_value {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: bold;
  color: #707070;
  flex-wrap: wrap;
  padding-bottom: 14px;
}

.charts_orb .orb .orb_label {
  text-transform: uppercase;
  text-align: center;
  margin-top: 1em;
}

.charts_orb svg {
  width: 80px;
  height: 80px;
}

.charts_orb svg circle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke-dasharray: 314.16, 314.16;
  stroke-width: 8px;
  fill: transparent;
  r: 34;
  cx: 41;
  cy: 40;
}

.charts_orb svg circle.fill {
  stroke: #d3d3d3;
}

.charts_orb svg circle.progress {
  stroke: #28C76F;
  transition: stroke-dashoffset 0.35s;
  stroke-dashoffset: 214.16;
  -webkit-animation: NAME-YOUR-ANIMATION 1.5s forwards;
  -webkit-animation-timing-function: linear;
}

@-webkit-keyframes NAME-YOUR-ANIMATION {
  0% {
    stroke-dashoffset: 314.16;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.white_bx {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 24px 30px #FFF2EFA3;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: space-between;
}

.icon_mx {
  background: rgb(237 107 0 / 17%);
  border-radius: 10px;
  width: 60px;
  height: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_mx img {
  width: 30px;
}

.total {
  color: rgb(104 216 154);
  position: absolute;
  bottom: 23px;
  left: 50%;
  font-size: 11px;
  transform: translateX(-50%);
}

.white_bx .middal {
  width: calc(100% - 60px);
  padding: 0 20px;
}

.white_bx .middal span {
  color: #707070;
  padding-bottom: 2px;
  display: block;
}

.grey_bg.icon_mx {
  background: rgb(111 32 212 / 17%);
}

.charts_orb svg circle.progress.grey {
  stroke: #A0ACEB;
}

span.grey.total {
  color: #A0ACEB;
}

.orange_bg.icon_mx {
  background: rgb(255 35 102 / 17%);
}

.charts_orb svg circle.progress.orange {
  stroke: #FF946D;
}

span.orange.total {
  color: #FF946D;
}

.blue_bg.icon_mx {
  background: rgb(134 182 255 / 16%);
}

.blue_bg.icon_mx img {
  width: 26px;
}

.charts_orb svg circle.progress.blue {
  stroke: #86B6FF;
}

span.blue.total {
  color: #86B6FF;
}

.sidebar-nav ul .sidebar-item.selected>.sidebar-link,
.sidebar-nav ul .sidebar-item.selected>.sidebar-link.active,
.sidebar-nav ul .sidebar-item>.sidebar-link.active,
.sidebar-nav ul .sidebar-item .sidebar-link:hover {
  background-color: #A75F49;
  color: #fff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.sidebar-link span svg {
  width: 28px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  background: #fff;
}

.sidebar-nav ul .sidebar-item>.sidebar-link.active span,
.sidebar-nav ul .sidebar-item .sidebar-link:hover span {
  color: #fff;
}

.main_title {
  color: #A75F49;
  font-weight: 600;
  margin: 0;
}

.message-body a {
  background: #A75F49;
  color: #fff;
}

.sidebar-link.active span svg path,
.sidebar-nav ul .sidebar-item .sidebar-link:hover span svg path {
  /* stroke: #ffffff; */
  fill: #ffffff;
}

/* select2 css */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: white;
  line-height: 37px;
  text-align: center;
  padding-right: 30px;
}

.footer {
  background: #a75f49;
  color: #fff;
}

.white_shadow1 {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 24px 30px #FFF2EFA3;
  border-radius: 10px;
  padding: 15px;
}

/* .select2-container--default .select2-selection--single {
border: 1px solid #A75F49;
padding: 0 10px;
background-image: url(../../assets/images/filter.png);
background-repeat: no-repeat;
background-position: 7% 50%;
} */
.daterange {
  background: #fff;
  cursor: pointer;
  padding: 11px 10px;
  border: 1px solid #E7E7E7;
  width: 100%;
  border-radius: 8px;
}

.select2-container .select2-selection--single {
  height: 39px;
  /* border-radius: 50px; */
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 39px;
}

.select_new span.select2.select2-container.select2-container--default {
  width: 100% !important;
}

.select_new span.selection {
  width: 100%;
  display: block;
}

.select2-container--default .select2-selection--multiple {
  width: 100%;
}

span.selection {
  display: block;
  width: 100%;
  /* border-radius: 50%; */
  border-radius: 8px;
  overflow: hidden;
}

span.select2.select2-container.select2-container--default {
  width: 100% !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #dfe5ef 1px;
  height: 39px;
  line-height: 25px;
  border-radius: 8px;
  padding: 0 8px;
}

span.select2-container.select2-container--default.select2-container--open {
  z-index: 9999 !important;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #dfe5ef;
  height: 40px;
  line-height: 25px;
  padding: 0 10px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #2e3192;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #A75F49;
}

select.form-select.js-example-basic-single {
  position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #fff transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #fff transparent;
}

.login_in .btn-primary {
  height: 50px;
}

.btn-primary {
  background-color: #A75F49;
}

.btn {
  background-color: #A75F49;
  padding: 10px 15px;
  border-radius: 8px;
  outline: none;
  box-shadow: none;
  border: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  white-space: nowrap;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active,
.btn:focus-visible {
  background-color: #815344 !important;
  border-color: #815344 !important;
  box-shadow: none;
  outline: none;
}

.form-control {
  background-color: #FFF2EF;
  border: 0;
  height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  color: black;
}
/* .colorOnly {
  background-color: #FFF2EF !important;
  border: 0 !important;
  height: 50px !important;
  padding: 0 20px !important;
  border-radius: 8px !important;
  color: black !important;
} */


.form-control:focus {
  background-color: #fff2ef;
  box-shadow: 0 0 0 0.25rem rgb(250 220 213);
}

/* select {
font-family: 'Nunito', sans-serif;
}

ul#select2-5sge-results {
font-family: 'Nunito', sans-serif;
}

span.select2-results ul li {
font-family: 'Nunito', sans-serif;
} */
.btn-primary:hover {
  background-color: #815344;
}

.btn-danger {
  background: #F80D38;
}

.btn-danger:hover {
  background: #ff395d;
}

.border_rs {
  border: 1px solid #A75F49;
  border-radius: 8px;
  padding: 20px 20px 0px 20px;
}

.daterangepicker .ranges li.active,
.daterangepicker td.active,
.daterangepicker td.active:hover {
  background: #a75f49;
}

.daterangepicker td.in-range,
.daterangepicker .ranges li:hover {
  background: #fff2ef;
}

.daterangepicker .drp-buttons .btn {
  color: #fff;
  background: #f80d38;
}

.daterangepicker .drp-buttons .btn.applyBtn {
  background: green;
}

.white_table {
  margin: 20px auto 0;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 8px 20px #FEEFE866;
  border-radius: 14px;
  padding: 30px 0;
}

.white_table .dataTables_length,
.dataTables_info {
  padding-left: 30px;
}

.white_table .dataTables_filter,
.dataTables_paginate {
  padding-right: 30px;
}

thead {
  background: #FFE5DF;
  text-align: center;
}

table.dataTable td,
table.dataTable th {
  text-align: center;
}

table.dataTable thead>tr>th.sorting,
table.dataTable thead>tr>th.sorting_asc {

  text-align: center;
  border: 0;
  vertical-align: middle;
}

/* .dataTables_scrollBody {
padding: 0 10px;
} */

.dataTables_scrollBody tr {
  border-bottom: 0px solid #fef3ef;
}

div.dataTables_wrapper div.dataTables_filter input,
.form-select {
  border: 1px solid #d8d8d8;
}

div.dataTables_wrapper div.dataTables_filter input {
  height: 30px;
  border: 1px solid #dacac6;
  border-radius: 8px;
}
.dataTables_filter label {
  font-size: 0;
}

.toggle {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.toggle input[type="checkbox"] {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.toggle label {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.toggle label:before {
  content: '';
  width: 40px;
  height: 22px;
  background: rgb(255 0 0 / 50%);
  position: relative;
  display: inline-block;
  border-radius: 46px;
  box-sizing: border-box;
  transition: 0.2s ease-in;
}

.toggle label:after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  left: 2px;
  top: 2px;
  z-index: 2;
  background: #fff;
  box-sizing: border-box;
  transition: 0.2s ease-in;
}

.toggle input[type="checkbox"]:checked+label:before {
  background: rgb(110 220 95 / 70%);
}

.toggle input[type="checkbox"]:checked+label:after {
  left: 20px;
}

.btn-outline-secondary {
  color: #A75F49;
  border: 1px solid #A75F49;
  border-radius: 50px;
  padding: 5px 20px;
}

.btn-outline-secondary:hover {
  background: #A75F49;
  border-color: #A75F49;
}

table.dataTable>tbody>tr:hover {
  background: #FEF7F4;
}

table.dataTable>tbody>td {
  vertical-align: middle;
}

table.dataTable.table-striped>tbody>tr>* {
  vertical-align: middle;
  box-shadow: none !important;
  text-align: center;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #fef3ef;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.modal-header {
  border-bottom: 2px solid #fef3ef;
}

.modal-content h4 {
  color: #000;
  font-weight: 600;
}

.qr_code {
  text-align: center;
  border: 1px solid #A75F49;
  border-radius: 8px;
  padding: 10px;
  max-width: 180px;
  margin: 0 auto 30px;
}

.only_br+.select2-container--default .select2-selection--single,
.only_br+.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: transparent;
  border: 1px solid #E7E7E7;
  height: 50px;
  border-radius: 10px;
}

.only_br+.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #535353;
  height: 50px;
  text-align: left;
  line-height: 50px;
  padding: 0 15px;
}

.only_br+.select2-container--default .select2-selection--single span.select2-selection__arrow b:before {
  color: #535353;
  top: 8px;
  right: 3px;
}

.qr_code img {
  width: 100%;
}

.input-group input.form-control,
.input-group span {
  border: 1px solid #dfdfdf;
  border-radius: 50px;
  background: transparent;
  padding: 15px 20px;
}

.input-group span {
  border-left: 0;
  color: #A75F49;
  font-size: 18px;
}

.input-group span:hover {
  background: #A75F49;
  color: #fff;
  cursor: pointer;
  border-color: #A75F49;
}

.btn-close {
  color: #A75F49;
  background-image: none;
  font-size: 22px;
  padding: 0px 6px 6px 0 !important;
  opacity: 1;
}

.active>.page-link,
.page-link.active {
  background: #A75F49;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  text-align: center;
  border-color: #a75f49;
  line-height: 21px;
}

.input-group span:hover svg path {
  stroke: #fff;
}

.user_detiles {
  display: flex;
  flex-wrap: wrap;
}

.user_detiles .left {
  width: calc(100% - 40px);
  padding-right: 15px;
}

.user_detiles .left ul {
  padding: 0;
}

.user_detiles .left ul li {
  display: flex;
  align-items: self-start;
  padding-bottom: 15px;
}

.user_detiles .left ul li img {
  width: 23px;
}

.user_detiles .left ul li h6 {
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  margin: 0;
  color: #333333;
  line-height: 1.3;
  font-size: 16px;
}

.user_detiles .left {
  padding-top: 20px;
}

.kit.modal-kit {
  align-items: center;
}

.kit.modal-kit .left {
  width: 85px;
}

.kit.modal-kit .middle {
  width: calc(100% - 235px);
}

.kit.modal-kit .middle span {
  padding: 0 0 5px;
}

.kit {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #FFDCD3;
  border-radius: 0;
  padding: 20px 0 0;
  text-align: left;
  margin-bottom: 16px;
}

.kit .left {
  width: 60px;
}

.kit .middle {
  width: calc(100% - 60px);
  padding: 0 15px;
}

.kit .middle h6 {
  display: flex;
  justify-content: space-between;
  color: #1E3163;
}

.kit .middle h6 span {
  color: #1E3163;
  font-size: 14px;
}

.middle p {
  color: #1E3163;
  margin: 0 0 10px;
}

.middle span {
  color: #6F7B9B;
  font-size: 14px;
}

.kit .right {
  padding: 5px 0 0;
  align-items: center;
}

.view_rx a img {
  width: 18px;
  margin-right: 5px;
}

.view_rx a {
  text-decoration: none;
  display: flex;
  align-items: center;
  background: #FAEEE8 0% 0% no-repeat padding-box;
  border-radius: 14px;
  padding: 3px 10px;
  font-size: 14px;
  color: #1E3163;
}

.btn-secondary {
  background: #FAEEE8 0% 0% no-repeat padding-box;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 16px;
  color: #1E3163;
  border: 0;
  align-items: center;
}

.btn-secondary img {
  width: 20px;
  vertical-align: top;
  margin-right: 8px;
}

.btn-secondary:hover {
  background: #fee0d0;
  color: #1e3163;
}

.kit .right span {
  color: #1E3163;
  font-size: 14px;
}

.completed {
  color: #32BA7C !important;
}

.kit .right span {
  display: block;
  text-align: center;
  padding: 10px 0;
}

.sidebar-nav ul .sidebar-item .sidebar-link {
  padding: 10px 22px;
}

.fa-plus {
  font-size: 16px;
  font-style: inherit;
  line-height: 0;
  position: relative;
  top: 2px;
}

.login_btn .btn.btn-primary {
  padding: 16px 30px;
}

.navbar-nav a:hover {
  color: #A75F49;
}

.message-body a:hover {
  background: #000;
  color: #fff;
}

.navbar-nav a img {
  vertical-align: bottom;
}

.page-item {
  background: #F5F5F7 0% 0% no-repeat padding-box;
  border-radius: 24px;
  margin: 5px 2px 0;
}

.page-item.disabled {
  background: #F5F5F7 0% 0% no-repeat padding-box;
  border-radius: 20px;
  color: #d6d6d6;
}

.page-link:hover {
  background: #815344;
}

span.select2-selection__arrow b:before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 2px;
  line-height: 0;
  right: -5px;
  color: #fff;
}

span.select2-selection__arrow b {
  border: 0 !important;
}

.pd_btn {
  width: 25px;
  height: 25px;
  text-align: center;
  padding: 0;
}
.pd_btn i {
  font-size: 12px;
  top: 0;
}
.main_login {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  background: white;
}

.main_login .left,
.main_login .right {
  width: 50%;
  padding: 15px;
  text-align: center;
  position: relative;
  display:
    flex;
  align-items: center;
  justify-content: center;
}

.main_login .left p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  font-size: 16px;
}

.main_pj .first img {
  max-width: 380px;
  width: 100%;
}

.main_pj .second {
  padding: 40px 0 0;
}

.main_pj .second img {
  max-width: 188px;
  width: 100%;
}

.main_login .left {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.main_login .right .login_rs {
  width: 100%;
  max-width: 500px;
}

.login_rs {
  color: #A75F49;
}

.login_rs h2,
.login_rs h3,
.login_rs h4 {
  padding: 0 0 20px;
  margin: 0;
  font-weight: 700;
}

.left-sidebar {
  border-right: 0px solid rgb(229, 234, 239);
  background-color: #FFF2EF;
  background-image: url('{{ asset('/images/kit.png') }}');
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: bottom center;
}

.form-control.br_from {
  border: 1px solid #E7E7E7;
  height: 50px;
  border-radius: 10px;
  background: transparent;
}

.flag_icon {
  display: flex;
  align-items: center;
}

.flag_icon span.select2.select2-container.select2-container--default {
  width: 120px !important;
}

.flag_icon .form-control.br_from {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
  width: 100%;
  left: -5px;
}

.flag_icon span.select2-selection.select2-selection--single {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}

.padding_from {
  padding: 0 30px;
}

.gender_select {
  display: flex;
  flex-wrap: wrap;
  padding: 14px 0;
}

.gender_select .sr_code {
  padding-left: 25px;
  margin-right: 15px;
  position: relative;
  cursor: pointer;
}

.gender_select .sr_code input {
  display: none;
}

.gender_select .sr_code span:before {
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid #A75F49;
  left: 0;
  border-radius: 50px;
  top: 1px;
}

.gender_select .sr_code input:checked+span:before {
  background: #a75f49;
  box-shadow: inset 0 0 0px 2px #fff;
}

.birthday_icon {
  background-image: url({{asset('/images/date.png')}});
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 96% 80%;
}

/* range slider css */
.rangeslider-wrap {
  padding-top: 60px;
  padding-bottom: 60px;
}

.rangeslider {
  position: relative;
  height: 1px;
  border-radius: 5px;
  width: 100%;
  background-color: rgb(167 95 73 / 50%);
}

.rangeslider__handle {
  transition: background-color 0.2s;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #A75F49;
  touch-action: pan-y;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  z-index: 3;
  top: -8px;
  box-shadow: 0 0 0px 1px #A75F49, inset 0 0 0 4px white;
}

.rangeslider__handle__value {
  transition: background-color 0.2s, box-shadow 0.1s, transform 0.1s;
  box-sizing: border-box;
  width: 90px;
  text-align: center;
  padding: 10px;
  background-color: #A75F49;
  border-radius: 5px;
  color: white;
  left: -35px;
  top: -55px;
  position: absolute;
  white-space: nowrap;
  border-top: 1px solid #A75F49;
  box-shadow: 0 -4px 1px rgba(0, 0, 0, 0.07), 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.rangeslider__handle__value:before {
  transition: border-top-color 0.2s;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid;
  border-top-color: #A75F49;
}

.rangeslider__handle__value:after {
  content: "";
}

.rangeslider__fill {
  position: absolute;
  top: -3px;
  z-index: 1;
  height: 100%;
  background-color: #A75F49;
  border-radius: 5px;
  height: 9px;
}

.rangeslider__labels {
  position: absolute;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  top: -8px;
}

.rangeslider__labels__label {
  font-size: 14px;
  position: relative;
  padding-top: 0;
  color: #000000;
  margin-top: -26px;
  font-weight: 600;
}

.rangeslider__labels__label:before {
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 1px;
  height: 9px;
  border-radius: 1px;
  background-color: rgba(128, 128, 128, 0.5);
}

.rangeslider__labels__label:first-child:before,
.rangeslider__labels__label:last-child:before {
  height: 12px;
  width: 2px;
}

.rangeslider__labels__label:first-child:before {
  background-color: #A75F49;
}

.rangeslider__labels__label:last-child:before {
  background-color: gray;
}

.rangeslider__labels__label:first-child {
  transform: translateX(-48%);
}

.rangeslider__labels__label:last-child {
  transform: translateX(48%);
}

.rangeslider.rangeslider--active .rangeslider__handle,
.rangeslider.rangeslider--active .rangeslider__handle * {
  background-color: #A75F49;
}

.rangeslider.rangeslider--active .rangeslider__handle *:before {
  border-top-color: #A75F49;
}

.rangeslider.rangeslider--active .rangeslider__handle__value {
  transform: translateY(-5px);
  box-shadow: 0 -3px 2px rgba(0, 0, 0, 0.04), 0 -9px 25px rgba(0, 0, 0, 0.15);
}

/** end **/

table.dataTable thead>tr>th.sorting,
table.dataTable thead>tr>th.sorting_asc {
  color: #000;
}

.timer i {
  background: #F49B06;
  font-size: 15px;
  color: #fff;
  border-radius: 50%;
  padding: 5px;
}

.checker i {
  background: #3ABC2F;
  font-size: 15px;
  color: #fff;
  border-radius: 50%;
  padding: 5px;
}
.ongoing_s .btn {
  padding: 0;
}

.ongoing_s {
  display: flex;
  align-items: center;
  justify-content: center;
}

table.dataTable td,
table.dataTable th {
  padding: 10px 5px;
  vertical-align: middle;
}

.text-bg-primary {
  background-color: #a75f49 !important;
}

/* ul dropdown */

/* ul dropdown */
.dropdown_sr {
  background: white;
  list-style: none;
  padding: 0;
  position: absolute;
  height: 40px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  color: #000000;
  border: 1px solid #E7E7E7;
  width: 300px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.dropdown_sr li {
  padding: 11px 20px;
  z-index: 2;
}

.dropdown_sr li:not(.init) {
  float: left;
  padding: 10px;
  width: 100%;
  display: none;
  background: rgb(201 201 201 / 20%);
  color: #000;
  position: relative;
  left: 4px;
}

.dropdown_sr li:not(.init):hover,
.dropdown_sr li.selected:not(.init) {
  background: rgb(167 95 73 / 20%);
  color: #000;
}

li.init {
  cursor: pointer;
  position: relative;
}

/* li.init i {
position: absolute;
right: 15px;
} */

.dropdown_sr:after {
  font-family: 'Font Awesome 6 Free';
  content: "\f107";
  font-weight: 900;
  color: #000;
  position: absolute;
  top: 11px;
  right: 16px;
}

.track_detiles {
  display: flex;
  justify-content: space-evenly;
  padding-left: 30px;
  padding-bottom: 20px;
  position: relative;
}

.track_houre {
  padding-left: 10px;
  position: relative;
}

.track_detiles .left {
  width: 70%;
}

.track_detiles .right {
  width: calc(100% - 70%);
  text-align: right;
}

.track_detiles h6 {
  font-weight: 900;
  padding: 4px 0 5px;
}

.track_detiles .right .text-bg-secondary {
  background-color: #FFE6E1 !important;
  border-radius: 22px;
  color: #A75F49 !important;
  font-weight: 700;
  padding: 10px 20px;
}

.track_detiles .left p {
  color: #A75F49;
  margin: 0;
  padding-bottom: 7px;
}

.track_detiles .left p span {
  color: #111111;
}

.track_houre:before {
  position: absolute;
  content: '';
  width: 1px;
  height: calc(100% - 15px);
  background: #A75F49;
  top: 0;
  left: 10px;
}

.track_detiles:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: #A75F49;
  top: 0;
  left: -10px;
  border-radius: 50px;
  border: 1px solid #A75F49;
  box-shadow: inset 0 0 0px 4px #ffffff;
}

.track_houre:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: #A75F49;
  bottom: 0;
  left: 0;
  border-radius: 50px;
  border: 1px solid #A75F49;
  box-shadow: inset 0 0 0px 4px #ffffff;
}
.white_shadow_detiles {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 8px 20px #FEEFE866;
    border-radius: 14px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

.br_white_shadow {
    border: 1px solid #E7E7E7;
    border-radius: 16px;
    margin: 20px 0;
    padding: 20px 15px;
    position: relative;
}

.user_edit {
    display: flex;
    flex-wrap: wrap;
}

.user_edit .left_rs {
    width: 35%;
    display: flex;
    flex-wrap: wrap;
    padding-right: 20px;
    position: relative;
}

.user_edit .right_rs {width: calc(100% - 35%);    padding-left: 20px; border-left: 1px solid #E7E7E7;}

.user_edit .right_rs ul {
    display: flex;
    flex-wrap: wrap;
}
.user_edit .right_rs ul li {
    width: 100%;
    color: #A75F49;
    padding-bottom: 5px;
}
.user_edit .right_rs ul li:not(:first-child) {
    width: 50%;
}

.user_edit .left_rs .profile {
    display: flex;
    width: 100px;
    height: 100px;
    background: #FFE6E1 0% 0% no-repeat padding-box;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #A75F49;
}

.user_edit .left_rs .user_detiles {
    width: calc(100% - 100px);
    padding-left: 15px;
    display: block;
}
.user_edit .left_rs .user_detiles li {
    width: 100%;
    color: #333333;
    padding-bottom: 5px;
}

.user_edit .left_rs .user_detiles ul {
    display: flex;
    flex-wrap: wrap;
}

.user_edit .left_rs .user_detiles ul li:nth-child(1), .user_edit .left_rs .user_detiles ul li:nth-child(2) {
    width: 100%;
    padding-left: 0px;
}

.user_edit .right_rs ul li span {
    color: #111111;
}
.bg_btn {
    background: #FFE6E1 !important;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    padding: 0;
}

.edit_bt {
    position: absolute;
    top: 5px;
    right: 10px;
}
.track_therapy .track_detiles .right p {
    margin: 0;
    padding-bottom: 7px;
}

.track_therapy .track_detiles {
    padding-top: 30px;
    padding-bottom: 30px;
}
.therapy_details .rangeslider-wrap {
  padding-bottom: 10px;
}
.fixed_title h4 {
  color: #A75F49;
  font-size: 18px;
  font-weight: 600;
}

.fixed_title {
  position: absolute;
  top: -12px;
  left: 30px;
  padding: 0 5px;
  background: #fff;
}
.calendar-table thead {
  background: transparent;
}
.track_detiles .left p img {
  vertical-align: text-top;
}
.form-label {
  font-weight: 700;
  color: #000000;
}
.modal-body, .modal-header {
  padding: 24px 48px;
}
.select2-container--default .select2-selection--single {
  border: 1px solid #a75f49;
}
.breadcrumb-item, .breadcrumb-item a, .breadcrumb-item.active {
  font-size: 20px;
  color: #A75F49;
  font-weight: 600;
}
.breadcrumb-item+.breadcrumb-item:before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  line-height: 32px;
  color: #A75F49;
}
.badge {
  cursor: pointer;
}

@media (max-width:1299px) {
  .user_edit .left_rs .user_detiles li {
      width: 100%;
  }

  .dropdown_sr {
      width: 240px;
      margin: 10px 0 0 0;
  }
}

@media (max-width:1199px) {
  footer.footer {
    width: 100%;
    text-align: center;
    /* background: #fff; */
    z-index: 9;
  }

  .brand-logo {
    justify-content: space-between !important;
  }

  footer.footer .text-end {
    text-align: center !important;
  }
  .app-header .navbar {
      margin: 0;
      width: 100%;
      max-width: 100%;
      padding: 0;
      border-radius: 0;
  }

  .app-header {
      padding: 0;
  }
}

@media (max-width:991px) {

  /* .btn.btn-primary {
width: 100%;
} */
  .kit .right {
    width: 100%;
    display: table;
    margin: 0 auto;
  }

  .view_rx {
    text-align: center;
  }

  .kit.modal-kit .middle {
    width: calc(100% - 90px);
  }
  .user_edit .left_rs, .user_edit .right_rs {
    width: 50%;
}

.user_edit .right_rs ul li:not(:first-child) {
    width: 100%;
}
.modal-body, .modal-header {
  padding: 15px;
}
span.select2.select2-container.select2-container--default,
.btn.btn-primary {
  margin: 5px 0;
}
.white_shadow1 {
  margin-top: 15px;
}
.form-control.br_from {
  margin: 5px 0;
}
}

@media (max-width:767px) {



  .white_table .dataTables_length,
  .dataTables_info {
    padding: 10px 0;
  }

  .white_table .dataTables_filter,
  .dataTables_paginate {
    padding: 0;
  }
  .user_edit .left_rs, .user_edit .right_rs {
      width: 100%;
      border: 0;
      padding: 0;
  }

  .br_white_shadow {
      padding: 30px 20px;
  }

  .user_edit .left_rs .edit_bt {
      top: 0;
      right: 0;
  }

}

@media (max-width:575px) {
  .track_detiles {
    flex-wrap: wrap;
  }

  .track_detiles .left,
  .track_detiles .right {
    text-align: left;
    width: 100%;
  }

  .track_detiles .right {
    padding-top: 10px;
  }
  .main_title, .breadcrumb-item, .breadcrumb-item a, .breadcrumb-item.active {
      font-size: 17px;
  }
}

@media (max-width:475px) {
  .user_edit .left_rs .user_detiles {
      padding: 10px 0 0 0;
      width: 100%;
  }
  .white_shadow_detiles {
      padding: 15px;
  }

  .br_white_shadow {
      margin: 0 0 30px;
  }
    .handle-preloader .animation-preloader .txt-loading .letters-loading {
      font-size: 40px;
      line-height: 40px;
    }
}

.red_star{
  color: red;
}
table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>th.sorting_asc {
  padding: 10px 5px;
}

table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_desc:after {
  display: none;
}

table.dataTable thead>tr>th.sorting:before, table.dataTable thead>tr>th.sorting:after, table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_asc:after, table.dataTable thead>tr>th.sorting_desc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>th.sorting_asc_disabled:before, table.dataTable thead>tr>th.sorting_asc_disabled:after, table.dataTable thead>tr>th.sorting_desc_disabled:before, table.dataTable thead>tr>th.sorting_desc_disabled:after, table.dataTable thead>tr>td.sorting:before, table.dataTable thead>tr>td.sorting:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_asc:after, table.dataTable thead>tr>td.sorting_desc:before, table.dataTable thead>tr>td.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc_disabled:before, table.dataTable thead>tr>td.sorting_asc_disabled:after, table.dataTable thead>tr>td.sorting_desc_disabled:before, table.dataTable thead>tr>td.sorting_desc_disabled:after {
  display: none;
}
.other_txt {
  display: none ;
}
.other_txt.main {
  display: block ;
}

.other_txt_2 {
  display: block ;
}
.other_txt_2.main {
  display: none ;
}
.dr_detils {
  width: 100%;
  padding: 10px 0 ;
  border-radius: 8px;
  font-weight: 600;
}

.dr_detils ul {
  padding: 0;
  margin: 0;
  border-radius: 8px;
}
.dr_detils ul li i {
  width: 16px;
  text-align: center;
}
.dr_detils ul li {
  padding-bottom: 5px;
}
button.btn.btn-outline-success, button.btn.btn-outline-danger {
  background: transparent;
  border: 1px solid !important;
}

button.btn.btn-outline-success:hover {
  background: #13deb9;
}
button.btn.btn-outline-danger:hover {
  background: #FA896B;
}
input[type="file"]::file-selector-button {
  background-color: #ffffff !important;
}

input[type="file"]::file-selector-button:hover {
  background-color: #fff !important;
}
.pending {
  text-align: center;
  color: #fff;
  background: #8cb9dc;
  display: table;
  margin: 0 auto;
  border-radius: 50px;
  line-height: 25px;
  padding: 0 10px;
}

.checker {
  text-align: center;
}

.timer {
  text-align: center;
}
.text-bg-success {
  background: #717171 !important;
}
.checker.new_checker i, .timer.new_pending i{
  background: transparent;
  padding: 0;
}
.checker.new_checker {
  background: #3ABC2F;
}
.timer.new_pending{
  background: #F49B06;
}
.checker.new_checker,
.timer.new_pending {
  color: #fff;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 50px;
}
.ongoing_s span {
  font-weight: 900;
  color: #a75f49;
  cursor: pointer;
}
.pending, .checker.new_checker, .timer.new_pending {
  font-size: 12px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.pending i, .checker.new_checker i, .timer.new_pending i {
  font-size: 12px;
}
.track_houre_row table {
  white-space: nowrap;
  text-align: center;
  color: #000;
}
#applyfilter, #clearfilter {
  border: 0;
}
table.dataTable thead th, table.dataTable thead td, table.dataTable tfoot th, table.dataTable tfoot td {
  text-align: center;
  color: #000;
}
label.error {
  color: red;
}
/* .white_shadow1 .chartjs-render-monitor {
  z-index: 99999 !important;
  position: sticky !important;
} */
.chartjs-size-monitor {
  display: none;
}
.preview_img {
  display: flex;
  align-items: center;
}

.preview_img {}

.preview_img .input_pre {
  width: calc(100% - 50px);
  padding-right: 15px;
  position: relative;
}

.preview_img .img_pre {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 1px solid #c1c1c1;
}

.preview_img .img_pre img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}



.preview_img .input_pre span {
  justify-content: center;
  background: #A75F49;
  color: #fff;
  width: 100%;
  display: block;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.preview_img .input_pre input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding-right: 15px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}
.login_in label.error {
  text-align: left;
  display: block;
  padding: 5px 0 0;
}


/* .container-fluid {
  background: red;
} */
/* table.dataTable td, table.dataTable th {
  padding: 10px 5px;
  vertical-align: middle;
  word-break: break-word;
} */

.page-link {
  color: #000;
}

.page-link:hover {
  color: #fff;
  background: #A75F49;
}
.text-bg-stock {
  background-color: rgb(167 95 73 / 10%);
  color: #a75f49;
  cursor: unset;
}
.user__name {
  margin-bottom: 0;
}

.user__name {
  font-size: 16px;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  line-height: 20px;
  text-align: right;
  justify-content: end;
}

.user__name span {    width: 100%;font-size: 14px;color: #505050;}
.user__detiles .user__name {
  justify-content: center;
  margin: 0 !important;
  color: #a75f49;
  font-weight: 700;
}

.user__detiles .user__name span {
  text-align: center;
}

.user__detiles {
  padding: 10px;
}
.app-header .navbar .navbar-nav .nav-item .nav-link span {
  width: 50px;
  height: 50px;
  background: #a75f49;
  line-height: 45px;
  color: #fff;
  text-align: center;
  border: 2px solid #a75f49;
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
  font-size: 16px;
}

button {
  box-shadow: none !important;
  background: #FFF;
}