@font-face {
  font-family: "Ronnia";
  src: url("/assets/fonts/ronnia-basic.otf");
  font-style: normal;
  font-weight: 200, 400, 600, 800;
  font-display: swap;
}

:root {
  --primary-color: #332876;
  --secondary-color: #08bbcf;
  --white-color: #fff;
  --black-color: #000000;
  --calander-background: #ced4da;
  --admin-background: #f1ebdf;
  --red-color: #ff0000;
  --font-10: 10px;
  --font-11: 11px;
  --font-12: 12px;
  --font-13: 13px;
  --font-14: 14px;
  --font-15: 15px;
  --font-16: 16px;
  --font-18: 18px;
  --font-20: 20px;
  --font-30: 30px;
}

body {
  font-family: "Ronnia" !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 500 !important;
}
.text-end {
  text-align: right !important;
}

body .btn.focus,
body .btn:focus {
  box-shadow: 0 0 0 1px rgb(38 143 255 / 24%);
}

a {
  text-decoration: none !important;
}

.text-red {
  color: var(--red-color);
}

.text-white {
  color: var(--white-color);
}

.font-11 {
  font-size: var(--font-11);
}

.font-12 {
  font-size: var(--font-12);
}

.font-16 {
  font-size: var(--font-16);
}

.font-18 {
  font-size: var(--font-18);
}

.font-14 {
  font-size: var(--font-14);
}

.weight-600 {
  font-weight: 600;
}

.heading {
  font-size: var(--font-30);
  color: var(--primary-color);
}

.color-red {
  color: var(--red-color);
}

.font-500 {
  font-weight: 500;
}

.font-600 {
  font-weight: 600;
}

.overflow-wrap {
  overflow-wrap: anywhere;
}

.btnPrimary {
  background-color: var(--primary-color);
  border-radius: 40px;
  color: var(--white-color);
  border: none;
}

.btnPrimary.btnVideo {
  width: 85px;
  padding: 4px 0;
  font-size: 14px;
}

.text-color-primary {
  color: var(--primary-color);
}

.text-color-secondary {
  color: var(--secondary-color);
}

.color-black {
  color: #232323;
}

.color-grey {
  color: #ccc !important;
}
.nowrap {
  white-space: nowrap;
}

.font-900 {
  font-weight: 900;
}

.loginbody {
  background-image: url("/assets/wallpaper/ESHS-Wallpaper-1920px-x-1500px-Purple-Gradient.jpg");
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

img {
  max-width: 100%;
}

.stripe {
  background-color: var(--white-color);
}

.terms {
  padding-top: 5rem;
  padding-bottom: 1rem;
}

.btn.primary-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  min-width: 161px;
}

.btn.primary-btn:hover {
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.32); */
  color: var(--white-color);
}

.btn.secondary-btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
  min-width: 161px;
}

.btn.secondary-btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
  min-width: 161px;
}

.btn.secondary-btn:hover {
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -3px 0 rgba(0, 0, 0, 0.32); */
  color: var(--white-color);
}

.btn.btn-sm-own {
  font-size: var(--font-12);
  min-width: auto;
  min-height: auto;
}

.alert-box-wrapper {
  position: fixed;
  right: 20px;
  z-index: 999999;
  top: 30px;
}

.alert-list.success {
  background: rgba(0, 128, 0, 0.9);
}

.alert-list.error {
  background: rgba(220, 10, 10, 0.9);
}

.alert-box-wrapper .alert-list {
  /* margin-bottom: 15px; */
  font-size: 14px;
  padding: 12px 15px 15px;
  color: #fff;
  box-shadow: 0 0 5px #ddd;
  border-radius: 4px;
  position: fixed;
  /* left: 0; */
  right: 15px;
  top: 15px;
  min-width: 150px;
  /* bottom: 0; */
  text-align: right;
  text-align: center;
}

.loader-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 55555;
}

.loader {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid var(--primary-color);
  width: 40px;
  height: 40px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.tablehead {
  display: none;
}

.tablevideo {
  margin-left: 20%;
  margin-right: 20%;
}

.button {
  border-radius: 50%;
}

.form-input {
  /* position: absolute; */
  border-radius: 1rem;
  /* margin-bottom: 5px; */
}

.btn-label {
  display: inline-block;
  padding: 10px 2rem;
  margin: 0.5rem;
  cursor: pointer;
  color: #292929;
  border: 1px solid var(--secondary-color);
  border-radius: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-label p {
  font-size: 1rem;
  padding-bottom: 0rem;
  margin-bottom: 0;
}

.btn-label:hover,
.radio-wrapper input[type="radio"]:checked + label {
  background: var(--secondary-color);
  color: var(--white-color);
}

.btn-label:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2),
    inset 0px -1px 0 rgba(0, 0, 0, 0.22);
}

.hidden {
  display: none;
}

#btnMale:checked + .btn-label {
  background: rgb(0, 177, 203);
  background: var(--secondary-color);
  color: #efefef;
}

#btnMale:checked + .btn-label:hover {
  background: rgb(0, 177, 203);
  background: var(--secondary-color);
  color: #e2e2e2;
}

#btnFemale:checked + .btn-label {
  background: rgb(0, 177, 203);
  background: var(--secondary-color);
  color: #efefef;
}

#btnFemale:checked + .btn-label:hover {
  background: rgb(0, 177, 203);
  background: var(--secondary-color);
  color: #e2e2e2;
}

#btnOther:checked + .btn-label {
  background: rgb(0, 177, 203);
  background: var(--secondary-color);
  color: #efefef;
}

#btnOther:checked + .btn-label:hover {
  background: rgb(0, 177, 203);
  background: var(--secondary-color);
  color: #e2e2e2;
}

#btnUnspecified:checked + .btn-label {
  background: rgb(0, 177, 203);
  background: var(--secondary-color);
  color: #efefef;
}

#btnUnspecified:checked + .btn-label:hover {
  background: rgb(0, 177, 203);
  background: var(--secondary-color);
  color: #e2e2e2;
}

.btn.btn-blue-own,
.btn.btn-blue-own:hover,
.btn.btn-blue-own:focus {
  background: rgb(104, 103, 149);
  background: linear-gradient(
    180deg,
    rgba(104, 103, 149, 1) 0%,
    rgba(50, 47, 145, 1) 45%
  );
  width: 100%;
  color: var(--white-color);
}

.btn-own-radius {
  border-radius: 40px;
}

.btn-own {
  min-height: 42px;
}

.regBtn {
  background: rgb(104, 103, 149);
  background: linear-gradient(
    180deg,
    rgba(104, 103, 149, 1) 0%,
    rgba(50, 47, 145, 1) 45%
  );
  border-radius: 40px;
  width: 100%;
  color: var(--white-color);
  margin-left: 0px;
  padding: 5px;
}

