/*
Template Name: Peepep - Your Professional B2B Automotive Partner
Template URI: https://www.peepep.com
Author: IT Transmit
Author URI: https://www.ittransmit.com
Description: 
Version: 1.0.0
*/
:root {
  --color__black: #000000;
  --color__theme__black: #231f20;
  --color__white: #FFFFFF;
  --color__primary: #009BDA;
  --color__dark__primary: #0087BE;
  --color__danger: #ff0505;
}

html {
  font-size: 58%;
  -webkit-text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 60%;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 2560px) {
  html {
    font-size: 75%;
  }
}
@media screen and (min-width: 3840px) {
  html {
    font-size: 110%;
  }
}

body {
  font-size: 1.6rem;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI";
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li, ol li {
  font-size: 1.6rem;
}

a {
  color: inherit;
  text-decoration: none;
  font-size: 1.6rem;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

/*-------------------------------------------------
    [ ## Heading ]
---------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: 7rem;
}

h2 {
  font-size: 6.4rem;
}

h3 {
  font-size: 5rem;
}

h4 {
  font-size: 3.78rem;
}

h5 {
  font-size: 2.84rem;
}

h6 {
  font-size: 2.13rem;
}

.text-theme {
  color: var(--color__primary);
}

.bg-theme {
  background-color: var(--color__primary);
}

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

.text-color-black {
  color: var(--color__black);
}

.text-theme-black {
  color: var(--color__theme__black);
}

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

.link-disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.5;
  filter: grayscale(1);
}

.animate-floatY {
  animation: floatY 4.5s ease-in-out infinite;
}

.animate-floatX {
  animation: floatX 5s ease-in-out infinite;
}

.pepcoin {
  position: relative;
  display: inline-block;
}
.pepcoin::before {
  content: "";
  background: transparent url(../images/pepcoin.svg) no-repeat center center;
  background-size: contain;
  display: block;
  width: var(--width);
  height: var(--height);
}

.pepcurrency {
  position: relative;
  display: inline-block;
  top: 0.2rem;
}
.pepcurrency::before {
  content: "";
  background: transparent url(../images/pep-currency.svg) no-repeat center left;
  background-size: contain;
  display: block;
  width: var(--width);
  height: var(--height);
}

.taka {
  position: relative;
  display: inline-block;
  top: 0.2rem;
}
.taka::before {
  content: url(../images/taka.svg);
  display: inline-block;
  width: 1.1rem;
}
.taka.white::before {
  content: url(../images/taka-white.svg);
}
.taka.blue::before {
  content: url(../images/taka-blue.svg);
}

.feedback {
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
}
.feedback.info {
  background-color: rgba(13, 202, 240, 0.5);
}
.feedback.danger {
  background-color: rgba(220, 53, 69, 0.5);
}
.feedback.success {
  background-color: rgba(25, 135, 84, 0.8);
  color: white;
}
.feedback.warning {
  background-color: rgba(255, 193, 7, 0.5);
}
.feedback.dark {
  background-color: var(--color__theme__black);
  color: white;
}
.feedback.primary {
  background-color: var(--color__primary);
  color: white;
}

.alert {
  padding-left: 6rem;
  background-color: rgba(var(--bs-alert-bg), 0.5);
}
.alert .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--bs-alert-bg);
}

/*-------------------------------------------------
    [ ## Fields ]
---------------------------------------------------*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=number],
input[type=search] {
  font-family: "Segoe UI";
  padding: 1rem 1rem;
  font-size: 1.6rem;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=search]:focus {
  outline: none;
  box-shadow: none;
  border-color: #ced4da;
}

input[type=time]::-webkit-inner-spin-button,
input[type=time]::-webkit-outer-spin-button,
input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Segoe UI";
  padding: 1rem 1rem;
  font-size: 1.6rem;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px rgba(var(--color__black, 0) inset);
  -webkit-box-shadow: 0 0 0px 1000px rgba(var(--color__black, 0) inset);
  -webkit-text-fill-color: var(--color__black) !important;
}

input:-webkit-autofill:focus {
  box-shadow: 0 0 0px 1000px rgba(var(--color__black, 0) inset);
  -webkit-box-shadow: 0 0 0px 1000px rgba(var(--color__black, 0) inset);
  -webkit-text-fill-color: var(--color__black) !important;
}

.form-control {
  border-color: #E2E8F0;
  font-size: 1.6rem;
  padding: 1rem 1rem;
  box-shadow: none;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
}

textarea.form-control {
  display: block;
  width: 100%;
  display: block;
  min-height: 10rem;
  font-family: "Segoe UI";
  padding: 1rem 1rem;
  font-size: 1.6rem;
  box-shadow: none;
}
textarea.form-control:focus {
  outline: none;
  box-shadow: none;
}

.form-floating > .form-control {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

::-webkit-input-placeholder {
  color: var(--color__black);
}

.widget_newsletter::-webkit-input-placeholder {
  color: #808080;
}

:-moz-placeholder {
  color: var(--color__black);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--color__black);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--color__black);
}

.select2-container .select2-selection {
  min-height: 4.8rem;
  display: flex;
  align-items: center;
  border-color: #E2E8F0;
}
.select2-container .select2-selection__rendered {
  flex: 1;
  padding-left: 1.5rem !important;
}
.select2-container .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%);
  width: 3rem !important;
}

.link-primary {
  color: var(--color__primary) !important;
}

@keyframes floatY {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-30px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes floatX {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0px);
  }
}
.breadcrumb {
  margin: 0;
}
@media screen and (max-width: 991px) {
  .breadcrumb {
    justify-content: center;
  }
}
.breadcrumb li a {
  color: var(--color__primary);
}
.breadcrumb li + li::before {
  content: "/";
  display: inline-block;
  margin: 0 1rem;
  color: var(--color__primary);
}

.topbutton {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--color__white);
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 2rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
.topbutton:hover {
  color: var(--color__white);
  background-color: var(--color__primary);
}
.topbutton.btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 4rem;
  right: 4rem;
}

.btn-theme {
  background-color: var(--color__primary);
  color: var(--color__white);
  border-radius: 0.8rem;
  padding: 1.3rem 2.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  outline: 0;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.btn-theme::before {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, transparent, #FFF);
  position: absolute;
  z-index: 3;
  transform: skewX(-15deg) translateX(-120%);
  -moz-transition: none;
  transition: none;
  opacity: 0.5;
}
.btn-theme:hover {
  color: var(--color__white);
  background-color: var(--color__theme__black);
}
.btn-theme:hover::before {
  transform: skewX(-15deg) translateX(120%);
  transition: 800ms ease transform;
}

.btn-rounded-white {
  background-color: var(--color__white);
  color: var(--color__primary);
  border-radius: 3rem;
  padding: 1.2rem 3.5rem;
  transition: all 0.3s;
  display: inline-block;
  outline: 0;
  text-align: center;
  overflow: hidden;
}

.btn-theme-primary {
  background-color: var(--color__primary);
  color: var(--color__white);
  border-radius: 0.4rem;
  padding: 1.2rem 2.2rem;
  display: inline-block;
  outline: 0;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-theme-primary::before {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, transparent, #FFF);
  position: absolute;
  z-index: 3;
  transform: skewX(-15deg) translateX(-120%);
  -moz-transition: none;
  transition: none;
  opacity: 0.5;
}
.btn-theme-primary:hover {
  color: var(--color__white);
}
.btn-theme-primary:hover::before {
  transform: skewX(-15deg) translateX(120%);
  transition: 800ms ease transform;
}

.btn-theme-primary-alt {
  background-color: var(--color__white);
  color: var(--color__primary);
  border-radius: 0.4rem;
  padding: 1rem 2rem;
  display: inline-block;
  outline: 0;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 0.1rem solid var(--color__primary);
}
.btn-theme-primary-alt::before {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, transparent, #FFF);
  position: absolute;
  z-index: 3;
  transform: skewX(-15deg) translateX(-120%);
  -moz-transition: none;
  transition: none;
  opacity: 0.5;
}
.btn-theme-primary-alt:hover {
  color: var(--color__white);
  background-color: var(--color__primary);
}
.btn-theme-primary-alt:hover::before {
  transform: skewX(-15deg) translateX(120%);
  transition: 800ms ease transform;
}

.btn-rounded-primary {
  background-color: var(--color__primary);
  color: var(--color__white);
  border-radius: 3rem;
  padding: 1.2rem 3.5rem;
  outline: 0;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-rounded-primary::before {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, transparent, #FFF);
  position: absolute;
  z-index: 3;
  transform: skewX(-15deg) translateX(-120%);
  -moz-transition: none;
  transition: none;
  opacity: 0.5;
}
.btn-rounded-primary:hover {
  color: var(--color__white);
}
.btn-rounded-primary:hover::before {
  transform: skewX(-15deg) translateX(120%);
  transition: 800ms ease transform;
}

.btn-rounded-primary-outline {
  background-color: var(--color__white);
  color: var(--color__primary);
  border: 0.1rem solid var(--color__primary);
  border-radius: 3rem;
  padding: 1.2rem 3.5rem;
  outline: 0;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-rounded-primary-outline::before {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, transparent, #FFF);
  position: absolute;
  z-index: 3;
  transform: skewX(-15deg) translateX(-120%);
  -moz-transition: none;
  transition: none;
  opacity: 0.5;
}
.btn-rounded-primary-outline svg, .btn-rounded-primary-outline svg path {
  transition: all 0.3s;
}
.btn-rounded-primary-outline:hover {
  background-color: var(--color__primary);
  color: var(--color__white);
}
.btn-rounded-primary-outline:hover::before {
  transform: skewX(-15deg) translateX(120%);
  transition: 800ms ease transform;
}
.btn-rounded-primary-outline:hover svg path {
  fill: #fff;
  stroke: #fff;
}

.btn-circle-white {
  background-color: var(--color__white);
  color: var(--color__primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  transition: all 0.3s;
}

.btn-circle-primary {
  background-color: var(--color__primary);
  color: var(--color__white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-circle-primary::before {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, transparent, #FFF);
  position: absolute;
  z-index: 3;
  transform: skewX(-15deg) translateX(-120%);
  -moz-transition: none;
  transition: none;
  opacity: 0.5;
}
.btn-circle-primary:hover {
  color: var(--color__white);
}
.btn-circle-primary:hover::before {
  transform: skewX(-15deg) translateX(120%);
  transition: 800ms ease transform;
}

.button-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 0.1rem solid #FF7500;
  background-color: var(--color__white);
  color: #FF7500;
  border-radius: 0.4rem;
  font-weight: 500;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.button-info .badge-icon {
  background-color: #FF7500;
  color: var(--color__white);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 0.5rem;
  font-size: 1.2rem;
  transition: all 0.3s;
}
.button-info:hover {
  color: var(--color__white);
  background-color: #FF7500;
}
.button-info:hover .badge-icon {
  background-color: var(--color__white);
  color: #FF7500;
}

.btn__disabled {
  pointer-events: none;
  user-select: none;
  filter: grayscale(1);
}

@media screen and (min-width: 576px) {
  .modal .modal-dialog.modal-sm {
    max-width: 560px;
  }
}
@media screen and (min-width: 768px) {
  .modal .modal-dialog.modal-sm {
    max-width: 600px;
  }
}
.modal .modal-header {
  padding: 1.5rem 2.5rem;
}
@media screen and (min-width: 576px) {
  .modal .modal-header {
    padding: 1.5rem 3.5rem;
  }
}
@media screen and (min-width: 768px) {
  .modal .modal-header {
    padding: 1.5rem 4.5rem;
  }
}
@media screen and (min-width: 992px) {
  .modal .modal-header {
    padding: 1.5rem 6rem;
  }
}
.modal .modal-header .title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color__primary);
}
@media screen and (min-width: 768px) {
  .modal .modal-header .title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .modal .modal-header .title {
    font-size: 2.6rem;
  }
}
.modal .modal-header .dismis_modal {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  background-color: var(--color__danger);
  opacity: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.modal .modal-header .end_action li {
  display: flex;
}
.modal button {
  padding: 1rem 2.5rem;
  border-radius: 0.6rem;
  color: var(--color__white);
  border: 0;
  font-size: 1.6rem;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.modal button::before {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, transparent, #FFF);
  position: absolute;
  z-index: 3;
  transform: skewX(-15deg) translateX(-120%);
  -moz-transition: none;
  transition: none;
  opacity: 0.5;
}
.modal button:hover::before {
  transform: skewX(-15deg) translateX(120%);
  transition: 800ms ease transform;
}
.modal button.btn-secondary {
  background-color: #C6C6C6;
}
.modal button.btn-primary {
  background-color: #009BDA;
}
.modal button.btn-primary:active {
  background-color: #009BDA;
}
.modal button.btn-primary-alt {
  background-color: var(--color__white);
  box-shadow: inset 0px 0px 0px 1px var(--color__primary);
  color: var(--color__primary);
}
.modal button.btn-primary-alt:hover {
  background-color: var(--color__primary);
  color: var(--color__white);
}
.modal button + button {
  margin-left: 2rem;
}
.modal .modal-footer {
  padding: 1.5rem 2rem 2rem;
  border: 0;
}
@media screen and (min-width: 576px) {
  .modal .modal-footer {
    padding: 1.5rem 3.5rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .modal .modal-footer {
    padding: 1.5rem 4.5rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .modal .modal-footer {
    padding: 1.5rem 6rem 3.5rem;
  }
}
.modal .modal-dialog-scrollable .modal-content {
  overflow: visible;
}
.modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 5px;
}
.modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}
.modal .modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: var(--color__primary);
}
.modal .modal-body {
  padding: 1rem 2.5rem;
}
@media screen and (min-width: 576px) {
  .modal .modal-body {
    padding: 2rem 3.5rem;
  }
}
@media screen and (min-width: 768px) {
  .modal .modal-body {
    padding: 2rem 4.5rem;
  }
}
@media screen and (min-width: 992px) {
  .modal .modal-body {
    padding: 2rem 6rem;
  }
}
.modal .modal-body .chat-history h6 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
.modal .modal-body .chat-history .chat-list {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}
.modal .modal-body .chat-history .chat-list .avatar {
  color: var(--color__primary);
  text-align: center;
}
.modal .modal-body .chat-history .chat-list .avatar .icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-body .chat-history .chat-list .avatar .name {
  font-size: 1.4rem;
  margin-top: 0.2rem;
}
.modal .modal-body .chat-history .chat-list.right {
  flex-direction: row-reverse;
}
.modal .modal-body .chat-history .chat-list.right .avatar .icon {
  border: 0.1rem solid var(--color__primary);
  padding: 0.7rem;
}
.modal .modal-body .chat-history .chat-list + .chat-list {
  margin-top: 2rem;
}
.modal .modal-body .chat-history .chat-list .avatar {
  flex-shrink: 0;
}
.modal .modal-body .chat-history .chat-list .chat-content {
  background-color: #f6f6f7;
  border-radius: 0.8rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  line-height: 1.75;
  display: inline-block;
  max-width: 45rem;
  border: 0.1rem solid #eee;
}
.modal .modal-body .chat-history .chat-list .date {
  font-size: 1.3rem;
  opacity: 0.6;
}
.modal .modal-body .chat-history .reply_form {
  max-width: 56rem;
  margin-left: auto;
}
.modal .modal-body .chat-history textarea {
  min-height: 100px;
  resize: none;
}
.modal .modal-body .select2-container {
  width: 100% !important;
}
.modal.view_inventory h6, .modal.view_auction h6 {
  font-size: 2rem;
  font-weight: 600;
}
.modal.view_inventory .infolist ul, .modal.view_auction .infolist ul {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem 1rem;
}
@media screen and (min-width: 576px) {
  .modal.view_inventory .infolist ul, .modal.view_auction .infolist ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.modal.view_inventory .infolist ul li, .modal.view_auction .infolist ul li {
  border-bottom: 0.1rem solid #E2E8F0;
  padding-bottom: 1.5rem;
}
.modal.view_inventory .infolist ul li b, .modal.view_auction .infolist ul li b {
  font-weight: 500;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  width: 15rem;
  display: inline-block;
}
.modal.view_inventory .gallery .interior, .modal.view_inventory .gallery .exterior, .modal.view_inventory .gallery .mechanical, .modal.view_auction .gallery .interior, .modal.view_auction .gallery .exterior, .modal.view_auction .gallery .mechanical {
  margin-bottom: 2rem;
}
.modal.view_inventory .gallery .interior p, .modal.view_inventory .gallery .exterior p, .modal.view_inventory .gallery .mechanical p, .modal.view_auction .gallery .interior p, .modal.view_auction .gallery .exterior p, .modal.view_auction .gallery .mechanical p {
  margin-bottom: 0.5rem;
}
.modal.view_inventory .gallery .interior img, .modal.view_inventory .gallery .exterior img, .modal.view_inventory .gallery .mechanical img, .modal.view_auction .gallery .interior img, .modal.view_auction .gallery .exterior img, .modal.view_auction .gallery .mechanical img {
  border-radius: 0.6rem;
}
.modal.view_inventory .gallery ul, .modal.view_auction .gallery ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media screen and (min-width: 576px) {
  .modal.view_inventory .gallery ul, .modal.view_auction .gallery ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .modal.view_inventory .gallery ul, .modal.view_auction .gallery ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.modal.view_inventory .documents .btn-theme, .modal.view_auction .documents .btn-theme {
  padding: 0.8rem 2rem;
  border-radius: 0.4rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 576px) {
  .modal.view_inventory .documents ul, .modal.view_auction .documents ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 3rem;
  }
}
.modal.view_inventory .delearInformation table, .modal.view_auction .delearInformation table {
  width: 100%;
}
.modal.view_inventory .delearInformation table td, .modal.view_inventory .delearInformation table th, .modal.view_auction .delearInformation table td, .modal.view_auction .delearInformation table th {
  padding: 1.5rem 0;
}
.modal.view_inventory .auction-info ul, .modal.view_auction .auction-info ul {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 576px) {
  .modal.view_inventory .auction-info ul, .modal.view_auction .auction-info ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.modal.view_schedule table th, .modal.view_schedule table td {
  padding: 1.5rem 0;
  border-bottom: 0.1rem solid #E2E8F0;
}
@media screen and (min-width: 576px) {
  .modal.update-password .modal-dialog {
    min-width: 60rem;
  }
}
.modal.update-password .btn-close {
  width: 4rem;
  height: 4rem;
  border: 0.1rem solid var(--color__theme__black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color__theme__black);
  opacity: 1;
  padding: 0;
  position: absolute;
  right: -2rem;
  top: -2rem;
  background-color: var(--color__white);
  font-size: 1.2rem;
  outline: 0;
  box-shadow: none;
  z-index: 9;
}
.modal.update-password .modal-content {
  border-radius: 1rem;
}
.modal.update-password .modal-body {
  padding: 6rem 3rem;
}
@media screen and (min-width: 576px) {
  .modal.update-password .modal-body {
    padding: 8rem 5rem;
  }
}
.modal.update-password .modal-title {
  margin: 1rem 0;
  color: var(--color__theme__black);
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  .modal.update-password .modal-title {
    font-size: 3rem;
  }
}
.modal.check_upload_request {
  --bs-modal-margin: 1rem;
}
@media screen and (min-width: 576px) {
  .modal.check_upload_request {
    --bs-modal-width: 570px;
  }
}
.modal.check_upload_request .form-check {
  padding-left: 3.5rem;
}
.modal.check_upload_request .form-check-input {
  box-shadow: none;
  outline: none;
  width: 2rem;
  height: 2rem;
  border-color: var(--color__primary);
  margin-left: -3.5rem;
}
.modal.check_upload_request .form-check-input:checked {
  background-color: var(--color__primary);
  border-color: var(--color__primary);
}
.modal.check_upload_request .form-check-input + label {
  user-select: none;
  font-size: 1.8rem;
  cursor: pointer;
}
.modal.check_upload_request .basicInfo ul, .modal.check_upload_request .keyInfo ul {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.8rem 1rem;
}
@media screen and (min-width: 576px) {
  .modal.check_upload_request .basicInfo ul, .modal.check_upload_request .keyInfo ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 992px) {
  .modal.check_upload_request .basicInfo ul, .modal.check_upload_request .keyInfo ul {
    margin-left: 3.5rem;
  }
}
.modal.check_upload_request .basicInfo ul li b, .modal.check_upload_request .keyInfo ul li b {
  font-weight: 500;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  width: 15rem;
  display: inline-block;
}
.modal.check_upload_request .basicInfo ul li span, .modal.check_upload_request .keyInfo ul li span {
  font-weight: 300;
}
.modal.check_upload_request .gallery .interior, .modal.check_upload_request .gallery .exterior, .modal.check_upload_request .gallery .mechanical {
  margin-bottom: 2rem;
}
.modal.check_upload_request .gallery .interior p, .modal.check_upload_request .gallery .exterior p, .modal.check_upload_request .gallery .mechanical p {
  margin-bottom: 0.5rem;
}
.modal.check_upload_request .gallery .interior img, .modal.check_upload_request .gallery .exterior img, .modal.check_upload_request .gallery .mechanical img {
  border-radius: 0.6rem;
}
.modal.check_upload_request .gallery ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media screen and (min-width: 576px) {
  .modal.check_upload_request .gallery ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .modal.check_upload_request .gallery ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.modal.check_upload_request .documents .btn-theme {
  padding: 0.8rem 2rem;
  border-radius: 0.4rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 992px) {
  .modal.check_upload_request .documents ul {
    margin-left: 3.5rem;
  }
}
.modal.check_upload_request .documents ul li + li {
  margin-top: 2rem;
}
.modal.check_upload_request .modal-body > *:not(:last-child) {
  margin-bottom: 4rem;
}
.modal.showRejectModal textarea {
  resize: none;
  background-color: #ECF2FF;
}
.modal.showRejectModal .form-check-input {
  box-shadow: none;
  outline: none;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  border-color: var(--color__primary);
}
.modal.showRejectModal .form-check-input:checked {
  background-color: var(--color__primary);
  border-color: var(--color__primary);
}
.modal.showRejectModal .form-check-input + label {
  user-select: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal.check_delete_request {
  --bs-modal-margin: 1rem;
}
@media screen and (min-width: 576px) {
  .modal.check_delete_request {
    --bs-modal-width: 570px;
  }
}
@media screen and (min-width: 992px) {
  .modal.check_delete_request .modal-dialog {
    --bs-modal-width: 750px;
  }
}
.modal.check_delete_request h6 {
  font-size: 2rem;
  font-weight: 600;
}
.modal.check_delete_request .basicInfo ul {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem 1rem;
}
@media screen and (min-width: 576px) {
  .modal.check_delete_request .basicInfo ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.modal.check_delete_request .basicInfo ul li b {
  font-weight: 500;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  width: 15rem;
  display: inline-block;
}
.modal.check_delete_request .basicInfo ul li span {
  font-weight: 300;
}
.modal.addSchedule select {
  background: #fff url(../images/down-arrow.png) no-repeat;
  background-position: 95% center;
}
.modal.add_department_modal .select2-container, .modal.edit_department_modal .select2-container {
  width: 100% !important;
}
.modal.view_requested_auction .modal-header .btn-theme-primary-alt {
  font-size: 1.4rem;
  padding: 0.8rem 1.5rem;
}
.modal.view_requested_auction h6 {
  font-size: 2rem;
  font-weight: 600;
}
.modal.view_requested_auction .basicInfo ul {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem 1rem;
}
@media screen and (min-width: 576px) {
  .modal.view_requested_auction .basicInfo ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.modal.view_requested_auction .basicInfo ul li b {
  font-weight: 500;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  width: 15rem;
  display: inline-block;
}
.modal.view_requested_auction .delear_auction_info {
  background-color: #EEFAFF;
  padding: 2rem;
  border-radius: 1rem;
  border: 0.1rem solid #E2E8F0;
  margin-bottom: 3rem;
}
.modal.view_requested_auction .delear_auction_info h6 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.modal.view_requested_auction .delear_auction_info table {
  width: 100%;
}
.modal.view_requested_auction .delear_auction_info table td {
  padding: 0.8rem 1rem;
  font-size: 1.5rem;
}
.modal.view_requested_auction .delear_auction_info table td:first-child {
  padding-left: 0;
}
.modal.view_requested_auction .delear_auction_info .auction_info {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.03);
  height: 100%;
}
.modal.view_requested_auction .delear_auction_info .auction_info li {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 1.4rem;
  gap: 1rem;
}
.modal.view_requested_auction .delear_auction_info .auction_info li input {
  border: 0;
}
.modal.view_requested_auction .delear_auction_info .auction_info li + li {
  margin-top: 0.5rem;
}
.modal.view_requested_auction .delear_auction_info .auction_info button {
  background-color: transparent;
  padding: 0;
  color: #000;
  font-size: 1.25rem;
}
.modal.view_requested_auction .delear_auction_info .auction_info input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: inherit;
  height: inherit;
  font-weight: 600;
  padding: 0;
  box-shadow: none;
  outline: none;
  position: relative;
  background-color: transparent;
  z-index: 1;
}
.modal.view_requested_auction .delear_auction_info .auction_info input::-webkit-calendar-picker-indicator {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  opacity: 0;
}
.modal.view_requested_auction .delear_auction_info .auction_info .input-group {
  position: relative;
  height: 4.5rem;
  flex-wrap: nowrap;
  gap: 1rem;
}
.modal.view_requested_auction .delear_auction_info .auction_info .input-group.editMode {
  border: 0.1rem solid #C6C6C6;
  border-radius: 0.5rem;
}
.modal.view_requested_auction .delear_auction_info .auction_info .input-group .input-group-text {
  background-color: transparent;
  padding: 0;
  border: 0;
  left: 0;
  font-size: 1.6rem;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.issue_refund .table-responsive {
  background-color: #F6F6F7;
  padding: 1rem 2rem 2rem;
  border-radius: 1rem;
}
.modal.issue_refund table {
  margin: 0;
}
.modal.issue_refund table td {
  height: 5rem;
  font-size: 1.5rem;
}
.modal.issue_refund table td:first-child {
  font-weight: 600;
}
.modal.add_user_modal fieldset, .modal.edit_user_modal fieldset {
  border: 0.1rem solid #E2E8F0;
  border-radius: 0.8rem;
  padding: 2rem 2.5rem 2.5rem;
}
.modal.add_user_modal fieldset h6, .modal.edit_user_modal fieldset h6 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.modal.add_user_modal fieldset + fieldset, .modal.edit_user_modal fieldset + fieldset {
  margin-top: 3rem;
}
.modal.add_user_modal .input-group-text, .modal.edit_user_modal .input-group-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  padding: 0 1.5rem;
  background-color: transparent;
  border-color: #E2E8F0;
}
.modal.add_user_modal .user_type, .modal.edit_user_modal .user_type {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1200px) {
  .modal.add_user_modal .user_type, .modal.edit_user_modal .user_type {
    margin-bottom: 3rem;
  }
}
.modal.add_user_modal .user_type label, .modal.edit_user_modal .user_type label {
  position: relative;
  padding-left: 3rem;
  cursor: pointer;
}
.modal.add_user_modal .user_type label::before, .modal.edit_user_modal .user_type label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #E2E8F0;
  border-radius: 0.4rem;
  transition: all 0.3s;
}
.modal.add_user_modal .user_type input, .modal.edit_user_modal .user_type input {
  display: none;
}
.modal.add_user_modal .user_type input:checked + label::before, .modal.edit_user_modal .user_type input:checked + label::before {
  background: var(--color__primary) url(../images/check-white.svg) no-repeat;
  background-position: center;
}
.modal.add_user_modal .upload-documents .doc_item, .modal.edit_user_modal .upload-documents .doc_item {
  background-color: #F6F6F7;
  border-radius: 0.6rem;
  padding: 1.5rem 2rem;
  margin: 1rem 0 2.5rem;
}
@media screen and (min-width: 576px) {
  .modal.add_user_modal .upload-documents .doc_item, .modal.edit_user_modal .upload-documents .doc_item {
    display: flex;
    align-items: stretch;
    gap: 0 1rem;
    padding: 2.5rem 4rem;
  }
}
@media screen and (min-width: 1200px) {
  .modal.add_user_modal .upload-documents .doc_item, .modal.edit_user_modal .upload-documents .doc_item {
    padding: 2.5rem 2rem;
  }
}
.modal.add_user_modal .upload-documents .doc_item .file-input, .modal.edit_user_modal .upload-documents .doc_item .file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.modal.add_user_modal .upload-documents .doc_item .file-drop-area, .modal.edit_user_modal .upload-documents .doc_item .file-drop-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .modal.add_user_modal .upload-documents .doc_item .file-drop-area, .modal.edit_user_modal .upload-documents .doc_item .file-drop-area {
    flex-direction: row;
  }
}
.modal.add_user_modal .upload-documents .doc_item .msg, .modal.edit_user_modal .upload-documents .doc_item .msg {
  border: 0.1rem dashed #BBBBBB;
  border-radius: 0.8rem;
  padding: 1.5rem 3rem 1.3rem;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.3rem;
}
.modal.add_user_modal .upload-documents .doc_item .msg i, .modal.edit_user_modal .upload-documents .doc_item .msg i {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--color__primary);
  color: var(--color__primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.add_user_modal .upload-documents .doc_item .fake-btn, .modal.edit_user_modal .upload-documents .doc_item .fake-btn {
  background-color: var(--color__primary);
  border-radius: 0.5rem;
  padding: 0.8rem 2rem;
  color: var(--color__white);
  cursor: pointer;
  white-space: nowrap;
}
.modal.add_user_modal .upload-documents .doc_item .file_name, .modal.edit_user_modal .upload-documents .doc_item .file_name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-shrink: 0;
}
.modal.add_user_modal .upload-documents .doc_item .file_name i, .modal.edit_user_modal .upload-documents .doc_item .file_name i {
  font-size: 2.2rem;
  color: var(--color__primary);
}
.modal.add_user_modal .upload-documents .doc_item .divider-line, .modal.edit_user_modal .upload-documents .doc_item .divider-line {
  border-left: 0.1rem solid #E1E1E1;
  margin: 2rem 3.5rem;
}
@media screen and (min-width: 576px) {
  .modal.add_user_modal .upload-documents .doc_item .divider-line, .modal.edit_user_modal .upload-documents .doc_item .divider-line {
    margin: 0 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .modal.add_user_modal .upload-documents .doc_item .divider-line, .modal.edit_user_modal .upload-documents .doc_item .divider-line {
    margin: 0 1.5rem;
  }
}
.modal.user_logs .logs-history, .modal.vehicle_logs .logs-history {
  counter-reset: section;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
.modal.user_logs .logs-history::after, .modal.vehicle_logs .logs-history::after {
  content: "";
  position: absolute;
  left: 2rem;
  top: 2rem;
  bottom: 0;
  width: 0.1rem;
  background-color: #DBDDDE;
  z-index: -1;
}
.modal.user_logs .logs-history > li, .modal.vehicle_logs .logs-history > li {
  padding-left: 5rem;
  position: relative;
}
.modal.user_logs .logs-history > li + li, .modal.vehicle_logs .logs-history > li + li {
  margin-top: 4rem;
}
.modal.user_logs .logs-history > li::before, .modal.vehicle_logs .logs-history > li::before {
  counter-increment: section;
  content: counters(section, ".");
  position: absolute;
  top: 1rem;
  left: 0;
  background-color: var(--color__primary);
  color: var(--color__white);
  width: 4rem;
  height: 4rem;
  border: 0.4rem solid var(--color__white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.4rem;
}
.modal.user_logs .logs-history .logs-item-wrapper, .modal.vehicle_logs .logs-history .logs-item-wrapper {
  background-color: #F5F5F5;
  padding: 1.5rem 2rem;
  border-radius: 0.8rem;
}
.modal.user_logs .logs-history .logs-item-wrapper .date, .modal.vehicle_logs .logs-history .logs-item-wrapper .date {
  border-bottom: 0.1rem solid #DBDDDE;
  padding-bottom: 0.5rem;
}
.modal.user_logs .logs-history .logs-item-wrapper ul li, .modal.vehicle_logs .logs-history .logs-item-wrapper ul li {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}
.modal.user_logs .logs-history .logs-item-wrapper ul li::before, .modal.vehicle_logs .logs-history .logs-item-wrapper ul li::before {
  content: "";
  width: 1.5rem;
  height: 0.1rem;
  background-color: var(--color__primary);
  display: inline-block;
  position: relative;
  top: 1.3rem;
}
.modal.user_logs .logs-history .logs-item-wrapper ul li .time, .modal.vehicle_logs .logs-history .logs-item-wrapper ul li .time {
  margin-left: auto;
  font-size: 1.4rem;
}
.modal.validation_request_modal fieldset .business_info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.modal.validation_request_modal fieldset .form-check-input {
  box-shadow: none;
  outline: none;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  border-color: var(--color__primary);
}
.modal.validation_request_modal fieldset .form-check-input:checked {
  background-color: var(--color__primary);
  border-color: var(--color__primary);
}
.modal.validation_request_modal fieldset .form-check-input + label {
  user-select: none;
  font-size: 1.8rem;
  cursor: pointer;
}
.modal.validation_request_modal fieldset .documents .btn-theme {
  padding: 0.8rem 2rem;
  border-radius: 0.4rem;
  font-size: 1.5rem;
}
.modal.validation_request_modal fieldset .documents ul li + li {
  margin-top: 2rem;
}
.modal.add_brand .dropzone_wrapper, .modal.edit_brand .dropzone_wrapper, .modal.add_bodyType .dropzone_wrapper, .modal.edit_bodyType .dropzone_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal.add_brand .dropzone_wrapper .line, .modal.edit_brand .dropzone_wrapper .line, .modal.add_bodyType .dropzone_wrapper .line, .modal.edit_bodyType .dropzone_wrapper .line {
  height: 0.1rem;
  flex: 1;
  border-top: 0.1rem dashed #BBBBBB;
}
.modal.add_brand .drop-input, .modal.edit_brand .drop-input, .modal.add_bodyType .drop-input, .modal.edit_bodyType .drop-input {
  position: relative;
}
.modal.add_brand .drop-input .msg, .modal.edit_brand .drop-input .msg, .modal.add_bodyType .drop-input .msg, .modal.edit_bodyType .drop-input .msg {
  background-color: #F8F8F8;
  border: 0.1rem dashed #BBBBBB;
  border-radius: 0.8rem;
  padding: 1.5rem 3rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.3rem;
  width: 15rem;
  height: 12rem;
}
.modal.add_brand .drop-input .msg i, .modal.edit_brand .drop-input .msg i, .modal.add_bodyType .drop-input .msg i, .modal.edit_bodyType .drop-input .msg i {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--color__primary);
  color: var(--color__primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.add_brand .drop-input input, .modal.edit_brand .drop-input input, .modal.add_bodyType .drop-input input, .modal.edit_bodyType .drop-input input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.modal.add_brand .preview_box, .modal.edit_brand .preview_box, .modal.add_bodyType .preview_box, .modal.edit_bodyType .preview_box {
  width: 15rem;
  height: 12rem;
  border: 0.1rem dashed #BBBBBB;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color__white);
}
.modal.add_brand .preview_box img, .modal.edit_brand .preview_box img {
  width: 7rem;
}
.modal.add_bodyType .preview_box img, .modal.edit_bodyType .preview_box img {
  width: 3rem;
}
.modal.add_package_modal .col-6, .modal.edit_package_modal .col-6 {
  position: relative;
}
.modal.add_package_modal .col-6 + .col-6::before, .modal.edit_package_modal .col-6 + .col-6::before {
  content: "\f0ec";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: -1.5rem;
  height: 4.8rem;
  width: calc(var(--bs-gutter-x) * 0.5 * 2);
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.view_role .permissions ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}
@media screen and (max-width: 575px) {
  .modal.view_role .permissions ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.modal.view_role .permissions ul li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.modal.view_role .permissions ul li i {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0.8rem 0 rgba(0, 155, 218, 0.3);
}

.modal-backdrop + .select2-container {
  z-index: 10050;
}

.paging {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .paging {
    margin-top: 2rem;
  }
}
.paging .pagination {
  gap: 0 1rem;
}
.paging .pagination .page-link {
  background: var(--color__white);
  border: 0.1rem solid #CBCBCB;
  margin: 0;
  border-radius: 0.5rem;
  transition: all 0.3s;
  font-size: 1.6rem;
  display: inline-block;
  min-width: 4rem;
  padding: 1rem 2rem;
  text-align: center;
  color: var(--color__theme__black);
}
@media screen and (max-width: 767px) {
  .paging .pagination .page-link {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
  }
}
.paging .pagination .page-link:hover {
  color: var(--color__white);
  background-color: var(--color__primary);
  border-color: var(--color__primary);
}
.paging .pagination .active .page-link {
  color: var(--color__white);
  background-color: var(--color__primary);
  border-color: var(--color__primary);
}

.dataTables_wrapper .dataTables_info {
  padding-top: 1rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: var(--color__white);
  border: 0.1rem solid #CBCBCB !important;
  margin: 0 0.6rem !important;
  border-radius: 0.5rem;
  transition: all 0.3s;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover, .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: var(--color__primary);
  border: 0.1rem solid var(--color__primary) !important;
  color: var(--color__white) !important;
  box-shadow: none !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 0.5;
  border-color: #CBCBCB !important;
  cursor: no-drop !important;
}

.tooltip {
  --bs-tooltip-arrow-width: 1.3rem;
  --bs-tooltip-arrow-height: .8rem;
}
.tooltip .tooltip-arrow::before {
  --bs-tooltip-bg: var(--color__theme__black);
}
.tooltip .tooltip-inner {
  font-size: 1.4rem;
  padding: 1.3rem 1.5rem;
  background-color: var(--color__theme__black);
  text-align: start;
}

@keyframes spin {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(36deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(72deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(108deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(144deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(180deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(216deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(252deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(288deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(324deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(360deg);
  }
}
@keyframes speed {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(-1deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes strikes {
  from {
    left: 25px;
  }
  to {
    left: -80px;
    opacity: 0;
  }
}
.preloader {
  position: fixed;
  inset: 0;
  background-color: var(--color__white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0 1rem;
}

.car {
  position: relative;
  width: 100px;
  height: 55px;
}
.car .strike {
  position: absolute;
  width: 11px;
  height: 1px;
  background: var(--color__primary);
  animation: strikes 0.2s linear infinite;
}
.car .strike2 {
  top: 11px;
  animation-delay: 0.05s;
}
.car .strike3 {
  top: 22px;
  animation-delay: 0.1s;
}
.car .strike4 {
  top: 33px;
  animation-delay: 0.15s;
}
.car .strike5 {
  top: 44px;
  animation-delay: 0.2s;
}
.car-detail {
  position: absolute;
  display: block;
  animation: speed 0.3s linear infinite;
}
.car-detail.wheel {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  top: 28px;
  left: 13px;
  border: 3px solid var(--color__white);
  background: linear-gradient(45deg, transparent 45%, #000 46%, #000 54%, transparent 55%), linear-gradient(-45deg, transparent 45%, #000 46%, #000 54%, transparent 55%), linear-gradient(90deg, transparent 45%, #000 46%, #000 54%, transparent 55%), linear-gradient(0deg, transparent 45%, #000 46%, #000 54%, transparent 55%), radial-gradient(#000 29%, transparent 30%, transparent 50%, #000 51%), var(--color__white);
  animation-name: spin;
}
.car-detail.wheel2 {
  left: 63px;
}

.swal2-container .swal2-html-container {
  margin: 2rem 0 0;
}
.swal2-container .swal2-popup {
  max-width: 40rem;
  padding: 3rem;
  font-size: 1.6rem;
}
.swal2-container .swal2-icon {
  margin: 0 auto;
  font-size: 1rem;
}
.swal2-container .swal2-icon.swal2-success {
  border-color: var(--color__primary);
  color: var(--color__primary);
}
.swal2-container .swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: var(--color__primary);
}
.swal2-container .swal2-icon.swal2-success .swal2-success-ring {
  border-color: var(--color__primary);
}
.swal2-container .swal2-actions button {
  font-size: 1.6rem;
  outline: none;
  box-shadow: none;
}
.swal2-container .swal2-actions button:focus {
  box-shadow: none;
}
.swal2-container .swal2-actions button.swal2-confirm {
  background-color: var(--color__primary);
}
.swal2-container .swal2-timer-progress-bar {
  background: var(--color__primary);
}

.active_switch input[type=checkbox] {
  display: none;
}
.active_switch label {
  cursor: pointer;
  width: 5rem;
  height: 2.4rem;
  background: grey;
  display: inline-block;
  border-radius: 2rem;
  position: relative;
}
.active_switch label:after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 2rem;
  height: 2rem;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.active_switch input:checked + label {
  background: var(--color__primary);
}
.active_switch input:checked + label:after {
  left: calc(100% - 0.2rem);
  transform: translateX(-100%);
}

/*--------------------------------------------------------------
    [ ## Header ]
--------------------------------------------------------------*/
/* Header Started
=================================================== */
/* Header End
=================================================== */
/*--------------------------------------------------------------
    [ ## Footer ]
--------------------------------------------------------------*/
/* Footer Started
=================================================== */
/* Footer End
=================================================== */
/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
.user_authentication {
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 767px) and (min-height: 480px) {
  .user_authentication {
    height: calc(100vh - 6.5rem);
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .user_authentication {
    padding: 8rem 0;
  }
}
@media screen and (min-width: 1400px) {
  .user_authentication {
    padding: 10rem 0;
  }
}
.user_authentication .row {
  --bs-gutter-x: 3rem;
}
.user_authentication .cover-image {
  background-color: #EEFAFF;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  max-width: 55rem;
  margin: 0 auto;
  height: 100%;
  min-height: 20rem;
}
@media screen and (min-width: 1200px) {
  .user_authentication .cover-image {
    min-height: 40rem;
  }
}
@media screen and (min-width: 1400px) {
  .user_authentication .cover-image {
    min-height: 45rem;
  }
}
@media screen and (max-width: 1199px) {
  .user_authentication .cover-image img {
    width: 10rem;
  }
}
.user_authentication .cover-image p {
  font-size: 2rem;
  margin-top: 0.5rem;
}
.user_authentication .form-title {
  font-size: 2.8rem;
  font-family: "Segoe UI";
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--color__theme__black);
}
@media screen and (max-width: 767px) {
  .user_authentication .form-title {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .user_authentication .form-title {
    font-size: 4rem;
  }
}
.user_authentication .btn-send-otp {
  background-color: #AFE8FF;
  border: 0;
  width: 100%;
  border-radius: 0.5rem;
  height: 100%;
  font-weight: 600;
}
.user_authentication .auth_form {
  margin: 3rem auto 0;
  max-width: 50rem;
}
@media screen and (min-width: 768px) {
  .user_authentication .auth_form {
    margin: 3rem auto;
  }
}
.user_authentication .auth_form .form-group + .form-group {
  margin-top: 2rem;
}
.user_authentication .auth_form .form-group label {
  margin-bottom: 0.5rem;
}
.user_authentication .auth_form .form-group .float-end {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.user_authentication .auth_form .form-group .input-group-text {
  background-color: transparent;
  padding: 0 0.2rem 0 1.5rem;
  font-size: 1.4rem;
  border-right: 0;
}
.user_authentication .auth_form .form-group .input-group-text i {
  color: #050708;
}
.user_authentication .auth_form .form-group .input-group-text + .form-control {
  border-left: 0;
  margin-left: 0 !important;
}
.user_authentication .auth_form .form-group .input-group-text {
  border-color: #E2E8F0;
}
.user_authentication .auth_form .form-check {
  padding: 0;
}
.user_authentication .auth_form .form-check .form-check-label {
  position: relative;
  padding-left: 4.5rem;
  user-select: none;
  cursor: pointer;
  line-height: 2;
  margin: 0;
}
.user_authentication .auth_form .form-check .form-check-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  height: 3rem;
  border: 0.1rem solid #ced4da;
  border-radius: 0.4rem;
  transition: all 0.2s;
  background-color: white;
}
.user_authentication .auth_form .form-check .form-check-label::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0.7rem;
  width: 1.8rem;
  height: 1rem;
  border-left: 0.3rem solid #fff;
  border-bottom: 0.3rem solid #fff;
  z-index: 1;
  border-radius: 0.2rem;
  transform: rotate(-45deg);
}
.user_authentication .auth_form .form-check input {
  display: none;
}
.user_authentication .auth_form .form-check input:checked + .form-check-label::before {
  background-color: var(--color__primary);
  border-color: var(--color__primary);
}
.user_authentication .auth_form .submit {
  width: 100%;
  background-color: var(--color__primary);
  border: 0;
  color: var(--color__white);
  padding: 1rem 0;
  border-radius: 0.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.user_authentication .auth_form .submit::before {
  content: "";
  display: block;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, transparent, #FFF);
  position: absolute;
  z-index: 3;
  transform: skewX(-15deg) translateX(-120%);
  -moz-transition: none;
  transition: none;
  opacity: 0.5;
}
.user_authentication .auth_form .submit:hover::before {
  transform: skewX(-15deg) translateX(120%);
  transition: 800ms ease transform;
}
.user_authentication .auth_form .line {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}
.user_authentication .auth_form .line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: -10;
  height: 0.1rem;
  width: 100%;
  transform: translateY(-50%);
  background-color: #ced4da;
}

footer {
  padding: 2rem 0;
  background-color: #fff;
}

/*--------------------------------------------------------------
    [ ## Dashboard ]
--------------------------------------------------------------*/
.peepep__dashboard {
  background-color: var(--color__white);
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}
.peepep__dashboard .dashboard__sidebar {
  position: fixed;
  background-color: var(--color__white);
  width: 30rem;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  transition: all 0.3s ease;
  z-index: 1024;
}
@media screen and (max-width: 991px) {
  .peepep__dashboard .dashboard__sidebar:not(.sidebar__toggled) {
    left: -30rem;
  }
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__sidebar {
    width: 35rem;
  }
}
.peepep__dashboard .dashboard__sidebar .sidebar__header {
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  background-color: var(--color__white);
  z-index: 1024;
  width: 30rem;
  left: 0;
  top: 0;
  padding: 0 3rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1399px) {
  .peepep__dashboard .dashboard__sidebar .sidebar__header {
    height: 8rem;
  }
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__sidebar .sidebar__header {
    width: 35rem;
    padding: 0 5rem;
  }
}
.peepep__dashboard .dashboard__sidebar .sidebar__body {
  height: calc(100vh - 10rem);
  padding: 0 3rem 5rem;
  margin-top: 8rem;
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__sidebar .sidebar__body {
    padding: 0 5rem 5rem;
  }
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__sidebar .sidebar__body {
    margin-top: 10rem;
  }
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul li:not(:last-child) {
  margin: 1.2rem 0;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul li a {
  display: flex;
  align-items: center;
  gap: 0 1.8rem;
  padding: 0.5rem 0;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul li a .fa-angle-right {
  margin-left: auto;
  transition: all 0.3s;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul li a .badge-icon {
  background-color: var(--color__white);
  border: 0.1rem solid #FF7500;
  border-radius: 5rem;
  display: inline-block;
  padding: 0.3rem 0.7rem;
  font-size: 1.1rem;
  color: #FF7500;
  line-height: 1;
  transition: all 0.3s;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul li a[aria-expanded=true] .fa-angle-right {
  transform: rotate(90deg);
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul li a[aria-expanded=true] .badge-icon {
  opacity: 0;
  visibility: hidden;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul li a.active {
  color: var(--color__primary);
  font-weight: 600;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul ul {
  margin-left: 1rem;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul ul li:not(:last-child) {
  margin: 1rem 0;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul ul a {
  position: relative;
  color: #8D8D8D;
  gap: 1.5rem;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul ul a::before {
  content: "\f86c";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  color: #8D8D8D;
  font-size: 1rem;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul ul a.active::before {
  color: var(--color__primary);
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul ul ul {
  margin-left: 2.5rem;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul ul ul li:not(:last-child) {
  margin: 0.5rem 0;
}
.peepep__dashboard .dashboard__sidebar .sidebar__body ul ul ul a::before {
  content: "\f1ce";
  transform: rotate(90deg);
}
@media screen and (max-width: 991px) {
  .peepep__dashboard .dashboard__sidebar:not(.sidebar__toggled) .sidebar__header {
    left: -30rem;
  }
}
.peepep__dashboard .sidebar__toggle {
  width: 20px;
  height: 14px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0;
  background-color: transparent;
}
@media screen and (min-width: 992px) {
  .peepep__dashboard .sidebar__toggle {
    display: none;
  }
}
.peepep__dashboard .sidebar__toggle span {
  background-color: #878a99;
  position: absolute;
  border-radius: 2px;
  -webkit-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 100%;
  height: 2px;
  display: block;
  left: 0;
}
.peepep__dashboard .sidebar__toggle span:nth-child(1) {
  top: 0;
  width: 80%;
}
.peepep__dashboard .sidebar__toggle span:nth-child(2) {
  top: 6px;
}
.peepep__dashboard .sidebar__toggle span:nth-child(3) {
  bottom: 0;
  width: 60%;
}
.peepep__dashboard .sidebar__toggle.sidebar__toggled {
  transform: rotate(-90deg);
}
.peepep__dashboard .sidebar__toggle.sidebar__toggled span:nth-child(1) {
  left: 1px;
  top: 5px;
  width: 20px;
  transform: rotate(90deg);
  transition-delay: 150ms;
}
.peepep__dashboard .sidebar__toggle.sidebar__toggled span:nth-child(2) {
  left: 3px;
  top: 13px;
  width: 10px;
  transform: rotate(45deg);
  transition-delay: 50ms;
}
.peepep__dashboard .sidebar__toggle.sidebar__toggled span:nth-child(3) {
  left: 9px;
  top: 13px;
  width: 10px;
  transform: rotate(-45deg);
  transition-delay: 0.1s;
}
.peepep__dashboard .dashboard__content {
  background-color: #F6F6F7;
  height: 100%;
  min-height: 100vh;
  transition: all 0.3s ease;
}
@media screen and (min-width: 992px) {
  .peepep__dashboard .dashboard__content {
    margin-left: 30rem;
  }
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__content {
    margin-left: 35rem;
  }
}
.peepep__dashboard .dashboard__header {
  height: 10rem;
  background-color: var(--color__white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  border-left: 0.2rem solid #F6F6F7;
  gap: 0 2rem;
}
@media screen and (max-width: 1399px) {
  .peepep__dashboard .dashboard__header {
    height: 8rem;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1900px) {
  .peepep__dashboard .dashboard__header {
    padding: 0 10rem 0 2rem;
  }
}
.peepep__dashboard .dashboard__header .welcome_text {
  font-weight: 700;
  font-size: 2rem;
  margin-right: auto;
}
@media screen and (max-width: 360px) {
  .peepep__dashboard .dashboard__header .welcome_text {
    display: none;
  }
}
.peepep__dashboard .dashboard__header ul.right__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 575px) {
  .peepep__dashboard .dashboard__header ul.right__item {
    gap: 1rem;
  }
}
.peepep__dashboard .dashboard__header ul.right__item > li + li {
  padding-left: 2.5rem;
  position: relative;
}
@media screen and (max-width: 575px) {
  .peepep__dashboard .dashboard__header ul.right__item > li + li {
    padding-left: 1rem;
  }
}
.peepep__dashboard .dashboard__header ul.right__item > li + li::before {
  content: "";
  border-left: 0.1rem solid #D8D8D8;
  height: 3rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.peepep__dashboard .dashboard__header .user_image {
  width: 4rem;
  border-radius: 50%;
}
@media screen and (min-width: 992px) {
  .peepep__dashboard .dashboard__header .user_image {
    width: 3.4rem;
  }
}
.peepep__dashboard .dashboard__header .top__user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #F6F6F7;
  padding: 1rem 1.2rem;
  border-radius: 10rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .peepep__dashboard .dashboard__header .top__user {
    padding: 0.6rem;
  }
}
.peepep__dashboard .dashboard__header .user__info {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .peepep__dashboard .dashboard__header .user__info {
    display: none;
  }
}
.peepep__dashboard .dashboard__header .user__info b {
  line-height: normal;
  font-size: 1.4rem;
}
.peepep__dashboard .dashboard__header .user__info span {
  line-height: normal;
  font-size: 1.2rem;
  color: #8D8D8D;
  display: block;
}
.peepep__dashboard .dashboard__header .notification > a {
  font-size: 2rem;
  color: #B7B7B7;
  position: relative;
  background-color: #F6F6F7;
  border-radius: 50%;
  height: 5.2rem;
  width: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.peepep__dashboard .dashboard__header .notification .count {
  background-color: #F9020B;
  color: var(--color__white);
  position: absolute;
  top: 0.8rem;
  left: 2.8rem;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 700;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu {
  min-width: 35rem;
  max-width: 35rem;
  background: var(--color__white);
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.15);
  border-radius: 0 0 0.6rem 0.6rem;
  padding: 0;
  border: 0;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .dropdown_header, .peepep__dashboard .dashboard__header .notification .dropdown-menu .dropdown_footer {
  background-color: #F0F1F3;
  padding: 1rem;
  margin: 1rem;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 0.4rem;
  display: block;
  font-weight: 600;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .max-height-scroll {
  max-height: 30rem;
  overflow-y: scroll;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .max-height-scroll::-webkit-scrollbar {
  width: 5px;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .max-height-scroll::-webkit-scrollbar-track {
  background-color: transparent;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .max-height-scroll::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 2rem #23a6d5;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .notification__single {
  display: flex;
  align-items: flex-start;
  gap: 0 1rem;
  margin: 0.5rem 0;
  padding: 1rem 1rem;
  position: relative;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .notification__single .notification_icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.1rem solid rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .notification__single .notification__details {
  flex: 1;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .notification__single .notification__details p {
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 25rem;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .notification__single .notification__details .time-published {
  opacity: 0.8;
  font-size: 1.2rem;
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .notification__single.unread {
  background-color: rgba(0, 0, 0, 0.05);
}
.peepep__dashboard .dashboard__header .notification .dropdown-menu .notification__single.unread p {
  text-shadow: 0 0 0.05rem #000;
}
.peepep__dashboard .dashboard__header .notification .btn_mark_as {
  position: absolute;
  top: 50%;
  right: 1rem;
  border: 0;
  margin: 0;
  padding: 0;
  transform: translateY(-50%);
  z-index: 1;
  background-color: transparent;
}
.peepep__dashboard .dashboard__header #userDropdownMenu {
  background: var(--color__white);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
  border-radius: 0.6rem;
  border: 0;
  min-width: 22rem;
  padding: 0;
  overflow: hidden;
}
.peepep__dashboard .dashboard__header #userDropdownMenu p {
  font-size: 1.4rem;
}
.peepep__dashboard .dashboard__header #userDropdownMenu .user_email {
  font-weight: 600;
  font-size: 1.8rem;
}
.peepep__dashboard .dashboard__header #userDropdownMenu .cover_img {
  width: 100%;
  max-height: 10rem;
  object-fit: cover;
}
.peepep__dashboard .dashboard__header #userDropdownMenu .profile_img {
  margin-top: -3rem;
}
.peepep__dashboard .dashboard__header #userDropdownMenu .btn {
  font-size: 1.5rem;
  padding: 0.5rem 1.5rem;
  display: inline-block;
}
.peepep__dashboard .dashboard__header #userDropdownMenu .btn + .btn {
  margin-left: 0.5rem;
}
.peepep__dashboard .dashboard__header #userDropdownMenu .btn:hover {
  background-color: var(--color__theme__black);
  color: var(--color__white);
}
.peepep__dashboard .dashboard__body {
  background-color: #F6F6F7;
  height: calc(100vh - 16rem);
  padding: 4rem;
}
@media screen and (max-width: 1199px) {
  .peepep__dashboard .dashboard__body {
    padding: 2rem;
    height: calc(100vh - 16rem);
  }
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__body {
    padding: 4rem 6rem;
    height: calc(100vh - 18rem);
  }
}
.peepep__dashboard .dashboard__body .dashboard__title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 480px) {
  .peepep__dashboard .dashboard__body .dashboard__title {
    display: flex;
    align-items: center;
  }
}
.peepep__dashboard .dashboard__body .dashboard__title .button__block {
  margin-top: 1rem;
}
@media screen and (min-width: 480px) {
  .peepep__dashboard .dashboard__body .dashboard__title .button__block {
    margin-left: 2rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__body .dashboard__title .button__block {
    margin-left: 3rem;
  }
}
.peepep__dashboard .dashboard__body .dashboard__title .icon {
  color: var(--color__primary);
  margin-right: 1rem;
}
.peepep__dashboard .barcode {
  max-width: 8rem;
  text-align: center;
}
.peepep__dashboard .barcode .data-label {
  font-size: 1.21rem;
}
.peepep__dashboard .dashboard__content__wrapper {
  background-color: var(--color__white);
  padding: 2.5rem 2rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper {
    padding: 3rem;
  }
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__content__wrapper {
    padding: 4.5rem 5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .card-stats-wrapper .card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper .card-stats-wrapper .card-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper .card-stats-wrapper .card-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__content__wrapper .card-stats-wrapper .card-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.peepep__dashboard .dashboard__content__wrapper .card-stats-wrapper .card-item {
  border-radius: 1rem;
  padding: 2rem 2rem 2.5rem;
  background-color: var(--bg);
}
.peepep__dashboard .dashboard__content__wrapper .card-stats-wrapper .card-item .icon {
  font-size: 4rem;
  color: var(--color);
}
.peepep__dashboard .dashboard__content__wrapper .card-stats-wrapper .card-item h6 {
  color: var(--color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper .card-stats-wrapper .card-item .number {
  color: var(--color);
  font-weight: 700;
  font-size: 1.8rem;
}
.peepep__dashboard .dashboard__content__wrapper .user-data-stats {
  border-radius: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper .user-data-stats .card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper .user-data-stats .card-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper .user-data-stats .card-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__content__wrapper .user-data-stats .card-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.peepep__dashboard .dashboard__content__wrapper .user-data-stats .card-item {
  border-radius: 1rem;
  padding: 2rem 2rem 2.5rem;
  border: 0.1rem solid var(--color);
}
.peepep__dashboard .dashboard__content__wrapper .user-data-stats .card-item .icon {
  font-size: 4rem;
  color: var(--color);
}
.peepep__dashboard .dashboard__content__wrapper .user-data-stats .card-item h6 {
  color: var(--color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper .user-data-stats .card-item .number {
  color: var(--color);
  font-weight: 700;
  font-size: 1.8rem;
}
.peepep__dashboard .dashboard__content__wrapper .dataTable_header {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 575px) {
  .peepep__dashboard .dashboard__content__wrapper .dataTable_header {
    flex-direction: column;
  }
}
.peepep__dashboard .dashboard__content__wrapper .dataTable_header .btn-theme-primary-alt {
  background: #F1FBFF;
}
.peepep__dashboard .dashboard__content__wrapper .dataTable_header .btn-theme-primary-alt:hover {
  background-color: var(--color__primary);
}
.peepep__dashboard .dashboard__content__wrapper .dataTable_header .button-info {
  height: 100%;
}
.peepep__dashboard .dashboard__content__wrapper .dataTable_header ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper .dataTable_header ul li {
  display: flex;
  align-items: center;
}
.peepep__dashboard .dashboard__content__wrapper .dataTable_header input[type=search] {
  height: 4.8rem;
  box-shadow: none;
  outline: none;
  border-radius: 0.6rem;
  outline-offset: 0;
  border: 0.1rem solid #ddd;
  min-width: 20rem;
  padding: 0 1.5rem;
}
.peepep__dashboard .dashboard__content__wrapper .dataTable_header input[type=search]:focus {
  border-color: var(--color__primary);
}
.peepep__dashboard .dashboard__content__wrapper .dataTable_header .select2-container {
  min-width: 15rem;
}
.peepep__dashboard .dashboard__content__wrapper .dataTable_header button[type=submit] {
  height: 4.8rem;
  border-radius: 0.6rem;
}
.peepep__dashboard .dashboard__content__wrapper .group_search_form label {
  font-weight: 600;
}
.peepep__dashboard .dashboard__content__wrapper .group_search_form .inputField {
  border: 0.1rem solid #E2E8F0;
  border-radius: 0.4rem;
}
.peepep__dashboard .dashboard__content__wrapper .group_search_form .select2-container {
  width: 100% !important;
}
.peepep__dashboard .dashboard__content__wrapper .group_search_form .slider_range {
  height: 4.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.peepep__dashboard .dashboard__content__wrapper .group_search_form .slider_range .ui-slider {
  background-color: var(--color__primary);
  border: 0;
  height: 0.35rem;
  margin-bottom: 0.8rem;
}
.peepep__dashboard .dashboard__content__wrapper .group_search_form .slider_range .ui-slider .ui-slider-range {
  background: var(--color__primary);
}
.peepep__dashboard .dashboard__content__wrapper .group_search_form .slider_range .ui-slider .ui-slider-handle {
  width: 1.3rem;
  height: 1.3rem;
  border: 0;
  background: var(--color__white);
  border-radius: 50%;
  box-shadow: 0 0 0 0.35rem var(--color__primary);
  top: -0.5rem;
  outline: none;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable {
  width: 100% !important;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable thead th {
  border-bottom: 0;
  padding: 2rem 1rem;
  background-color: #F1F1F1;
  font-weight: 600;
  box-sizing: border-box;
  vertical-align: middle;
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__content__wrapper table.dataTable thead th {
    padding: 2rem 2rem;
  }
}
@media screen and (min-width: 1900px) {
  .peepep__dashboard .dashboard__content__wrapper table.dataTable thead th {
    padding: 2.8rem 2rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable td {
  padding: 2rem 1rem;
  border-color: #E2E8F0;
  box-sizing: border-box;
}
@media screen and (min-width: 1900px) {
  .peepep__dashboard .dashboard__content__wrapper table.dataTable td {
    padding: 2rem 2rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable .dropdown button {
  border: 0;
  background-color: transparent;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable .dropdown button::after {
  display: none;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable .dropdown .dropdown-menu {
  padding: 0.5rem 0;
  border: 0;
  box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.15);
  min-width: 15rem;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable .dropdown .dropdown-menu a {
  display: block;
  padding: 0.8rem 2rem;
  transition: all 0.3s;
  white-space: nowrap;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable .dropdown .dropdown-menu a i {
  margin-right: 0.5rem;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable .dropdown .dropdown-menu a:hover {
  background-color: #E2E8F0;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable tr.child td.child {
  padding: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable tr.child .dtr-details {
  width: 100%;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable tr.child .dropdown-toggle {
  border: 0;
  background-color: transparent;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable tr.child .dropdown-toggle::after {
  display: none;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable tr.child .dropdown-menu {
  padding: 0.5rem 0;
  border: 0;
  box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.15);
  min-width: 15rem;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable tr.child .dropdown-menu a {
  display: block;
  padding: 0.8rem 2rem;
  transition: all 0.3s;
  white-space: nowrap;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable tr.child .dropdown-menu a:hover {
  background-color: #E2E8F0;
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable tr.new_entry {
  background-color: rgba(255, 117, 0, 0.07);
}
.peepep__dashboard .dashboard__content__wrapper table.dataTable.no-footer {
  border-bottom: 0;
  /*margin-bottom: 1rem;*/
}
.datatable-footer{padding-top: 1rem;}
.datatable-header .dt-buttons{padding-bottom: 1rem;}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section {
  background-color: #F8F8F8;
  border: 0.1rem solid #eee;
  border-radius: 0.8rem;
  padding: 1.5rem;
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__content__wrapper.edit_inventory section {
    padding: 3rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section + section {
  margin-top: 4rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .form-title {
  margin-bottom: 1rem;
  font-size: 2.4rem;
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__content__wrapper.edit_inventory section .form-title {
    margin-bottom: 1.5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .form-group .select2-container {
  width: 100% !important;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .form-group label {
  margin-bottom: 0.8rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .form-group input:not([type=radio], [type=checkbox]) {
  height: 4.8rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .form-group + .form-group {
  margin-top: 1.5rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .nav-tabs {
  border-bottom: 0;
  gap: 0 0.2rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .nav-tabs .nav-link {
  border: 0;
  background-color: #fff;
  padding: 1rem 1.5rem;
  line-height: normal;
  font-size: 1.4rem;
  color: var(--color__theme__black);
  border-radius: 0;
  position: relative;
}
@media screen and (min-width: 480px) {
  .peepep__dashboard .dashboard__content__wrapper.edit_inventory section .nav-tabs .nav-link {
    padding: 1.2rem 2.2rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper.edit_inventory section .nav-tabs .nav-link {
    padding: 1.5rem 4rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .nav-tabs .nav-link::after {
  content: "";
  border-style: solid;
  border-width: 1rem 1rem 0 1rem;
  border-color: var(--color__primary) transparent transparent transparent;
  position: absolute;
  top: calc(100% - 1rem);
  left: 50%;
  transform: translateX(-50%);
  transition: 0.15s;
  opacity: 0;
  visibility: hidden;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .nav-tabs .nav-link.active {
  background-color: var(--color__primary);
  color: var(--color__white);
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .nav-tabs .nav-link.active::after {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section + section {
  margin-top: 4rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section [class*=upload_gallery] .uploaded-item {
  overflow: hidden;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section [class*=upload_gallery] .uploaded-item:hover [class*=search-plus] {
  opacity: 1;
  transform: scale(1);
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section [class*=upload_gallery] [class*=search-plus] {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--color__white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 2rem;
  opacity: 0;
  transform: scale(1.5);
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section [class*=upload_gallery] .remove-gallery {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color__danger);
  color: var(--color__white);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  opacity: 0.5;
  border: 0;
  box-shadow: none;
  transition: all 0.3s;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section [class*=upload_gallery] .remove-gallery:hover {
  opacity: 1;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .upload-wrapper {
  padding: 3rem;
  border-radius: 0.8rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper.edit_inventory section .upload-wrapper {
    padding: 6rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .uploads-item + .uploads-item {
  margin-top: 3rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory section .uploads-item h6 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .filepond--root .filepond--drop-label {
  font-size: 1.6rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--root {
  margin: 0;
  padding: 0 2rem;
  max-height: 60rem;
  display: flex;
  flex-direction: row;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--root * {
  box-sizing: border-box;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--root :not(text) {
  font-size: 1.6rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--root .filepond--drop-label {
  height: auto;
  font-size: 1.6rem;
  cursor: pointer;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--root label {
  padding: 3rem 0;
  display: block;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--root .icon {
  font-size: 1.8rem;
  color: var(--color__primary);
  background-color: var(--color__white);
  padding: 1rem 1.8rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--color__primary);
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--root .filepond--panel-root {
  background-color: #F6F6F7 !important;
  border: 0.1rem solid #E9EAED;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--browser.filepond--browser,
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--root .filepond--credits {
  display: none;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--list-scroller {
  position: relative;
  width: 100%;
  padding: 0;
  overflow-y: auto !important;
  -webkit-mask: linear-gradient(180deg, #000 calc(100% - 0em), transparent);
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  left: 0;
  right: 0;
  padding-right: 0.8rem;
  max-height: 44rem;
  overflow-y: scroll;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--list {
    gap: 2rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--list::-webkit-scrollbar {
  width: 5px;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--list::-webkit-scrollbar-track {
  background-color: transparent;
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--list::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
  background: #6d6d6d;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--list .filepond--panel.filepond--item-panel {
  display: none;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--item {
  position: relative;
  transform: none !important;
  max-height: 10rem !important;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--item {
    max-height: 15rem !important;
  }
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-gallery .filepond--image-clip {
  height: 100% !important;
}
.peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-documents ul li + li {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 0.1rem solid #ddd;
}
@media screen and (max-width: 767px) {
  .peepep__dashboard .dashboard__content__wrapper.edit_inventory .uploads-documents .btn-theme {
    padding: 1rem 2rem;
    font-size: 1.5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .role-permission hr {
  border-color: #E2E8F0;
  opacity: 1;
}
.peepep__dashboard .dashboard__content__wrapper .role-permission fieldset {
  padding: 2rem;
  border: 0.1rem solid #E2E8F0;
  border-radius: 1rem;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper .role-permission fieldset {
    padding: 3rem;
  }
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__content__wrapper .role-permission fieldset {
    padding: 4rem 5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .role-permission fieldset + fieldset {
  margin-top: 5rem;
}
.peepep__dashboard .dashboard__content__wrapper .role-permission fieldset .select2-container {
  width: 100% !important;
}
.peepep__dashboard .dashboard__content__wrapper .role-permission .widget .widget-title {
  font-size: 1.8rem;
  font-weight: 500;
  gap: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper .role-permission .widget .widget-title .form-check {
  margin: 0;
  padding: 0;
}
.peepep__dashboard .dashboard__content__wrapper .role-permission .widget .widget-title .form-check input {
  width: 2rem;
  height: 2rem;
  box-shadow: none;
  margin: 0 0 0 0;
  cursor: pointer;
}
.peepep__dashboard .dashboard__content__wrapper .role-permission .widget .form-check {
  padding-left: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper .role-permission .widget .form-check input {
  width: 2rem;
  height: 2rem;
  box-shadow: none;
  margin: 0;
}
.peepep__dashboard .dashboard__content__wrapper .role-permission .widget .form-check input:checked {
  background-color: var(--color__primary);
  border-color: var(--color__primary);
}
.peepep__dashboard .dashboard__content__wrapper .role-permission .widget .form-check label {
  font-size: 1.5rem;
  user-select: none;
  cursor: pointer;
}
.peepep__dashboard .dashboard__content__wrapper.refund_requests td .subject {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.peepep__dashboard .dashboard__content__wrapper.support_tickets .dataTable td:nth-child(1) {
  width: 5rem;
}
.peepep__dashboard .dashboard__content__wrapper.support_tickets .ticket_subject {
  min-width: 250px;
  max-width: 250px;
}
@media screen and (min-width: 1900px) {
  .peepep__dashboard .dashboard__content__wrapper.support_tickets .ticket_subject {
    min-width: 300px;
    max-width: 300px;
  }
}
.peepep__dashboard .dashboard__content__wrapper.support_tickets .ticket_subject a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.peepep__dashboard .dashboard__content__wrapper.create_support_ticket .select2-container {
  width: 100% !important;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .ticket-status {
  padding: 2rem;
  font-weight: 600;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .reply a {
  border: 0.1rem solid #F2F3F5;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .reply a {
    padding: 1.8rem 2.5rem;
    font-size: 1.8rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .message-form form {
  margin: 3rem 0;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .message-form label {
  margin-bottom: 0.8rem;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg {
  margin: 2rem 0;
  border: 0.1rem solid #E9F1FA;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg {
    margin: 3rem 0;
  }
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg {
    margin: 4rem 0;
  }
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .msg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .msg-header {
    padding: 2rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .name-thumb {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.6rem;
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .name-thumb {
    font-size: 1.8rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .thumb {
  width: 5rem;
  height: 5rem;
  background-color: #EFFAFF;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .date-time {
  font-size: 1.4rem;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg.msg-peepep .msg-header {
  background-color: var(--color__primary);
  color: var(--color__white);
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg.msg-customer .msg-header {
  background-color: #E3EFFC;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .msg-body {
  padding: 2rem 1.5rem;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .msg-body {
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .msg-body {
    padding: 4rem 4.5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .msg-body p {
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .msg-body p {
    font-size: 1.6rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .msg-body h6 {
  font-size: 1.6rem;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .attachments ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .attachments ul {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .conversation .msg .attachments ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .ticket-info {
  position: sticky;
  top: 2rem;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .ticket-info h5 {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__content__wrapper .ticket-details .ticket-info h5 {
    font-size: 2.2rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .ticket-info .ticket-id {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .ticket-info .widget {
  border: 0.1rem solid var(--color__primary);
  border-radius: 0.8rem;
  padding: 1.5rem 2rem 2rem;
  margin: 2rem 0;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .ticket-info .widget h6 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .ticket-info .widget p {
  font-size: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .ticket-info .widget table {
  margin: 0 0 1rem;
}
.peepep__dashboard .dashboard__content__wrapper .ticket-details .ticket-info .widget table td {
  padding: 1.3rem 0;
  font-size: 1.5rem;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--root, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--root {
  margin: 0;
  padding: 0 2rem;
  max-height: 60rem;
  display: flex;
  flex-direction: row;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--root *, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--root * {
  box-sizing: border-box;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--root :not(text), .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--root :not(text) {
  font-size: 1.2rem;
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--root :not(text), .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--root :not(text) {
    font-size: 1.6rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--root .filepond--drop-label, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--root .filepond--drop-label {
  height: auto;
  font-size: 1.6rem;
  cursor: pointer;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--root label, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--root label {
  padding: 3rem 0;
  display: block;
  margin: 0;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--root .icon, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--root .icon {
  font-size: 1.8rem;
  color: var(--color__primary);
  background-color: var(--color__white);
  padding: 1rem 1.8rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--color__primary);
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--root .filepond--panel-root, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--root .filepond--panel-root {
  background-color: #F6F6F7 !important;
  border: 0.1rem solid #E9EAED;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--browser.filepond--browser,
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--root .filepond--credits, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--browser.filepond--browser,
.peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--root .filepond--credits {
  display: none;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--file-info .filepond--file-info-main, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--file-info .filepond--file-info-main {
  line-height: inherit;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--list-scroller, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--list-scroller {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  -webkit-mask: linear-gradient(180deg, #000 calc(100% - 0em), transparent);
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--list, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  left: 0;
  right: 0;
  padding-right: 0.8rem;
  max-height: 44rem;
  overflow-y: scroll;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--list, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--list, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--list {
    gap: 2rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--list::-webkit-scrollbar, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--list::-webkit-scrollbar {
  width: 5px;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--list::-webkit-scrollbar-track, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--list::-webkit-scrollbar-track {
  background-color: transparent;
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--list::-webkit-scrollbar-thumb, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--list::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
  background: #6d6d6d;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--list .filepond--panel.filepond--item-panel, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--list .filepond--panel.filepond--item-panel {
  display: none;
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--item, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--item {
  position: relative;
  transform: none !important;
  max-height: 10rem !important;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--item, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--item {
    max-height: 15rem !important;
  }
}
.peepep__dashboard .dashboard__content__wrapper .create-support .upload-label .filepond--image-clip, .peepep__dashboard .dashboard__content__wrapper .ticket-details .upload-label .filepond--image-clip {
  height: 100% !important;
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .widget-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .widget-inner {
  border: 0.1rem solid #E2E8F0;
  padding: 2rem;
  border-radius: 0.6rem;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper.currency_settings .widget-inner {
    padding: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .peepep__dashboard .dashboard__content__wrapper.currency_settings .widget-inner {
    padding: 2rem;
  }
}
@media screen and (min-width: 1900px) {
  .peepep__dashboard .dashboard__content__wrapper.currency_settings .widget-inner {
    padding: 3rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper input[type=file] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  transform: scale(1.2);
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper .drop-input {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper .drop-input .icon {
  width: 7rem;
  height: 7rem;
  border-radius: 0.4rem;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper .drop-input .icon {
    height: 5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper .drop-input .icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 0.1rem dashed #E2E8F0;
  border-radius: 0.4rem;
  transform: scale(1.2);
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper .preview_box {
  border: 0.1rem solid #E2E8F0;
  border-radius: 0.4rem;
  position: relative;
  width: 8rem;
  height: 8rem;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper .preview_box {
    height: 6rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper .preview_box .image_wrap {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper .preview_box button {
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  background-color: var(--color__white);
  color: #FF5757;
  border: 0.1rem solid #E2E8F0;
  border-radius: 50%;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .dropzone_wrapper .preview_box.image_placed button {
  opacity: 1;
  visibility: visible;
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .conversion_rate .widget-inner .input-group {
  gap: 2rem;
  justify-content: center;
}
.peepep__dashboard .dashboard__content__wrapper.currency_settings .conversion_rate .widget-inner input {
  max-width: 10rem;
  border-radius: 0.8rem !important;
  text-align: center;
  font-weight: bold;
}
.peepep__dashboard .dashboard__content__wrapper.packages .dataTable td {
  white-space: nowrap;
}
.peepep__dashboard .dashboard__content__wrapper.vehicle_settings .nav-tabs {
  border: 0;
  max-width: 17rem;
}
.peepep__dashboard .dashboard__content__wrapper.vehicle_settings .nav-tabs li + li {
  margin-top: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper.vehicle_settings .nav-link {
  border: 0;
  border-radius: 0.4rem;
  padding: 1rem 1rem;
  text-align: center;
  color: var(--color__theme__black);
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
}
.peepep__dashboard .dashboard__content__wrapper.vehicle_settings .nav-link.active {
  background-color: var(--color__primary);
  color: var(--color__white);
  border-color: var(--color__primary);
  font-weight: 600;
}
.peepep__dashboard .dashboard__content__wrapper.mail_settings {
  overflow: hidden;
}
.peepep__dashboard .dashboard__content__wrapper.mail_settings .test_mail_integration label {
  background-color: #D5F3FF;
  padding: 1.2rem 2rem;
  border-radius: 0.4rem;
  font-weight: 600;
}
.peepep__dashboard .dashboard__content__wrapper.mail_settings .test_mail_integration input {
  height: 5rem;
  border-radius: 0.5rem;
}
.peepep__dashboard .dashboard__content__wrapper.mail_settings .test_mail_integration button {
  border-radius: 0.5rem;
}
.peepep__dashboard .dashboard__content__wrapper.mail_settings .mail_configuration h6 {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper.mail_settings .mail_configuration .row {
    --bs-gutter-x: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .peepep__dashboard .dashboard__content__wrapper.mail_settings .mail_configuration .row {
    --bs-gutter-x: 2rem;
  }
}
@media (min-width: 1560px) {
  .peepep__dashboard .dashboard__content__wrapper.mail_settings .mail_configuration .row {
    --bs-gutter-x: 10rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.mail_settings .mail_configuration .input-group label {
  width: 12rem;
}
@media screen and (max-width: 1199px) {
  .peepep__dashboard .dashboard__content__wrapper.mail_settings .mail_configuration .input-group label {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1560px) {
  .peepep__dashboard .dashboard__content__wrapper.mail_settings .mail_configuration .input-group label {
    width: 15rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.mail_settings .mail_configuration .input-group + .input-group {
  margin-top: 1.5rem;
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__content__wrapper.mail_settings .mail_configuration .input-group + .input-group {
    margin-top: 3.5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.sms_configuration h6 {
  font-size: 1.8rem;
}
.peepep__dashboard .dashboard__content__wrapper.sms_configuration .form__header {
  min-height: 5rem;
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper.sms_configuration .form-body .row {
    --bs-gutter-x: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .peepep__dashboard .dashboard__content__wrapper.sms_configuration .form-body .row {
    --bs-gutter-x: 2rem;
  }
}
@media (min-width: 1560px) {
  .peepep__dashboard .dashboard__content__wrapper.sms_configuration .form-body .row {
    --bs-gutter-x: 10rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.sms_configuration .form-body .input-group label {
  width: 12rem;
}
@media screen and (max-width: 1199px) {
  .peepep__dashboard .dashboard__content__wrapper.sms_configuration .form-body .input-group label {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1560px) {
  .peepep__dashboard .dashboard__content__wrapper.sms_configuration .form-body .input-group label {
    width: 15rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.sms_configuration .form-body .input-group + .input-group {
  margin-top: 1.5rem;
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__content__wrapper.sms_configuration .form-body .input-group + .input-group {
    margin-top: 3.5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.payments_settings h6 {
  font-size: 1.8rem;
}
.peepep__dashboard .dashboard__content__wrapper.payments_settings .form__header {
  min-height: 5rem;
}
.peepep__dashboard .dashboard__content__wrapper.payments_settings .form-body .input-group label {
  width: 15rem;
}
@media screen and (max-width: 575px) {
  .peepep__dashboard .dashboard__content__wrapper.payments_settings .form-body .input-group label {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 1560px) {
  .peepep__dashboard .dashboard__content__wrapper.payments_settings .form-body .input-group label {
    width: 15rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.payments_settings .form-body .input-group + .input-group {
  margin-top: 1.5rem;
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__content__wrapper.payments_settings .form-body .input-group + .input-group {
    margin-top: 3.5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.sms_template_settings .nav-tabs {
  margin: 0;
  border: 0;
}
.peepep__dashboard .dashboard__content__wrapper.sms_template_settings .nav-tabs .nav-link {
  background-color: #F6F6F7;
  border-radius: 0;
  color: var(--color__black);
  padding: 1.2rem 3rem;
  border: 0;
  margin: 0;
}
.peepep__dashboard .dashboard__content__wrapper.sms_template_settings .nav-tabs .nav-link.active {
  background-color: var(--color__primary);
  color: var(--color__white);
}
.peepep__dashboard .dashboard__content__wrapper.sms_template_settings .tab-content {
  background-color: #F6F6F7;
  padding: 2rem;
  border: 0.1rem solid #D8D8D8;
  border-radius: 0 0.5rem 0.5rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper.sms_template_settings .tab-content {
    padding: 5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.sms_template_settings .tab-content .widget {
  background-color: var(--color__white);
  padding: 1.5rem;
  border-radius: 0.8rem;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__content__wrapper.sms_template_settings .tab-content .widget {
    padding: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper.sms_template_settings .tab-content .widget {
    padding: 3.5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper.sms_template_settings .tab-content .widget .active_switch {
  margin-bottom: 1.5rem;
}
.peepep__dashboard .dashboard__content__wrapper.sms_template_settings .tab-content .widget .active_switch span {
  font-weight: 600;
}
.peepep__dashboard .dashboard__content__wrapper.invoice_template .invoice_label {
  cursor: pointer;
}
.peepep__dashboard .dashboard__content__wrapper.invoice_template .invoice_label img {
  border: 0.1rem solid #e5e5e5;
  padding: 3rem;
  background-color: #F1FBFF;
  border-radius: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper.invoice_template .invoice_label span {
  position: relative;
  padding-left: 3rem;
  font-weight: 600;
}
.peepep__dashboard .dashboard__content__wrapper.invoice_template .invoice_label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  border: 0.1rem solid var(--color__primary);
}
.peepep__dashboard .dashboard__content__wrapper.invoice_template input {
  display: none;
}
.peepep__dashboard .dashboard__content__wrapper.invoice_template input:checked + label span::before {
  background: var(--color__primary) url(../images/check-white.svg) no-repeat;
  background-position: center;
  background-color: 90%;
}
.peepep__dashboard .dashboard__content__wrapper .transaction_invoice {
  border: 0.1rem solid #E9EAED;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 990px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper .transaction_invoice {
    padding: 4rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .transaction_invoice hr {
  opacity: 0.1;
  margin: 2rem 0;
}
.peepep__dashboard .dashboard__content__wrapper .transaction_invoice .btn {
  border: 0.1rem solid #E9EAED;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  display: inline-block;
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .peepep__dashboard .dashboard__content__wrapper .transaction_invoice .btn#print_invoice {
    display: none;
  }
}
.peepep__dashboard .dashboard__content__wrapper .transaction_invoice .btn:hover {
  background-color: #3c3c3c;
  color: var(--color__white);
}
.peepep__dashboard .dashboard__content__wrapper .transaction_invoice .btn + .btn {
  margin-left: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper .transaction_invoice .invoice-header table td {
  border: 0;
  padding: 0;
}
.peepep__dashboard .dashboard__content__wrapper .transaction_invoice .invoice-header .header-bottom {
  border-top: 0.1rem solid #eee;
  border-bottom: 0.1rem solid #eee;
  margin: 2rem 0 1rem 0;
}
.peepep__dashboard .dashboard__content__wrapper .transaction_invoice .invoice-header .header-bottom td {
  border: 0;
  padding: 1.5rem 0;
}
.peepep__dashboard .dashboard__content__wrapper .transaction_invoice .payment-info .table th {
  background-color: #f5f5f5;
  padding: 1.5rem 2rem;
  border: 0;
  white-space: nowrap;
}
@media screen and (max-width: 575px) {
  .peepep__dashboard .dashboard__content__wrapper .transaction_invoice .payment-info .table th {
    font-size: 1.4rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper .transaction_invoice .payment-info .table td {
  padding: 1.5rem 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 575px) {
  .peepep__dashboard .dashboard__content__wrapper .transaction_invoice .payment-info .table td {
    font-size: 1.4rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset {
  position: relative;
  padding: 3rem;
  border-radius: 0.8rem;
}
@media screen and (max-width: 1199px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset {
    padding: 3rem 2rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .field_label {
  position: absolute;
  top: -1.8rem;
  left: 2rem;
  background-color: var(--color__theme__black);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.6rem;
  user-select: none;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .dynamic_heroSlide_item .slide_item {
  position: relative;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .dynamic_heroSlide_item .slide_item + .slide_item {
  margin-top: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .dynamic_heroSlide_item .slide_item .remove-field {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background-color: #fff;
  padding: 0;
  width: 3rem;
  color: var(--color__danger);
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset input, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset textarea {
  border-radius: 0.5rem;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset input:focus, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset textarea:focus {
  border-color: var(--color__primary);
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .btn-theme {
  padding: 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .btn-theme {
    font-size: 1.4rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload {
    flex-direction: column;
    gap: 2rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .line, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .line {
  height: 0.1rem;
  flex: 1;
  align-self: center;
  border-top: 0.1rem dashed #BBBBBB;
}
@media screen and (min-width: 1200px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .line, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .line {
    min-width: 5rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .file-drop-area .msg, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .file-drop-area .msg {
  background-color: #F8F8F8;
  border: 0.1rem dashed #BBBBBB;
  border-radius: 0.8rem;
  padding: 1.5rem 3rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.6rem;
  width: 25rem;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .file-drop-area .msg, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .file-drop-area .msg {
    width: 100%;
    min-height: 20rem;
  }
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .file-drop-area .msg, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .file-drop-area .msg {
    width: 30rem;
    min-height: 40rem;
  }
}
@media screen and (min-width: 1900px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .file-drop-area .msg, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .file-drop-area .msg {
    width: 40rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .file-drop-area .msg i, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .file-drop-area .msg i {
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--color__primary);
  color: var(--color__primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .file-drop-area input, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .file-drop-area input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .display, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .display {
  border: 0.1rem dashed #BBBBBB;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  max-width: 80rem;
  width: 100%;
  min-height: 20rem;
  background: #fff url(../images/placeholder.png) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 575px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .display, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .display {
    padding: 1rem;
  }
}
@media screen and (min-width: 1400px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .display, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .display {
    min-width: 50rem;
  }
}
@media screen and (min-width: 1900px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .display, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .display {
    min-width: 70rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .display .remove_input, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .display .remove_input {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  z-index: 1;
  background-color: var(--color__danger);
  color: #fff;
  border: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .display.placed, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .display.placed {
  background: #fff;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .hero_img_upload .display.placed .remove_input, .peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .inventory_img_upload .display.placed .remove_input {
  opacity: 1;
  visibility: visible;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .note ul > li {
  margin: 1rem 0;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings fieldset .note ul ul {
  margin-left: 3rem;
  list-style-type: disc;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .cta .feature-widget {
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .cta .feature-widget + .feature-widget {
  margin-top: 1rem;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .cta .feature-widget .remove-field {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border: 0;
  background-color: #020;
  padding: 0;
  width: 3rem;
  height: 3rem;
  color: #fff;
  border-radius: 0.3rem;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--root {
  margin: 0;
  padding: 0 1rem 0 2rem;
  max-height: 60rem;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--root * {
  box-sizing: border-box;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--root :not(text) {
  font-size: 1.6rem;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--root .filepond--drop-label {
  height: auto;
  font-size: 1.6rem;
  cursor: pointer;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--root label {
  padding: 3rem 1rem;
  display: block;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--root .icon {
  font-size: 1.8rem;
  color: var(--color__primary);
  background-color: var(--color__white);
  padding: 1rem 1.8rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--color__primary);
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--root .filepond--panel-root {
  background-color: #F6F6F7 !important;
  border: 0.1rem solid #E9EAED;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--image-preview-overlay {
  opacity: 0;
  visibility: hidden;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--image-canvas-wrapper {
  transform: none !important;
  width: 100% !important;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--browser.filepond--browser,
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--root .filepond--credits {
  display: none;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--image-bitmap, .peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--image-bitmap canvas {
  width: 100% !important;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--list-scroller {
  position: relative;
  width: 100%;
  padding: 0;
  max-height: 60rem;
  overflow-y: auto !important;
  -webkit-mask: linear-gradient(180deg, #000 calc(100% - 0em), transparent);
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--list .filepond--panel.filepond--item-panel,
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--list .filepond--file-info {
  display: none;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--item {
  position: relative;
  transform: none !important;
  margin: 0;
}
.peepep__dashboard .dashboard__content__wrapper #homepage_settings .uploads-gallery .filepond--image-clip {
  width: inherit !important;
  height: inherit !important;
}
.peepep__dashboard .dashboard__footer {
  height: 8rem;
  background-color: var(--color__white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 576px) {
  .peepep__dashboard .dashboard__footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1900px) {
  .peepep__dashboard .dashboard__footer {
    padding: 0 10rem 0 2rem;
  }
}
.peepep__dashboard .dashboard__footer p {
  font-size: 1.3rem;
}
@media screen and (min-width: 992px) {
  .peepep__dashboard .dashboard__footer p {
    font-size: 1.6rem;
  }
}

.ck-balloon-panel {
  display: none !important;
}

.ck-editor__editable {
  min-height: 20rem;
  box-shadow: none !important;
  border-color: #E2E8F0;
}
.ck-editor__editable.ck-focused {
  border: 0.1rem solid #E2E8F0 !important;
}

.filepond--root .filepond--drop-label {
  font-size: 1.6rem;
}

.filepond--browser.filepond--browser,
.filepond--root .filepond--credits {
  display: none;
}

.uploads-documents .filepond--browser.filepond--browser,
.uploads-documents .filepond--root .filepond--credits {
  display: none;
}
.uploads-documents .filepond--root {
  contain: none;
  height: inherit !important;
  margin: 0;
}
@media screen and (min-width: 576px) {
  .uploads-documents .filepond--root {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }
}
.uploads-documents .filepond--root * {
  box-sizing: border-box;
}
.uploads-documents .filepond--root :not(text) {
  font-size: 1.6rem;
}
.uploads-documents .filepond--root .filepond--drop-label {
  position: relative;
  grid-column-start: 1;
  grid-column-end: 3;
  background-color: #F8F8F8;
  border-radius: 1rem;
  border: 0.1rem solid #E9EAED;
  display: flex;
  height: auto;
}
.uploads-documents .filepond--root .filepond--drop-label label {
  font-size: 1.4rem;
  cursor: pointer;
  display: block;
  padding: 3rem 2rem;
}
.uploads-documents .filepond--root .filepond--drop-label .icon {
  font-size: 1.8rem;
  color: var(--color__primary);
  background-color: var(--color__white);
  padding: 1rem 1.8rem;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--color__primary);
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
}
.uploads-documents .filepond--root .filepond--list-scroller {
  position: relative;
  transform: none !important;
  grid-column-start: 3;
  grid-column-end: 7;
  margin: 0;
}
.uploads-documents .filepond--root .filepond--list-scroller .filepond--list {
  position: relative;
  left: 0;
}
.uploads-documents .filepond--root .filepond--list-scroller .filepond--item {
  margin: 0.5rem 0;
  position: inherit;
  transform: none !important;
}
.uploads-documents .filepond--root .filepond--panel {
  position: relative;
  display: none;
}
.uploads-documents .filepond--root .filepond--file {
  background-color: #F8F8F8;
  border: 0.1rem solid #E9EAED;
  color: var(--color__theme__black);
  padding: 1rem 2rem;
}

#ui-datepicker-div td a {
  text-align: center;
  border-radius: 0.3rem;
}
#ui-datepicker-div td.ui-datepicker-range a {
  background-color: var(--color__primary);
  color: var(--color__white);
  border-color: var(--color__primary);
}
#ui-datepicker-div td.ui-datepicker-today a {
  background-color: var(--color__theme__black);
  border-color: var(--color__theme__black);
  color: var(--color__white);
}

@media print {
  body {
    visibility: hidden;
  }
  #invoicePrintArea {
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: min-content;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    overflow: hidden;
    margin-top: 3rem;
    page-break-after: always !important;
    page-break-before: avoid;
    margin-bottom: 0px;
  }
  .payment-info .table th {
    background-color: #f5f5f5 !important;
    padding: 1.5rem 2rem;
    border: 0;
    font-size: 1.4rem;
  }
  .payment-info .table td {
    padding: 1.5rem 2rem;
    font-size: 1.4rem;
  }
  .payment-info .table p {
    font-size: 1.4rem;
  }
  .invoice-header table td {
    border: 0;
    padding: 0;
  }
  .invoice-header .header-bottom {
    border-top: 0.1rem solid #eee;
    border-bottom: 0.1rem solid #eee;
    margin: 2rem 0 1rem 0;
  }
  .invoice-header .header-bottom td {
    border: 0;
    padding: 1.5rem 0;
  }
  @page {
    size: A4;
  }
}


/* ------------------------------------------------------------------------------
*
*  # Pick-a-date - Picker base
*
*  The mobile-friendly, responsive, and lightweight jQuery date & time input picker
*
* ---------------------------------------------------------------------------- */
.picker {
  width: 100%;
  text-align: left;
  position: absolute;
  top: 44%;
  margin-top: -1px;
  z-index: 1070;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.picker__input {
  cursor: default; }

.picker__holder {
  width: 100%;
  overflow-y: auto;
  position: absolute;
  display: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-top-width: 0;
  border-bottom-width: 0;
  max-width: 18.13rem;
  outline: 0;
  -webkit-overflow-scrolling: touch;
  border-bottom-right-radius: 0.1875rem;
  border-bottom-left-radius: 0.1875rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); }
  .picker--opened .picker__holder {
    max-height: 480px;
    border-top-width: 1px;
    border-bottom-width: 1px;
    display: block; }
/* ------------------------------------------------------------------------------
*
*  # Pick-a-date - Date picker
*
*  The mobile-friendly, responsive, and lightweight jQuery date & time input picker
*
* ---------------------------------------------------------------------------- */
.picker__box {
  padding: 0.9375rem; }

.picker__header {
  text-align: center;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem; }

.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: 0.3125rem;
  margin-right: 0.3125rem; }

.picker__year {
  color: #999;
  font-size: 0.75rem;
  font-weight: normal; }

.picker__select--month,
.picker__select--year {
  border-color: #ddd;
  height: 2.25003rem;
  font-size: 0.8125rem;
  line-height: 1.5385;
  margin-left: 0.3125rem;
  margin-right: 0.3125rem;
  outline: 0;
  white-space: nowrap; }

.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: 0.5rem;
  top: 50%;
  margin-top: -1rem;
  line-height: 1;
  border-radius: 0.1875rem;
  transition: all ease-in-out 0.15s; }
  @media screen and (prefers-reduced-motion: reduce) {
    .picker__nav--prev,
    .picker__nav--next {
      transition: none; } }
  .picker__nav--prev:before,
  .picker__nav--next:before {
    font-family: "icomoon";
    display: block;
    font-size: 1rem;
    width: 1rem;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .picker__nav--prev:hover,
  .picker__nav--next:hover {
    cursor: pointer;
    color: #333;
    background-color: #f5f5f5; }

.picker__nav--prev {
  left: 0; }
  .picker__nav--prev:before {
    content: '\e9c8'; }

.picker__nav--next {
  right: 0; }
  .picker__nav--next:before {
    content: '\e9cb'; }

.picker__nav--disabled, .picker__nav--disabled:hover, .picker__nav--disabled:before, .picker__nav--disabled:before:hover {
  cursor: default;
  background-color: transparent; }

.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-bottom: 0.9375rem; }
  .picker__table td {
    margin: 0;
    padding: 0; }

.picker__weekday {
  width: 14.285714286%;
  text-align: center;
  padding-bottom: 0.46875rem;
  padding-top: 0.9375rem;
  color: #999;
  font-weight: 400; }

.picker__day {
  padding: 0.4375rem;
  min-width: 2.12503rem;
  border-radius: 0.1875rem; }

.picker__day--today {
  position: relative;
  background-color: #f5f5f5; }
  .picker__day--today:before {
    content: "";
    position: absolute;
    top: 0.125rem;
    right: 0.125rem;
    width: 0;
    height: 0;
    border-top: 0.375rem solid #26A69A;
    border-left: 0.375rem solid transparent; }

.picker__day--outfocus {
  color: #ccc; }

.picker__day--infocus,
.picker__day--outfocus {
  transition: all ease-in-out 0.15s; }
  @media screen and (prefers-reduced-motion: reduce) {
    .picker__day--infocus,
    .picker__day--outfocus {
      transition: none; } }
  .picker__day--infocus:hover,
  .picker__day--outfocus:hover {
    cursor: pointer;
    color: #333;
    background-color: #f5f5f5; }

.picker__day--highlighted:before {
  border-top-color: #fff; }

.picker__day--highlighted,
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #fff;
  background-color: #26A69A; }

.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background-color: #26A69A;
  color: #fff; }

.picker__day--disabled, .picker__day--disabled:hover {
  background-color: transparent;
  color: #999;
  cursor: default; }

.picker__day--disabled:before {
  border-top-color: #999; }

.picker__day--highlighted .picker__day--disabled, .picker__day--highlighted .picker__day--disabled:hover {
  background-color: transparent; }

.picker__footer {
  text-align: center; }
  .picker__footer button {
    border: 0;
    padding: 0.4375rem 0.875rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    border-radius: 0.1875rem;
    transition: all ease-in-out 0.15s; }
    @media screen and (prefers-reduced-motion: reduce) {
      .picker__footer button {
        transition: none; } }
    .picker__footer button:hover, .picker__footer button:focus {
      outline: 0;
      color: #333;
      background-color: #f5f5f5; }
    .picker__footer button:before {
      height: 0; }
    .picker__footer button:disabled, .picker__footer button:disabled:hover, .picker__footer button:disabled:focus {
      background-color: transparent;
      color: #999;
      cursor: default; }

.picker__button--today:before {
  content: '';
  margin-right: 0.625rem;
  position: relative;
  display: inline-block;
  top: -0.0625rem;
  width: 0;
  border-top: 0.375rem solid #2196F3;
  border-left: 0.375rem solid transparent; }

.picker__button--close:before {
  content: '\D7';
  display: inline-block;
  position: relative;
  margin-right: 0.625rem;
  top: 0.0625rem;
  line-height: 1;
  font-size: 1rem; }

.picker__button--clear:before {
  content: '';
  display: inline-block;
  position: relative;
  top: -0.1875rem;
  width: 0.5rem;
  margin-right: 0.625rem;
  border-top: 0.125rem solid #F44336; }


.frminr{width:100%;display:block;clear:both; position:relative;}
.form-error{color:#F00; padding-top:5px; font-size:12px;  text-align:right; width:100% !important; padding-right:0px; position:absolute; bottom:-15px;}


input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s;
}
/*# sourceMappingURL=dashboard.css.map */