.btnFooter {
  /* background: linear-gradient(rgba(46, 35, 126, 1) 0%, rgba(7, 7, 8, 1) 100%);
   */
  background-color: var(--secondary-color);
  border-radius: 24px;
  color: var(--white-color);
  min-height: 50px;
  border: none;
}

.btnRed {
  background-color: var(--red-color);
  border-radius: 24px;
  color: var(--white-color);
  min-height: 50px;
  border: none;
}

.btnCancel {
  background: #eef2f3;
  border: 1px solid #bec5d3;
  box-sizing: border-box;
  border-radius: 21px;
  color: #9da2ad;
  height: 50px;
}

.justify-content-space-around {
  justify-content: space-around;
}

body .gmnoprint,
body .gm-fullscreen-control {
  display: none;
}

body .btn-blue-radiant,
body .btn-blue-radiant:hover,
body .btn-blue-radiant:focus {
  background: linear-gradient(
    180deg,
    rgba(46, 35, 126, 1) 0%,
    rgba(7, 7, 8, 1) 100%
  );
  color: var(--white-color);
}

.btnCancel.footer-width,
.btnFooter.footer-width {
  width: 150px;
}

.admin-header {
  background-color: var(--white-color);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
}

.admin-header p {
  display: inline;
}

.admin-portal {
  background-color: #dcdcdc;
  /* position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; */
}

.wrapper {
  display: flex;
  height: initial;
  flex-wrap: wrap;
  /* min-height: calc(100vh - 50px); */
  min-height: 100vh;
  padding-top: 50px;
}

.datepicker-own .react-date-picker__wrapper {
  background: #fff;
  border: none;
  padding: 5.5px 10px;
  border-radius: 4px;
}

body .react-responsive-modal-closeButton {
  top: 22px;
  right: 27px;
  outline: none;
}

body .react-responsive-modal-closeButton svg {
  display: none;
}

.form-group-lg {
  min-height: 95px;
}

.modal-own .admin-banner,
.admin-modal .admin-banner {
  margin-bottom: 20px;
}

.table-type {
  margin-bottom: 2px;
}

.small-select {
  margin-left: 5px;
  min-width: 100px;
}

.hidden-on-map-select .MuiFormControl-root > label {
  transform: translate(20px, -6px) scale(0.75);
}

.hidden-on-map-select.show-item-page .MuiFormControl-root {
  min-width: 140px;
}

/* .small-select .MuiInputBase-input {
  padding: 5px 10px;
  background-color: #fff;
  padding-right: 30px;

}

.small-select .MuiSelect-select:focus {
  background-color: #fff;

} */

.radio-wrapper {
  background: #fff;
  /* padding: 20px 0; */
  border-radius: 4px;
}

.hidden-img {
  z-index: -22;
  position: absolute;
  opacity: 0;
}

/* .dashboard-main-wrapper{
  max-height: 100vh;
  overflow: hidden;
} */

.tick {
  font-size: 30px;
}

.tick > div {
  display: flex;
  justify-content: space-around;
}

body .tick-flip {
  min-width: 55px;
}

body .tick-flip-panel {
  color: #edebeb;
  background-color: var(--primary-color);
}

.overflow-hidden-own {
  overflow: hidden;
}

.tab-list > li {
  min-width: 200px;
  text-align: center;
  border: 1px solid rgb(155, 155, 155);
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 20px;
}

.tab-list > li:first-child {
  border-radius: 5px 0 0 5px;
}

.tab-list > li:last-child {
  border-radius: 0px 5px 5px 0px;
}

.tab-list > li:hover {
  background-color: rgb(62 47 145 / 50%);
  color: var(--white-color);
  border-color: transparent;
}

.tab-list > li.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: transparent;
}
.zone-list-wrapper > li {
  display: flex;
  flex-wrap: wrap;
}

.styled-checkbox {
  position: absolute;
  opacity: 0;
}

.styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
}

.styled-checkbox:hover + label:before {
  background: var(--primary-color);
}

.styled-checkbox:checked + label:before {
  background: var(--primary-color);
}

.styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.styled-checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}

.styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white,
    4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}

.org-area-list > li {
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #ddd;
}

.map-search-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 25px;
  z-index: 4;
  display: flex;
  width: 400px;
  flex-wrap: wrap;
  align-items: center;
  margin: auto;
}

.map-search-wrapper .map-search-input {
  position: relative;
  transform: none;
  left: 0;
  top: 0;
}

.map-search-wrapper .stores-list-wrapper {
  overflow: hidden;
  margin-top: 5px;
  background-color: #fff;
  border-radius: 10px;
}

.map-search-wrapper .stores-list-wrapper > li {
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: var(--font-12);
}

.map-search-wrapper .stores-list-wrapper > li:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.map-search-wrapper .stores-list-wrapper > li.active {
  background-color: red;
  color: #fff;
}

.sidebar {
  position: fixed;
  min-width: 260px;
  max-width: 260px;
  min-height: 100vh;
  transition: margin-left 0.35s ease-in-out, left 0.35s ease-in-out,
    margin-right 0.35s ease-in-out, right 0.35s ease-in-out;
  background: #322f91;
  display: flex;
  flex-direction: column;
  align-items: center;
  bottom: 0px;
  top: 50px;
}

.sidebar-text {
  display: inline;
  font-size: 14px;
}

.sidebar-logo {
  size: 100px;
}

.sidebar.collapsed,
.active.wrapper .sidebar {
  margin-left: -260px;
}

.upload-media-dashed .upload-btn-dashed {
  display: block;
  text-align: center;
  padding: 40px 15px;
  border: 2px dashed #a0a0a0;
  border-radius: 3px;
}

.upload-btn .upload-btn-txt {
  border: 1px solid #ddd;
  background-color: #f3f3f3;
  min-width: 100px;
  padding: 8px 12px;
  pointer-events: none;
}

.upload-btn-dashed {
  display: block;
  text-align: center;
  padding: 1rem 0;
  border: 2px dashed #a0a0a0;
  border-radius: 3px;
  position: relative;
}

.upload-media-dashed input {
  height: 100%;
  width: 100%;
}

.upload-input {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  max-width: 100%;
  width: 100%;
}

body .table .min-btn-xl {
  min-width: 145px;
}

.table-switch .toggle-label {
  margin-bottom: 0;
  margin-top: 5px;
}

.arecode-list {
  max-height: 140px;
  overflow-y: auto;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.arecode-list > li:not(:last-child) {
  margin-bottom: 5px;
  padding-bottom: 5px;
  padding-left: 3px;
  border-bottom: 1px solid #e9e9e9;
}

.arecode-list > li:last-child {
  padding-left: 3px;
}

.no-data-available {
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
}

.main {
  /* height: 89.6vh; */
  width: calc(100% - 260px);
  padding: 1rem;
  margin-top: 15px;
  transition: all 0.2s ease-in-out;
  position: relative;
  margin-left: 260px;
}

.wrapper.active .main {
  width: 100%;
  margin-left: 15px;
}

.main-wrapper {
  background: var(--admin-background);
  padding-bottom: 1rem;
}

.sidebar::-webkit-scrollbar {
  width: 12px;
}

.sidebar::-webkit-scrollbar-track {
  border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #322f91;
}

.sidebar .sidebar-header div {
  margin-top: 2rem;
  align-self: start;
  padding-right: 7rem;
}

.sidebar ul {
  align-self: start;

  width: 100%;
}

.sidebar ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.sidebar ul li .sidebar-link,
.sidebar .menu-inner-wrapper {
  padding: 8px 10px;
  font-size: 1em;
  display: block;
  color: #fff;
}

.sidebar .menu-inner-wrapper.active-tab,
.sidebar-submenu-list-wrapper .submenu-inner-wrapper.active-tab {
  box-shadow: 0 0 3px #ddd;
}

.sidebar .menu-inner-wrapper .sidebar-arrow-icon {
  font-size: 20px;
  transition: all 0.2s ease;
}

.sidebar .menu-inner-wrapper .sidebar-arrow-icon.active {
  transform: rotate(180deg);
}

.sidebar ul li .sidebar-link:hover {
  color: var(--primary-color);
  background: var(--white-color);
}

/* .sidebar ul li.active > a.sidebar-link[aria-expanded="true"] {
  color: var(--primary-color);
  background: var(--secondary-color);
} */

.active-tab {
  background-color: var(--white-color);
  color: var(--primary-color) !important;
}

/* .active-tab span {
  color: var(--primary-color) !important  ;
} */

.sidebar-link {
  color: var(--white-color);
  text-decoration: none !important;
}

.sidebar-link i {
  margin-right: 10px;
  size: 1px;
}

Link {
  text-decoration: none;
}

/* common css */

body .btn-own {
  border-radius: 25px;
  min-height: 42px;
  outline: none;
  /* width: 300px; */
}

.tab-wrapper-list > li {
  min-width: 150px;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #b0b0b0;
  color: #fff;
  cursor: pointer;
}

.tab-wrapper-list > li.active {
  background-color: var(--primary-color);
}

.tab-wrapper-list > li:first-child {
  border-radius: 10px 0 0 10px;
}

.tab-wrapper-list > li:last-child {
  border-radius: 0px 10px 10px 0px;
}

body .btn-own-admin {
  border-radius: 25px;
  min-height: 42px;
  outline: none;
}

.form-own .form-control {
  border-radius: 25px;
  min-height: 42px;
}

.form-own .form-group {
  min-height: 80px;
  margin-bottom: 0;
}

body .btn-secondary-own {
  background-color: #00bbcf;
  border-color: #00bbcf;
}

body .btn-secondary-own:hover,
body .btn-secondary-own:focus {
  background-color: #078fc0;
  border-color: #078fc0;
}

body .btn-black {
  background-color: #0f0f0f;
  border-color: #0f0f0f;
}

body .btn-black:hover,
body .btn-black:focus {
  background-color: var(--black-color);
  border-color: var(--black-color);
}

.cursor {
  cursor: pointer;
}

.footer-logo {
  position: fixed;
  /* left: 0; */
  width: 260px;
  bottom: 0;
  padding: 15px;
  /* text-align: center; */
  display: flex;
  justify-content: space-between;
}

body .footer-logo img {
  max-height: 45px;
  margin-left: 0;
}

.footer-logo p {
  padding: 10px 20px 0 0;
}

/* login css */

.auth-screen-wrapper {
  /* background: url("../icons/bg-purple.jpg") repeat;
   */
  background-color: var(--primary-color);
  color: var(--white-color);
  min-height: 100vh;
  background-attachment: fixed;
}

.fix-width-wrapper {
  max-width: 350px;
}

.auth-body-wrapper .logo-wrapper {
  padding-top: 8vh;
}

.auth-body-wrapper .logo-wrapper img {
  width: 130px;
  margin-bottom: 4vh;
}

.login-text {
  padding-top: 5vh;
  padding-bottom: 2vh;
}

.reg-screen-wrapper {
  min-height: calc(100vh);
  padding-top: 80px;
  /* background: url(../icons/bg-dark-blue.jpg) repeat;
  color: var(--white-color); */
  color: var(--primary-color);
}

.reg-screen-wrapper .radio-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.own-datepicker {
  /* width: 300px; */
  height: 50px;
  border: 1px solid var(--secondary-color);
  border-radius: 40px;
}

.own-datepicker-admin {
  /* width: 300px; */
  height: 50px;
  border: 1px solid var(--secondary-color) !important;
  border-radius: 40px;
  background-color: var(--admin-background) !important;
}

.datepicker-label {
  position: absolute;
  font-size: 13px;
  top: -8px;
  left: 20px;
  background: white;
  padding: 0 5px;
}

.datepicker-label-admin {
  position: relative;
  font-size: 13px;
  top: 18px;
  left: 20px;
  padding: 0 5px;
  color: var(--primary-color);
  background-color: var(--admin-background);
}

.reg-btn-wrapper {
  display: flex;
  justify-content: space-between;
}

.reg-btn-wrapper > button {
  width: 140px;
  border-radius: 40px;
  min-height: 50px;
  border: none;
}

.reg-btn-wrapper button:first-child {
  background-color: #eef2f3;

  color: rgb(128, 128, 128);

  border: 1px solid rgba(128, 128, 128, 0.2);
}

.reg-btn-wrapper button:last-child {
  background-color: var(--secondary-color);

  color: var(--white-color);
}

.form-control.own-datepicker .react-date-picker__wrapper,
.form-control.own-datepicker-admin .react-date-picker__wrapper {
  border: none;
  padding-top: 1px;
  border-radius: 20px;
}

.own-datepicker .react-date-picker__wrapper,
.own-datepicker-admin .react-date-picker__wrapper {
  border: none;
  padding: 13px 20px 7px;
}

.form-control.own-datepicker-admin .react-date-picker,
.own-datepicker-admin
  .react-date-picker
  .form-control.own-datepicker
  .react-date-picker,
.own-datepicker .react-date-picker {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

/* .form-group:nth-child(4) {
  margin-top: 1.2rem;
} */

.radio {
  display: inline;
}

.date-picker {
  border: 1px solid var(--black-color);
}

.error-text {
  color: #ff0000;
  font-size: 13px;
  margin-left: 1rem;
}

.reg-birthdate {
  display: block;
  position: relative;
  padding: 0.7rem;
  font-size: 0.9rem;
  border: 1px solid var(--calander-background);
  border-radius: 40px;
  height: 50px;
  width: 100%;
  /* margin-bottom: 1rem; */
  background: var(--white-color);
}

.reg-birthdate:focus {
  outline: none;
  border-color: #3acfff;
  box-shadow: 0 0 0 0.25rem rgba(0, 120, 250, 0.1);
}

/*admin main page*/

.admin-banner {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding-left: 0.5rem;
  padding-top: 0.2rem;
  font-size: 20px;
  margin-bottom: 12px;
}

.admin-portal-new {
  background-color: #f9f9f9;
  font-size: 13px;
}

.admin-banner-new {
  color: #101010;
  padding-left: 0.5rem;
  padding-top: 0.2rem;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.admin-search-new .search-wrapper-new .MuiOutlinedInput-root fieldset,
.admin-search-new
  .search-wrapper-new
  .input-box
  .MuiOutlinedInput-root:hover
  fieldset {
  border: 1px solid #e5e9ee !important;
  border-radius: 40px;
}

.admin-search-new .search-wrapper-new input {
  background-color: #fff;
  border-radius: 40px;
  color: #101010;
  font-size: 13px;
  min-width: 300px;
  min-height: 40px;
  height: 40px;
}

.admin-search-new .search-wrapper-new .MuiFormControl-root {
  display: flex;
}
.admin-search-new .search-wrapper-new label {
  color: #101010 !important;
  font-size: 13px;
}

.btn.btn-new {
  border-radius: 15px;
  padding: 8px 10px;
  min-width: 130px;
  font-size: 13px;
  min-height: 40px;
}

.admin-modal .admin-banner-new {
  color: var(--primary-color);
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.react-responsive-modal-modal.admin-modal-new {
  padding-left: 0;
  padding-right: 0;
}

.scanner-modal-wrapper .react-responsive-modal-container {
  padding: 0 !important;
}

.scanner-modal-wrapper .react-responsive-modal-container .modal-own {
  height: 100%;
  padding: 0 !important;
  background-color: #f9f9f9;
}

.scanner-modal-wrapper .header-wrapper {
  position: relative;
  padding: 25px 15px;
}

.scanner-modal-wrapper .header-wrapper .heading {
  font-size: 20px;
  font-weight: 700;
}

.scanner-modal-wrapper .header-wrapper img {
  position: absolute;
  left: 15px;
  top: 20px;
  width: 30px;
  height: 30px;
}

.scanner-modal-wrapper .venue-details {
  box-shadow: 0 3px 3px #f9f9f9;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-size: 13px;
}

.scanner-modal-wrapper .venue-details .heading-own {
  font-size: 16px;
  padding-bottom: 3px;
}

.carousal-heading {
  border-bottom: 1px solid #ddd;
  padding: 5px 15px 5px 0;
}

.scanner-modal-wrapper .carousel-details {
  padding-bottom: 40px !important;
}
.carousel-details .img-wrapper {
  padding: 15px;
}

.carousel-details .control-dots {
  bottom: -10px !important;
}

.carousel-details .control-dots .dot {
  opacity: 1 !important;
  box-shadow: none !important;
  width: 10px !important;
  height: 10px !important;
  background-color: #ddd !important;
}

.carousel-details .control-dots .dot.selected {
  background: #00bbcf !important;
}

.scanner-modal-wrapper .btn-contatiner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
  background-color: #fff;
  border-top: 1px solid #ddd;
}

.carousel-details .carousal-heading .heading {
  font-size: 18px;
  font-weight: 700;
}

.breadcum-wrapper .path {
  position: relative;
}

.breadcum-wrapper .path::after {
  content: ">";
  padding-left: 7px;
  padding-right: 5px;
  pointer-events: none;
  color: #bababa;
}

.breadcum-wrapper .path a {
  color: #bababa;
}

.dropdown {
  width: 30px; /* Width of the dots container */
  cursor: pointer; /* Change cursor on hover */
}

.triple-dot {
  width: 4px; /* Width of each dot */
  height: 4px; /* Height of each dot */
  background-color: var(--secondary-color); /* Dot color */
  border-radius: 50%; /* Make dots circular */
  margin: 1px 0; /* Space between dots */
  transition: background-color 0.3s; /* Smooth transition for hover effect */
  display: block;
}

.dropdown:hover .triple-dot {
  background-color: var(--primary-color); /* Change color on hover */
}

.dropdown:hover {
  background-color: transparent !important;
}

.components li {
  font-size: 10px;
}

.sidebar .footer-logo {
  align-self: start;
}

.sidebar .footer-logo.superadmin-logo {
  align-self: start;
  position: relative;
  top: 35vh;
}

.modal-md {
  width: 500px;
  max-width: 100%;
}

img.sidebar-header-logo {
  max-width: 50%;
  max-height: 50%;
  display: inline-block;
  margin-left: 10px;
}

.img-upload-wrapper .img-upload-container {
  max-width: 200px;
}

.img-upload-wrapper .upload-area {
  background-color: #f9f9f9;
  padding: 10px;
  border: 2px dashed #ccc;
  border-radius: 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  min-width: 200px;
  min-height: 200px;
}

.img-upload-wrapper .upload-area input {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  cursor: pointer;
}

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

.btn-grey.btn {
  background-color: #eef2f3;
  border: 1px solid #b1b1b1;
}

/* Admin Control*/

.admin-controls {
  display: block;
  align-items: flex-start;
}

.admin-controls .admin-search {
  display: flex;
  align-items: flex-start;
}

.admin-controls .admin-search .search-label {
  padding-right: 10px;
  color: var(--primary-color);
}

.admin-controls .admin-search #search {
  padding: 1px 1px 1px 10px;
  height: 35px;
}

.admin-controls .admin-search #search:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px var(--secondary-color);
}

.admin-controls .admin-search .btn.secondary-btn {
  /* color: var(--black-color); */
  color: #fff;
  max-width: 50px;
  padding-right: 15px;
  min-width: initial;
  height: 42px;
  border-radius: 0 40px 40px 0;
  position: relative;
  /* right: 48px; */
}

.admin-controls .admin-add-new .link .btn.secondary-btn {
  color: black;
}

.min-mw-sm {
  min-width: 90px;
}

.sort-header i {
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  margin-left: 3px;
}

.pagination-list {
  margin-bottom: 0;
}

.jump-to-page .MuiSelect-selectMenu {
  padding: 8px;
  padding-right: 32px;
  padding: 8px;
  padding-right: 32px;
  min-width: 70px;
  box-sizing: border-box;
}

.sort-header.active i {
  opacity: 1;
  pointer-events: initial;
}

.admin-header {
  box-shadow: 0 0px 3px #c6c6c6;
}

/*Admin report*/

.admin-report {
  margin-left: 5px;
}

.react-date-picker__clear-button {
  display: none;
}

.admin-report label {
  padding-left: 0px;
  padding-right: 10px;
  font-size: 14px;
  margin-top: 10px;
}

.admin-report .filter-type label {
  margin-top: 3px;
}

.admin-report input {
  margin-right: 1.9rem;
  padding: 4px 7px 4px 7px;
  font-size: 0.9rem;
  border: 1px solid var(--calander-background);
  border-radius: 5px;
}

/*Table styles*/

.table-wrapper {
  display: block;
}

.table-admin .table-head {
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 13px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.table-admin .user-data-report th {
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 13px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.table-wrapper-scroll-y.table-scrollbar-report {
  position: relative;
  overflow-x: auto;
  width: 100%;
  /* max-height: 400px;  */
}

.table-wrapper-scroll-y {
  display: block;
}

.table-own {
  border: 1px solid #ddd;
}

.table-own .table {
  margin-bottom: 0;
}

.table-wrapper .table-type {
  /* padding-left: 1rem; */
  /* padding-top: 1rem; */
  font-weight: 700;

  color: var(--primary-color);
}

/* .table-wrapper div table tbody tr td button {
  border: none;
  background-color: transparent;
}


.override {
  text-align: center;
  vertical-align: middle;
  margin-left: 3.4rem;
}

/*add user*/
.form-admin {
  margin: 1rem;
}

.admin-form-input .form-control.form-input {
  margin-bottom: 1.5rem;
}

.admin-date .date {
  width: calc(100%);
}

.admin-form-input .admin-form-group {
  max-width: 400px;
  display: inline-block;
  margin: auto;
}

.form-admin .reg-birthdate {
  border-radius: 4px;
  height: 38px;
}

.form-admin div button:first-child {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.form-admin .admin-btn {
  margin: 2rem 23rem 0 23rem;
  display: flex;
  justify-content: space-around;
}

.form-admin .admin-btn button:last-child {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/*add stores*/
.wrapper-add-stores {
  display: flex;
  flex-wrap: wrap;
  /* height: 60vw; */
}

.main.add-stores {
  height: 58vw;
}

input#isHidden {
  height: 40px;
  width: 50px;
  display: block;
}

input#isActive {
  height: 40px;
  width: 50px;
  display: block;
}

.admin-btn {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.admin-btn .admin-back-btn {
  width: 100px;
  color: var(--white-color);
  background-color: var(--primary-color);
}

.admin-btn .admin-submit-btn {
  width: 100px;
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.admin-form-label {
  font-size: 16px;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.error-msg .error-msg-text {
  color: var(--red-color);
  display: inline-block;
  margin-bottom: 0px;
  font-size: 14px;
}

/*add pincodes*/

.actions {
  white-space: nowrap;
}

.add-pincodes .actions {
  white-space: nowrap;
}

/*add admin*/

.admin-select #org {
  display: block;
}

.btn.secondary-btn.modal-btn {
  /* color: var(--black-color); */
  color: #fff;
}

/*modal*/
.admin-modal {
  position: relative;
  overflow: auto;
  /* margin-right: 40px; */
  /* max-height: 600px; */
}

.modal-own.react-responsive-modal-modal {
  border-radius: 4px;
  width: 600px;
}

.form-own .own-textarea.form-group {
  min-height: 180px;
}

/* .form-own .own-textarea textarea {
  padding: 0.75rem;
  resize: none;
  border: 1px solid var(--secondary-color);
} */

.mark-input-wrapper label {
  font-size: var(--font-13);
  margin-bottom: 0;
}

.mark-input-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-top: 7px;
}

.mark-input-wrapper input {
  height: 16px;
  width: 16px;
}

body .form-control:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
}

/* pagination css */

.pagination-btn-wrapper .btn {
  border: 1px solid hsla(0, 0%, 59.2%, 0.2);
  background-color: hsla(0, 0%, 84.7%, 0.2);
  color: #737373;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
}

.prev-next-btn .btn {
  min-width: 85px;
}

.show-item-page .MuiFormControl-root {
  min-width: 160px;
}

.show-item-page .MuiSelect-root {
  padding: 10px;
}

/*dashboard*/
/* .setting-own {
  position: absolute;
  bottom: 45px;
  left: 15px;
  color: var(--primary-color);
  font-size: 30px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 3px rgb(156, 156, 156);
} */

.setting-modal-own {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.dashboard-tab-wrapper > li {
  background-color: var(--primary-color);
  flex: 1;
  text-align: center;
  padding: 15px;
  color: #fff;
  transition: all 0.2s ease;
}

.dashboard-tab-wrapper > li.active {
  background-image: linear-gradient(var(--secondary-color), #0169ac);
  background-color: #0169ac;
}

.store-list-wrapper.full {
  bottom: 0;
}

.store-distance {
  font-weight: 600;
  color: var(--secondary-color);
  padding-left: 5px;
}

.flex-1 {
  flex: 1;
}

.store-list-wrapper {
  position: relative;
  /* max-height: calc(100vh - 55px); */
  width: 300px;
  z-index: 55;
  background-color: #fff;
  /* box-shadow: 0 0 3px #ddd; */
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-view.store-list-wrapper {
  max-height: 40vh;
}

.store-list-button {
  position: fixed;
  right: 55px;
  bottom: 25px;
  padding: 15px 30px;
  background-color: #fff;
  z-index: 53;
  color: var(--primary-color);
  box-shadow: 0 0 3px #ddd;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.store-list-wrapper .cross-wrapper {
  text-align: right;
  padding-top: 10px;
  padding-right: 15px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.store-list-wrapper.active {
  top: 0;
}

.map-detail-wrapper .store-name {
  font-weight: 900;
  padding-bottom: 5px;
  font-size: var(--font-14);
}

.map-detail-wrapper {
  font-size: var(--font-12);
}

.map-detail-wrapper .store-direction {
  padding-top: 5px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: var(--font-14);
  cursor: pointer;
}

.map-info-wrapper {
  max-width: 280px;
}

.map-info-wrapper .store-direction {
  padding-top: 8px;
  font-weight: 600;
  color: var(--primary-color);
  font-size: var(--font-14);
  cursor: pointer;
}

.store-list-wrapper .list-wrapper {
  padding-top: 10px;
  /* padding-bottom: 10px; */
  margin-bottom: 0;
  overflow-y: auto;
}

.store-list-wrapper .list-wrapper > li {
  padding: 15px 15px;
  border-bottom: 1px solid #ddd;
}

.map-marker-own {
  font-size: 20px;
  color: red;
}

/*video list screen*/

.video-list-wrapper {
  margin-top: 90px;
  max-width: 100%;
  padding-bottom: 150px;
  width: 500px;
}

.video-list-wrapper .btnFooter {
  min-width: 300px;
}

.access-wrapper.less-padding {
  padding-bottom: 1rem;
}

.fixed-bottom .btn-min-lg {
  min-width: 300px;
}

.video-list .video-group .text-style {
  color: var(--black-color);
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
}

.video-list .video-group {
  height: 70px;
  margin-bottom: 20px;
  /* border: 1px solid rgba(0, 0, 0, 0.2); */
  box-shadow: 0px 2px 9px 1px #ece6e6;
  padding-left: 15px;
  border-radius: 12px;
}

.video-group .btnFooter {
  min-width: 100px;
  min-height: auto;
}

.access-wrapper {
  display: inline;
  padding-bottom: 100px;
  padding-top: 1rem;
  background-color: #fff;
  border-top: 1px solid #ddd;
}

body .fixed-bottom,
body .fixed-top {
  z-index: 10;
}

.checklist {
  color: var(--primary-color);
}

.video-player {
  padding: 2rem;
}

.video-wrapper {
  display: flex;
}

.video-wrapper.user-video .video-name {
  color: var(--primary-color);
  padding-top: 28px;
}

/*quiz */
.quiz-question-wrapper {
  position: relative;
  padding-top: 10px;
  max-width: 480px;
  padding-bottom: 16px;
  overflow: hidden; /* Prevent any content from overflowing */
}

/* First child styling */
.first-question {
  
  /* border-left: 5px solid #007bff; */
  padding-top: 20vh; /* Extra padding */
  overflow: hidden; /* Prevent any content from overflowing */
}

/* Last child styling */
.last-question {
 
  /* border-right: 5px solid #28a745; */
  padding-bottom: 20vh; /* Extra padding */
  overflow: hidden; /* Prevent any content from overflowing */
}


.quiz-wrapper {
  position: relative;
  padding-top: 25vh;
  max-width: 450px;
  padding-bottom: 65px;
}

.quiz-icon {
  display: flex;
  margin-top: 7px;
  position: absolute;
  color: var(--secondary-color);
  border-radius: 50%;
  background-color: var(--white-color);
  height: 32px;
  width: 34px;
  font-size: 29px;
  justify-content: center;
  align-items: center;
  left: -34px;
}

.quiz-icon.icon-left {
  left: -22px;
}

.quiz-wrapper .quiz-group {
  border: 1px solid #ddd;
}

.quiz-wrapper .quiz-group .quiz-question {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding-top: 10px;
  padding-bottom: 10px;
}

.quiz-wrapper .quiz-group .quiz-answer-group {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
}

.quiz-answer-group .quiz-answer {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 15px;
  display: flex;
}

.quiz-answer-group .quiz-answer:last-child {
  border-bottom: none;
}

.quiz-answer .quiz-radio {
  height: 25px;
  width: 25px;
}

.quiz-answer-group .quiz-answer .answer-text {
  flex: 1;
  font-size: 14px;
  padding-left: 2rem;
  font-weight: 600;
  cursor: pointer;
}

/* circular checkbox */
.round {
  position: relative;
}

.round .checkbox-round-label {
  background-color: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  height: 28px;
  left: 0;
  position: absolute;
  top: -4px;
  width: 28px;
}

.round .checkbox-round-label:after {
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 7px;
  opacity: 0;
  position: absolute;
  top: 8px;
  transform: rotate(-45deg);
  width: 12px;
}

.round .checkbox-round {
  visibility: hidden;
}

.round .checkbox-round:checked + .checkbox-round-label {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.round .checkbox-round:checked + .checkbox-round-label:after {
  opacity: 1;
}

.video-text {
  padding-top: 20px;
}

/* .progress {
  padding-bottom: 40px;
} */
.primary-color {
  color: var(--primary-color);
}

.user-modal-btn {
  padding-top: 20px;
}

/*progressbar*/
.progress-own {
  height: 10px;
  border-radius: 5px;
  border: 1px solid rgb(189, 113, 113);
  overflow: hidden;
  position: relative;
}

.progress-own .progress-bar-own {
  height: 100%;
  display: block;
  line-height: 30px;
  position: absolute;
  text-align: end;
  padding-right: 5px;
  background: rgb(0, 187, 207);
  background: linear-gradient(
    90deg,
    rgba(0, 187, 207, 1) 0%,
    rgba(62, 47, 145, 1) 100%
  );
}

/*settings*/
.settings-wrapper {
  position: relative;
}

.settings-menu-list > li {
  box-shadow: 0px 2px 4px 1px #f7efef;
  color: var(--black-color);
  font-weight: 800;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 10px;
  border-radius: 5px;
}

.settings-menu-list .settings-icons {
  width: 40px;
  height: 40px;
  color: var(--secondary-color);
  background: #00bbcf1c;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.own-datepicker .react-date-picker {
  z-index: 33;
}

.count-down-wrapper {
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.count-down-wrapper > div {
  padding-left: 6px;
  padding-right: 6px;
  font-size: 11px;
  box-sizing: content-box;
}

.map-search-input {
  box-sizing: border-box;
  border: 1px solid transparent;
  width: 400px;
  height: 48px;
  padding: 0px 12px;
  border-radius: 30px;
  box-shadow: rgb(0 0 0 / 30%) 0px 2px 6px;
  font-size: 14px;
  outline: none;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}

.my-location-wrapper {
  position: absolute;
  z-index: 11;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 7px;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  left: 10px;
  box-shadow: 0 0 5px #b0b0b0;
}

.timer-section-wrapper {
  color: var(--primary-color);
  font-size: var(--font-20);
  margin: 20vh auto 15px;
}

.timer-wrapper {
  width: 200px;
  height: 200px;
  border: 6px solid var(--secondary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  margin-top: 25px;
}

.dashboard-controls-wrapper {
  position: absolute;
  right: 10px;
  bottom: 20px;
  z-index: 5;
}

.next-eligible-heading {
  text-align: center;
}

.dashboard-notify-wrappper {
  padding-top: 20vw;
  padding-bottom: 20px;
}

.next-eligible-heading .text-container {
  position: relative;
  display: inline-block;
  margin-top: 1vh;
  margin-bottom: 0;
  padding-bottom: 10px;
}

.next-eligible-heading .text-container:before {
  /* content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: -2px;
  border-bottom: 2px solid #ddd; */
}

.gm-style img {
  outline: none !important;
}

.setting-own {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  box-shadow: 0 0 4px #c6c6c6;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--primary-color);
  font-size: 22px;
}

.store-list-button {
  position: relative;
  right: 0;
  box-shadow: none;
  font-size: 20px;
  padding: 0;
  bottom: 0;
}

.modal-own-wrapper .react-responsive-modal-modal {
  margin: 0;
}

.modal-own-wrapper .react-responsive-modal-container {
  padding: 1rem;
}

.checkbox-own {
  width: 30px;
}

/*Termsans conditions*/
.terms-head {
  color: var(--secondary-color);
  text-transform: uppercase;
}

.terms-text {
  color: var(--primary-color);
}

body .success-modal {
  width: 450px;
  max-width: 100%;
}

body .react-responsive-modal-closeButton:before {
  content: "\f00d";
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  /*--adjust as necessary--*/
  color: #fff;
  font-size: 18px;
}

body .white-header-strip .react-responsive-modal-closeButton:before {
  color: var(--primary-color);
}

.table-data-status {
  min-width: 85px;
}

.table-isactive {
  color: #3bae00;
  font-weight: 700;
}

.table-isinactive {
  color: var(--red-color);
  font-weight: 700;
}

.halt-message {
  min-height: calc(100vh - 112px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--primary-color);
  justify-content: center;
  width: 400px;
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
}

body .grey-btn {
  background-color: #ddd !important;
}

.min-width-btn-md {
  min-width: 300px;
}
.min-width-btn-xs {
  min-width: 150px;
}

.form-own-group .MuiFormControl-root {
  width: 100%;
}

body .min-height-lg {
  min-height: 50px;
}

.halt-txt {
  padding: 15px;
  border: 1px solid #ddd;
}

body .black-cross-btn-modal .react-responsive-modal-closeButton:before {
  color: var(--primary-color);
}

.input-box input {
  width: 100%;
  height: 50px;
  padding-left: 20px;
  color: white;
  outline: none;
  box-sizing: border-box;
}

.input-box .MuiOutlinedInput-root fieldset,
.input-box .MuiOutlinedInput-root:hover fieldset {
  border: 1px solid #08bbcf !important;
  border-radius: 40px;
}

.input-box .MuiInputLabel-root {
  top: -3px;
}

.admin-search .input-box .MuiInputLabel-root {
  top: -7px;
}

.input-box .MuiInputLabel-root.MuiFormLabel-filled,
.admin-search .input-box .MuiInputLabel-root.MuiFormLabel-filled,
.admin-search .input-box .MuiInputLabel-root.Mui-focused,
.input-box .MuiInputLabel-root.Mui-focused {
  top: 0;
}

label.input-label {
  position: relative;
  top: 20px;
  left: 20px;
  font-size: 13px;
  padding: 1px 5px;
}

input.input-box.primary,
label.input-label.primary {
  background-color: var(--primary-color);
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}

input.input-box.white,
label.input-label.white {
  background-color: var(--white-color);
  color: var(--primary-color);
}

label.input-label.admin,
input.input-box.admin {
  background-color: var(--admin-background);
  color: var(--primary-color);
}

.form-group .input-wrapper,
.form-group .own-datepicker,
.form-group.reg-date .input-wrapper {
  /* width: 300px; */
}

.width-300 {
  width: 300px;
}

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

.disabled-background {
  background-color: #c5c5c5;
}

.form-own-group .select-own-label {
  position: relative;
  top: 18px;
  left: 23px;
  font-size: 13px;
  padding: 1px 5px;
  background: var(--white-color);
  color: var(--primary-color);
}

.form-control.select-own {
  height: 50px;
  border: 1px solid var(--secondary-color);
}

.report-search-wrapper {
  display: flex;
  align-items: flex-end;
}

.report-search-wrapper .btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
  height: 55px;
  border-radius: 0 40px 40px 0;
  position: relative;
  right: 0px;
}

.search-wrapper .input-wrapper {
  width: 315px;
  padding-right: 25px;
}

.pdf-viewer-wrapper {
  padding: 0 20px;
}

.venues-menu {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #dadfeb;
  margin-top: 15px;
}

.venues-menu .menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.venues-menu .menu .img-wrapper {
  width: 40.52px;
  height: 40.52px;
  border-radius: 37.5px;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.venues-menu .menu p {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  padding-top: 8px;
  color: #969dab;
}

.venues-menu .menu.active p {
  color: var(--primary-color);
}

.dashboard-mobile-menu {
  background: #ffffff;
  border: 1px solid #e1eff8;
  border-radius: 8px 8px 0px 0px;
  width: 100%;
  height: 88px;
  position: fixed;
  bottom: 0;
  display: flex;
  color: #bcc1ca;
  justify-content: space-evenly;
}

.dashboard-mobile-menu .menu {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.dashboard-mobile-menu .menu.active {
  color: var(--primary-color);
}

.dashboard-mobile-menu .menu i {
  font-size: 20px;
  padding-bottom: 4px;
}

.dashboard-mobile-menu .menu div {
  font-size: 12px;
  letter-spacing: 1px;
}

.scanner-icon-wrapper {
  width: 55px;
  height: 55px;
  background-color: var(--secondary-color);
  border-radius: 37.5px;
  position: relative;
  bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.edu-comp-wrapper {
  /* background-color: #e5e5e559; */
  /* min-height: 100vh; */
  padding-top: 20px;
}

.msg-comp-wrapper {
  background-color: #e5e5e559;
  min-height: calc(100vh - 55px);
  padding-bottom: 120px;
  max-height: calc(100vh - 160px);
  overflow: auto;
}

.edu-comp-wrapper .menu-wrapper {
  background: #ffffff;
  box-shadow: 0px 4px 4px rgb(223 223 223 / 25%);
  display: flex;
  justify-content: space-evenly;
  height: 36px;
  align-items: center;
  font-size: 15px;
  line-height: 16px;
  border-radius: 20px;
}

.edu-comp-wrapper .menu-wrapper .menu {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  color: var(--primary-color);
  flex: 1;
}

.edu-comp-wrapper .menu-wrapper .menu.active {
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 20px;
}

.edu-comp-wrapper .menu-wrapper .menu .marker {
  width: 54.77px;
  height: 2px;
  background-color: var(--white-color);
}

.edu-comp-wrapper .menu-wrapper .menu.active .marker {
  background-color: var(--primary-color);
}

/* .search-wrapper {
  margin-top: 1rem;
} */

.search-msg-wrapper {
  padding: 1rem 2rem 0 2rem;
}

.edu-content-wrapper {
  max-height: calc(100vh - 220px);
  min-height: calc(100vh - 220px);
}

.edu-content-wrapper,
.msg-content-wrapper {
  padding: 0 2rem;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
}

.search-wrapper input,
.search-msg-wrapper input {
  height: 42px;
  /* background: #ffffff;
  border: 1px solid #fff; */
  box-shadow: 0px 4px 10px rgba(223, 223, 223, 0.5);
  border-radius: 21px;
  width: 100%;
  font-size: 14px;
  color: #bec5d3;
  /* padding: 1px 40px; */
}

.search-wrapper .input-box .MuiOutlinedInput-root fieldset {
  /* padding: 1px 40px 1px 22px; */
  /* border: 1px solid #747474; */
  border-radius: 21px 0 0 20px;
}

.search-wrapper i,
.search-msg-wrapper i {
  position: relative;
  bottom: 32px;
  left: 12px;
  color: #bec5d3;
}

.player-wrapper .player-own {
  border-radius: 8px;
  height: 188.3px;
}

.player-wrapper .player-own .video-react-video {
  border-radius: 6px;
}

.doc-wrapper {
  height: 64.42px;
  background: #ffffff;
  box-shadow: 0px 4px 10px rgb(223 223 223 / 50%);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 40px 10px 10px;
}

.msg-content {
  /* background: white; */
  background: #ffffff;
  box-shadow: 0px 4px 10px rgb(223 223 223 / 50%);
  border-radius: 5px;
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
  padding: 10px 20px;
  font-weight: 500;
  position: relative;
}

.unread.msg-content::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  background: var(--primary-color);
  height: 5px;
  width: 5px;
  border-radius: 50%;
}

.custom-select-negative-top {
  margin-top: -33px;
}

.education-search-wrapper input {
  padding: 1px 15px 1px 35px;
  border-radius: 20px;
  color: #363636;
  border: 1px solid #ddd;
  transition: all 0.2s ease;
}

.education-search-wrapper input:focus,
.education-search-wrapper input:active {
  border-color: #ccc;
}

.bg-light-grey {
  background-color: #e5e5e559;
}

.mx-md-auto {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.own-textarea-wrapper .label-own {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 13px;
  padding: 1px 5px;
  background-color: var(--white-color);
  color: var(--primary-color);
}

.own-textarea-wrapper .own-textarea {
  width: 100%;
  border-radius: 10px;
  padding-left: 20px;
  border: 1px solid #08bbcf;
  outline: none;
  padding-top: 10px;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  border-radius: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(196, 196, 196);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.badge-own {
  background: #d60000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 5px 0px;
  border-radius: 10px;
  color: #fff;
  font-size: 10px;
  position: relative;
  top: -5px;
  left: -2px;
  min-width: 18px;
  min-height: 18px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-own .form-group .input-box.primary .Mui-disabled {
  opacity: 0.9;
  -webkit-text-fill-color: var(--white-color);
  color: #fff;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.react-responsive-modal-modal {
  border-radius: 5px;
}

.sidebar-container .sidebar-submenu-list-wrapper .sidebar-link {
  padding-left: 25px;
}

.stock-count {
  height: 40px;
  width: 150px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  justify-content: space-evenly;
  align-items: center;
}

.stock-count.minus {
  border: 1px solid var(--red-color);
  color: var(--red-color);
}

.stock-count.plus {
  border: 1px solid green;
  color: green;
}

.stock-count.minus-active {
  border: 1px solid var(--red-color);
  color: var(--white-color);
  background: var(--red-color);
}

.stock-count.plus-active {
  border: 1px solid green;
  color: var(--white-color);
  background: green;
}

.own-editor-wrapper {
  border: 1px solid #ddd;
  border-radius: 5px;
}

.react-date-picker__inputGroup__leadingZero {
  font-size: 0.9rem;
}

.own-editor-wrapper .own-editor-box {
  padding: 15px;
}

.own-editor-wrapper .own-editor-box .public-DraftStyleDefault-block {
  margin: 0;
}

.own-editor-wrapper .own-editor-toolbar {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 5px 5px 0 0;
}

.input-wrapper {
  max-width: 200px;
}

.custom-search-wrapper .input-wrapper .search-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #ddd;
}

.back-btn {
  text-decoration: underline;
}

/* media queries */

@media only screen and (max-width: 767px) {
  .mobile-full-view {
    width: 100%;
    flex: none;
  }

  .video-wrapper {
    max-width: 350px;
  }

  .dashboard-tab-wrapper > li:first-child {
    border-radius: 8px 0 0 8px;
  }

  .dashboard-tab-wrapper > li:last-child {
    border-radius: 0 8px 8px 0;
  }

  .dashboard-notify-wrappper {
    padding-top: 30vh;
  }

  .video-modal-btn button {
    font-size: 12px;
    padding: 10px 20px;
    min-width: 100%;
  }

  /* body .btnFooter {
    min-width: initial;
  } */

  body .access-wrapper .btnFooter,
  body .fixed-bottom-own .btnFooter {
    min-width: 280px;
  }

  .video-wrapper .video-name {
    font-size: 15px;
    padding-top: 5rem;
  }

  .video-wrapper .video-player {
    padding: 0px;
    max-height: 180px;
  }

  .modal-own.react-responsive-modal-modal {
    width: 370px;
  }

  body .dashboard-menu {
    justify-content: center;
  }
}

@media (max-width: 40em) {
  .btn-label {
    padding: 0em 1em 3px;
    margin: 0.25em;
  }
}

@media only screen and (max-width: 1150px) {
  .table-wrapper .table-type {
    padding-right: 0px;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 1085px) {
  .admin-controls .admin-search #search {
    width: 130px;
  }

  .admin-controls .admin-search .search-label {
    font-size: 15px;
  }
}

@media only screen and (min-width: 768px) {
  .video-list-wrapper {
    width: 700px;
  }
}

@media only screen and (max-width: 767px) {
  .setting-modal-own {
    width: 100%;
    padding-right: 2rem;
  }

  .confirm-modal .btn-wrapper .btn {
    display: block;
    width: 100%;
  }

  .modal-own-wrapper .react-responsive-modal-modal {
    margin: 0;
  }

  .modal-own-wrapper .react-responsive-modal-container {
    padding: 1rem;
  }

  .modal-own.react-responsive-modal-modal {
    border-radius: 4px;
    width: 100%;
  }

  .quiz-wrapper {
    padding: 100px 15px 65px;
  }

  .auth-body-wrapper .logo-wrapper img {
    width: 150px;
  }

  .map-search-wrapper {
    left: 10px;
    right: 10px;
    width: auto;
  }

  .map-search-input {
    width: 100%;
    /* border-radius: 8px; */
    top: 10px;
  }

  .store-list-wrapper.active {
    top: 10px;
  }

  .store-list-wrapper.full.active {
    top: 0;
  }
}

@media only screen and (min-width: 641px) {
  .sidebar {
    transition: all 0.2s ease-in-out;
  }
}

@media only screen and (max-width: 640px) {
  .sidebar {
    min-width: 50px;
    transition: all 0.2s ease-in-out;
    transition: all 0.5s ease-out;
  }

  .admin-header p {
    font-size: 15px;
    margin-bottom: 0.3rem;
  }

  .sidebar .sidebar-header div {
    display: none;
  }

  .sidebar.collapsed {
    display: none;
  }

  .sidebar-arrow .hamburger {
    display: none;
    white-space: pre;
  }

  .sidebar-text {
    /* font-size: 12px; */
    display: none;
  }

  .sidebar-icon {
    /* display: none; */
    font-size: 16px;
  }

  .wrapper .main {
    margin-left: 57px;
    width: calc(100% - 57px);
    margin-top: 0;
    padding-top: 0;
  }

  .main-wrapper .sidebar-arrow {
    left: 34px;
    top: 33px;
  }

  .btn-label p {
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.transaction-details-wrapper {
  box-shadow: 0 15px 15px -8px #ccc;
  border-radius: 5px;
  padding: 0 20px 10px 20px;
}

.description-container {
  overflow-y: auto;
  padding-right: 5px;
  padding-bottom: 5px;
}
