@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500&family=Poppins:wght@400;500;700&display=swap');
:root {
  /* --background-color: linear-gradient(to bottom, #283048, #859398); */
  --background-color: #fff;
  --font-color: #4e4646;
  --login-input-bg: #fff;
  --login-label-color: #6f6767;
  --border-radius: 3px;
  --border-color: #ddd;
  --border-radius: 5px;
  --box-shadow: 0px 0px 5px 1px rgb(174 174 174);
  --transition: 0.2s ease-out;
  --cart-shadow: rgba(222, 222, 222, 1);
  --add-btn: #e47e4d;
  --product-price-color: #4e4e4e;
  /* --header-gradient: linear-gradient(30deg, #efafa9, #d92927); */
  --header-gradient: #60a5a5;
  --box-container: #acc7c7;
  --box-container-border: #667a7a;
  --level-0: #63686f;
  --level-1: #8e4141;
  --level-2: #47478e;
  --level-3: #47848e;
  --level-4: #bf5f1b;
  --header-font: 'Poppins', sans-serif;
  --content-font: 'Nunito', sans-serif;
}

html {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  background: var(--background-color);
  color: var(--font-color) !important;
  overflow: auto !important;
}

*,
:after,
:before {
  box-sizing: inherit;
}

/** Common Use CSS **/
a {
  text-decoration: none;
  color: var(--font-color);
}

.noScroll {
  overflow: hidden;
}

.noPadding {
  padding: 0 !important;
}

.noPaddingX {
  padding: 15px 0 !important;
}

.noPaddingY {
  padding: 0 15px !important;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

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

.fluid {
  width: 100%;
}

.button {
  border-radius: 0 !important;
}

.input-tb {
  position: relative;
  width: 500px;
  height: 40px;
  background: #fff;
  padding-left: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.input-tb.active {
  width: 502px;
}

select {
  height: 35px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
  padding: 5px 7px;
}

.proceed-search,
.cancel-search {
  position: relative;
  top: 2px;
  width: 40px;
  height: 40px;
  padding-top: 0;
  margin-left: 5px;
  border: none;
  border-radius: var(--border-radius);
  display: none;
}

.cancel-search {
  top: 1px;
  background: #868585;
  color: #fff;
}

.proceed-search i,
.cancel-search i {
  position: relative;
  top: 3px;
  font-size: 16px;
}

.proceed-search i {
  font-size: 18px;
}

.proceed-search {
  background: #228bc3;
  color: #fff;
}

.show {
  display: initial;
}

.card__title {
  font-size: 15px !important;
  font-weight: 600 !important;
}

.card {
  border-radius: var(--border-radius) !important;
  margin: 0 !important;
  background: #fff;
  box-shadow: var(--box-shadow);
}

.card .card_img {
  position: relative;
  margin: 20px auto;
  width: 110px;
  height: 110px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.card .card_img img {
  width: 100%;
}

.card_item {
  position: relative;
  margin: 10px 0;
  font-size: 13px;
}

.card_item_label {
  font-size: 12px;
  color: #9a9696;
  font-weight: bold;
}

.card__content hr {
  border: none;
  border-top: 1px solid #dadce6;
  margin-bottom: 10px;
}

.modal-card-container {
  position: relative;
  height: 500px;
  max-height: 500px;
  overflow: auto;
}

.input-note {
  margin-top: 3px;
  font-size: 12px;
}

.form-container {
  position: relative;
  margin: 0 auto;
  width: 800px;
  padding: 25px;
  background: #fff;
  text-align: left;
  color: var(--font-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: auto;
}

.form-container.small {
  width: 550px;
}

.form-container.xsmall {
  width: 350px;
}

.close-modal-btn {
  position: absolute;
  right: 100px;
  font-size: 22px;
  color: #a99c9c;
  cursor: pointer;
}

.close-cust-modal-btn {
  position: absolute;
  right: 6px;
  font-size: 22px;
  color: #a99c9c;
  cursor: pointer;
}

/* Buttons */
.btn {
  border-radius: var(--border-radius);
  border: none;
  padding: 4px 15px 2px 15px;
  line-height: 32px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  background: lightgrey;
  letter-spacing: 0.5px;
}

.success-btn {
  background: #53a749 !important;
  color: #fff !important;
}

.trigger-action-btn {
  /* background: #4A8FE1 !important; */
  background: #5896bd !important;
  color: #fff !important;
  font-weight: 700;
}

.skipcheck-btn {
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 13px;
  background: #e8900c;
  color: #fff;
}

.add-btn {
  background: var(--add-btn) !important;
  color: #fff !important;
}

.cancel-btn {
  background: #616060 !important;
  color: #fff !important;
  font-weight: 700;
}

.alert-btn {
  background: #e85b5b !important;
  color: #fff !important;
}

.modal-btn-container,
.btn-container,
.alert-modal-btn-container {
  position: relative;
  padding: 0 15px;
  margin-top: 25px;
  text-align: right;
  clear: both;
}

.alert-modal-btn-container {
  text-align: center;
}

.alert-modal-btn-container .btn {
  width: 100px;
}

.fab-btn {
  background: #60a5a5;
  position: fixed;
  padding-top: 5px;
  width: 55px;
  height: 55px;
  bottom: 35px;
  right: 50px;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 0px rgb(206, 203, 203);
  z-index: 98;
  font-size: 25px;
  color: #fff;
}

.fab-btn i {
  position: relative;
  top: -1px;
}

.search-fab {
  background: rgba(152, 95, 109, 0.6);
  position: fixed;
  padding-top: 5px;
  width: 55px;
  height: 55px;
  bottom: 100px;
  right: 50px;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 0px rgb(206, 203, 203);
  z-index: 98;
  font-size: 25px;
  color: #fff;
}

.search-fab i {
  position: relative;
  top: -1px;
}

.card-container {
  position: relative;
  width: 100%;
}

.card-item {
  position: relative;
  padding: 15px;
  word-wrap: break-word;
}

.centerme {
  position: fixed;
  left: 50%;
  top: 73px;
  transform: translateX(-50%);
  border-radius: 5px;
  width: 60%;
  padding: 10px 10px;
  background: #60a5a5;
  margin: 0 auto !important;
}

/** Page Component CSS **/
.login-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.login-header {
  position: relative;
}

.vsales-logo {
  margin: 0 auto;
  width: 120px;
  height: 120px;
  border: 1px solid var(--border-color);
  box-shadow: var(--box-shadow);
  border-radius: 50%;
  background: #fff;
}

.vsales-label {
  margin: 15px 0 50px 0;
  font-size: 38px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.login-box {
  position: relative;
  width: 415px;
  /* background: rgba(0, 0, 0, 0.5); */
  background: #fff;
  border-radius: var(--border-radius);
  /* box-shadow: var(--box-shadow); */
  /* padding: 40px; */
  padding: 15px 40px 15px 40px;
}

.text-input,
.text-input--underbar {
  border: 1px solid #e6e6e6 !important;
  background: #fafafa !important;
  padding: 15px 10px !important;
  height: 40px !important;
}

.forgot-password-label {
  color: #373737;
  font-size: 12px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
}

.text-input,
.text-input--underbar::placeholder {
  font-size: 13px;
}

.text-input:focus {
  border: 1px solid #b2b2b2 !important;
}

.trigger-menu {
  position: fixed;
  bottom: 0;
  width: 30%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.1s ease;
  display: none;
}

.trigger-menu.active {
  bottom: -50px;
}

.trigger-menu div {
  margin: 0 auto;
  width: 100px;
  height: 30px;
  padding-top: 7px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 18px;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.navbar-container {
  width: 941px;
  height: 50px;
  margin: 0 auto;
  display: flex;
}

.navbar-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-item {
  margin: 0 7px;
  margin-top: 10px;
  width: 100px;
  height: 90px;
  background: #60a5a5;
  transition: 0.3s ease-out;
  cursor: pointer;
  font-size: 9.3px;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
}

.navbar-item i {
  font-size: 26px;
}

.navbar-item.admin {
  background: #60a5a5;
  color: #fff;
}

.navbar-item img {
  margin-bottom: 5px;
}

.navbar-item:hover {
  background: #667a7a;
}

.navbar-item.admin:hover {
  background: #667a7a;
}

.menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
}

.menu-wrapper.active {
  z-index: 10003;
  opacity: 1;
}

.menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 590px;
}

.filter-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #60a5a5;
}

.filter-wrapper.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10003;
}

.filter-wrapper {
  z-index: 10002;
}

.trigger-menu {
  z-index: 10003;
}

.input-container,
.page-header-container,
.filter-container {
  position: relative;
  margin: 15px auto;
  width: 600px;
}

.page-header-container {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-container {
  position: relative;
  padding: 15px;
  background: #fff;
  top: -20px;
  transition: var(--transition);
  border-radius: var(--border-radius);
  opacity: 0;
}

.filter-container.active {
  top: 0;
  opacity: 1;
}

.filter-container label {
  font-size: 20px;
  font-weight: 500;
}

.content-container {
  position: fixed;
  width: 100%;
  top: 70px;
  bottom: 0;
  overflow: auto;
}

/* .add-staff-btn{
    z-index: 99;
}

.add-staff-btn.active{
    z-index: 97;
} */

.header-form {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}

.header-line {
  margin: 15px auto;
  width: 35px;
  height: 4px;
  background: orange;
}

.header-line-left {
  margin: 15px 0;
  width: 35px;
  height: 4px;
  background: orange;
}

.staff-card,
.customer-card,
.ratecard-card {
  cursor: pointer;
  padding: 2px !important;
}

.customer-card {
  height: 426px;
}

.ratecard-card {
  height: auto;
}

.card_header {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  height: 65px;
  padding: 0 15px;
  background: var(--header-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 70px;
  line-height: 1.3;
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
}

.purple {
  background: linear-gradient(45deg, #62676d, #9eb7b1);
}

.card_header.admin {
  background: #f18342;
}

.card__content {
  padding: 15px !important;
  background: #fff;
  border-bottom-right-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}

.form-wizard-steps {
  margin: auto;
  overflow: hidden;
  position: relative;
  margin: 20px 0;
}

.form-wizard-step {
  padding: 15px 0 11px 0 !important;
  border: 2px solid #fff;
  background: #e4e3e3;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
}

.form-wizard-step i {
  font-size: 22px;
}

.form-wizard-step.active {
  background: #58b0ef;
}

.form-wizard-step.activated {
  background: #58b0ef;
}

.form-wizard-tolal-steps-3 .form-wizard-step {
  position: relative;
  float: left;
  width: 33.33%;
  padding: 0 5px;
}

.form-wizard-tolal-steps-4 .form-wizard-step {
  position: relative;
  float: left;
  width: 25%;
  padding: 0 5px;
}

.form-wizard-step.activated {
  color: #fff;
  font-weight: bold;
}

.form-wizard-step.active {
  color: #fff;
  font-weight: bold;
}

.form-wizard fieldset {
  display: none;
  text-align: left;
  border: 0px !important;
}

.form-wizard-buttons {
  margin-top: 25px;
  text-align: right;
}

fieldset {
  padding: 0;
}

.form-wizard-content {
  position: relative;
  padding: 15px;
  border: 1px solid var(--border-color);
}

.customer-added {
  text-align: center;
  padding: 30px 15px;
  font-size: 20px;
  font-weight: bold;
}

.customer-added i {
  font-size: 2em;
}

.btn-next {
  background: #438ee6;
  color: #fff;
}

.btn-previous {
  background: #989696;
  color: #fff;
}

.form-wizard .input-error {
  border: 1px solid #ea2803 !important;
}

.tab_container {
  position: relative;
}

.menu-container {
  position: relative;
  height: 35px;
}

.menu-container.setting-menu .menu {
  width: 100px;
  height: 60px;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-container.setting-menu .menu.current {
  background: var(--box-container);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.menu {
  position: relative;
  width: 50%;
  text-align: center;
  padding: 12px 0;
  float: left;
  transition: 0.3s ease;
  cursor: pointer;
  border-bottom: 2px solid #ddd;
}

.menu:hover {
  color: #60a5a5;
}

.menu.current {
  color: #fff;
  font-weight: bold;
}

.line {
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #ddd;
  transform: scale(0);
  transition: 0.3s ease;
}

.line.current {
  transform: scale(1);
  background: #58b0ef;
}

.menu:hover .line {
  transform: scale(1);
  background: #58b0ef;
}

.tab-content-container {
  width: 100%;
  clear: both;
}

.tab-content-container.setting-tab {
  background: var(--box-container);
  padding: 0 15px;
}

.content {
  display: none;
  padding: 15px 0;
}

.content.current {
  display: inherit;
}

.tab-content-header {
  font-size: 16px;
  font-weight: bold;
  padding-left: 8px;
}

.tab-content-line {
  margin: 10px 0 7px 8px;
  margin-left: 8px;
  width: 25px;
  height: 4px;
  background: orange;
}

.tab-content-segment {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px;
  padding-top: 12px;
}

.halfhalf {
  position: relative;
  display: inline-block;
  width: 49%;
}

.additional-detail-content {
  position: relative;
  height: 370px;
}

.additional-detail-btn {
  position: absolute;
  width: 100%;
  padding: 15px;
  bottom: 0px;
  left: 0;
}

.add-additional-btn {
  position: absolute !important;
  bottom: 5px;
  right: 5px !important;
  padding-top: 3px !important;
  z-index: 99;
}

.segment-container {
  position: relative;
  width: 100%;
  padding: 15px;
  background: #fff;
  border-radius: var(--border-radius);
}

.setting-container {
  padding: 0 15px;
  margin-top: 25px;
}

.setting-item {
  position: relative;
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

.tnc-item,
.customer-category-item {
  height: 60px;
}

.customer-category-item {
  margin: 5px 0;
}

.setting-item:not(:first-of-type) {
  margin-top: 10px;
}

.setting-tnc-btn {
  position: absolute;
  right: 10px;
  top: 10px;
}

.tnc-btn,
.add-staff-btn {
  position: absolute;
  top: 12px;
  right: 0;
  font-weight: 600;
  font-size: 12px;
}

.tnc-tb,
.customer-category-tb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 58px;
  padding-left: 15px;
  border: none;
  border-radius: var(--border-radius);
}

.customer-category-tb {
  font-size: 16px;
}

.idformat-item-container {
  position: relative;
  display: flex;
  color: #fff;
}

.idformat-item {
  float: left;
  width: 25%;
  padding: 10px;
  text-align: center;
}

.idformat-item input {
  font-size: 16px;
}

.idformat-item span {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  top: 10px;
}

.transparent-tb {
  width: 100%;
  height: 35px;
  padding-left: 10px;
  border: none;
  background: transparent;
  font-family: "Montserrat", sans-serif !important;
}

.transparent-ta {
  width: 100%;
  height: 150px;
  border: none;
  font-family: "Montserrat", sans-serif !important;
}

.pos-item-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background: #fff;
}

.pos-cart-container {
  position: fixed;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  padding: 0 15px;
  background: #f1f5f6;
  z-index: 4;
}

.pos-item-topbar {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 75%;
  height: 60px;
  background: var(--background-color);
  z-index: 3;
}

.pos-category-container {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 85px;
  width: 18%;
  height: 100%;
  max-height: 100%;
  background: var(--background-color);
  z-index: 2;
  overflow: auto;
}

.pos-ratecard-container {
  position: fixed;
  top: 0;
  left: 18%;
  padding-top: 60px;
  width: 57%;
  height: 100%;
  max-height: 100%;
  overflow: auto;
  /* background: #FBFCFE; */
  background: var(--box-container);
}

.pos-ratecard__grid {
  display: flex;
  flex-wrap: wrap;
  padding: 8px;
}

.pos-ratecard__item {
  position: relative;
  width: 25%;
  padding: 8px;
}

.pos-ratecard__content {
  position: relative;
  background: #fff;
  border-radius: 5px;
  box-shadow: rgb(0 0 0 / 10%) 0px 4px 6px -1px, rgb(0 0 0 / 6%) 0px 2px 4px -1px;
}

.pos-ratecard__img {
  position: relative;
  margin: 0 auto;
  width: 10vw;
  height: 10vw;
  background-color: #fff;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pos-ratecard__img img {
  width: 100%;
  display: block;
}

.freeshipping-label {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: bold;
  border-top-right-radius: 5px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  z-index: 1;
}

.pos-ratecard__detail {
  padding: 10px 10px;
  border-top: 1px solid #ddd;
}

.pos-product__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2px;
  text-align: left;
  font-weight: normal;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2; 
  -webkit-box-align: center;
  overflow: hidden;
  height: 36px;
}

.pos-product__detail {
  position: relative;
  margin-top: 10px;
  font-size: 12px;
  color: #919191;
}

#retailprice,
#myprice {
  font-weight: 600;
}

.pos-product__detail span {
  font-weight: 500;
  float: right;
  color: #333;
}

.pos-product__detail span.oos {
  color: #f44336;
}

.pos-ratecard-grid {
  position: relative;
}

.pos-ratecard-item,
.add-new-product {
  position: relative;
  width: 25%;
  float: left;
  text-align: center;
  padding: 15px;
  height: 265px;
}

.pos-ratecard-img {
  position: relative;
  width: 11.7vw;
  height: 11.7vw;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: var(--border-radius);
  border: 3px solid #fff;
  box-shadow: 0px 0px 5px 0px var(--cart-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pos-ratecard-img img {
  width: 100%;
  border-radius: var(--border-radius);
  display: block;
}

.pos-product-name {
  margin-top: 7px;
  font-weight: 600;
  color: #333;
  font-size: 13px;
  margin-bottom: 3px;
}

.pos-product-sku {
  margin-top: 5px;
  font-size: 11px;
  font-style: italic;
  color: #464646;
}

.pos-product-price {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 500;
  color: var(--product-price-color);
}

.add-product-btn {
  position: fixed;
  bottom: 25px;
  left: 20%;
  width: 50px;
  height: 50px;
  background: var(--add-btn);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
}

.add-product-btn img {
  width: 100%;
}

.add-category-btn {
  position: relative;
  margin-bottom: 15px;
  width: 100%;
  height: 40px;
  background: var(--add-btn);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 700;
}

.category-item-container {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.category-item-label {
  position: relative;
  padding: 8px 15px;
  color: #333;
}

.category-item-label.selected {
  font-weight: 800;
  background: #5f6369;
  color: white;
}

/* .category-item-container.selected{
    font-weight: 800;
    color: #599aea;
} */

.category-item-label i {
  position: absolute;
  top: 10px;
  right: 15px;
}

.subcategory-item-container {
  position: relative;
  font-weight: 600;
  font-size: 12px;
  text-transform: capitalize;
}

.subcategory-item {
  padding: 10px 15px;
  color: #444863;
}

.subcategory-item.selected {
  background: #599aea;
}

.logo-container {
  position: relative;
  width: 18%;
  text-align: center;
  padding-top: 5px;
}

.logo-container img {
  height: 50px;
}

.current-user-container {
  position: relative;
  width: 24%;
  padding: 10px;
  padding-left: 75px;
  height: 60px;
  margin-bottom: 15px;
  background: #60a5a5;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
}

.current-user-name {
  font-weight: 700;
  font-size: 14px;
}

.search-ratecard-container {
  position: relative;
  float: left;
  width: 76%;
  padding: 10px 15px;
  background: #60a5a5;
  border-radius: 5px;
  display: flex;
}

.search-dropdown-container {
  position: relative;
  width: 30%;
  padding-right: 10px;
}

.search-dropdown-container select {
  margin-top: 0;
}

.barcode-scanner-container {
  position: relative;
  width: 100%;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: var(--border-radius);
}

.barcode-scanner-container.pos-scanner {
  width: 70%;
}

.submit-search-item {
  position: absolute;
  top: 2px;
  right: 48px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  background: transparent;
  color: #a7a1a1;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clear-search-item {
  position: absolute;
  top: 8px;
  right: 5px;
  width: 45px;
  height: 25px;
  font-size: 12px;
  background: #a7a1a1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius);
}

.search-tb {
  width: 100%;
  height: 40px;
  background: transparent;
  padding-left: 10px;
  border: none;
  border-radius: var(--border-radius);
}

.search-tb::placeholder {
  font-weight: 600;
  color: #aaa;
}

.pos-cart-topbar {
  position: relative;
  height: 60px;
  border-bottom: 1px solid #ddd;
}

.total-cart-label {
  position: relative;
  top: 19px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.pos-customer-btn {
  position: absolute;
  top: 13px;
  right: 0;
  width: 120px;
  height: 35px;
  background: var(--add-btn);
  color: #fff;
  border: none;
  font-size: 12px;
  border-radius: var(--border-radius);
  font-weight: 700;
  z-index: 6;
}

.pos-receipt-detail {
  position: relative;
  padding: 7px 0;
  color: #333;
}

.customer-assign-container {
  position: relative;
  line-height: 1.5;
  margin-bottom: 5px;
}

.customer-assign-name {
  color: #444863;
  font-size: 12px;
}

.customer-assign-address {
  font-size: 12px;
  margin-top: 3px;
}

.customer-assign-container label {
  font-weight: 600;
  font-size: 12px;
}

.date-receipt-container {
  margin-top: 10px;
  color: #444863;
}

.item-list-wrapper {
  position: fixed;
  width: 25%;
  height: 100%;
  top: 0;
  right: 0;
  padding: 245px 15px 170px 15px;
}

.item-list-scanner-container {
  position: fixed;
  top: 141px;
  right: 0;
  width: 25%;
  padding: 15px;
  z-index: 5;
  background: var(--background-color);
}

.item-list-container {
  position: relative;
  min-height: 100%;
  max-height: 100%;
  border-top: 3px solid #aaa;
  border-bottom: 3px solid #aaa;
  overflow: auto;
}

/* #itemlist{
    margin-top: 57px;
} */

#itemlist {
  margin-top: 5px;
}

.item-list {
  position: relative;
  padding: 10px 0;
}

.item-list:not(:first-of-type) {
  border-top: 1px solid #ddd;
}

.item-list-detail {
  line-height: 1.5;
}

.item-list-name {
  font-size: 12px;
  font-weight: 500;
}

.item-list-price {
  position: relative;
  top: -2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--product-price-color);
}

.item-list-qty {
  position: absolute;
  bottom: 13px;
  right: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--product-price-color);
}

.delete-item-list {
  position: absolute;
  top: 25px;
  right: 0;
  font-size: 14px;
  color: #929292;
  cursor: pointer;
}

.total-detail-container {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 25%;
  padding: 15px;
  line-height: 1.5;
}

.total-amount,
.total-shipping {
  float: right;
  font-weight: 500;
}

.total-profit {
  float: right;
  font-weight: bold;
}

.checkout-btn,
.clear-btn {
  position: relative;
  margin-top: 15px;
  width: 68%;
  height: 40px;
  background: #3865ab;
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

.clear-btn {
  width: 30%;
  background: #807b7b;
}

.existing-customer-container {
  position: relative;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  height: 345px;
}

.anonymous-note {
  /* position: relative;
    padding: 15px;
    border: 1px solid #85b3e8;
    border-radius: var(--border-radius);
    background: #eaf1ff; */
  margin-top: 6px;
  font-size: 12px;
  font-style: italic;
  color: darkslategrey;
}

.existing-customer-name {
  font-size: 18px;
  font-weight: 700;
}

.existing-customer-remarks {
  clear: both;
  position: relative;
  font-weight: bold;
  top: 15px;
  color: #9a9696;
  font-weight: normal;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif !important;
}

.remarks-ta {
  display: block;
  width: 514px;
  max-width: 514px;
  min-width: 514px;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  border: none;
  font-size: 12px;
  font-family: "Montserrat", sans-serif !important;
}

.existing-customer-detail-container {
  position: relative;
  padding-left: 200px;
}

.existing-customer-img {
  position: absolute;
  top: 15px;
  left: 0;
  width: 180px;
  height: 180px;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  /* border: 1px solid #ddd; */
}

.existing-customer-half {
  float: left;
  width: 50%;
}

.existing-customer-item {
  margin-top: 13px;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif !important;
}

.existing-customer-item label {
  color: #9a9696;
  font-style: normal;
  letter-spacing: 0;
}

.add-new-customer-btn {
  background: var(--add-btn);
}

.status-checked {
  display: none;
}

.save-setting-item,
.delete-setting-item {
  font-size: 16px;
}

/** All Contents Below Mobile Size **/
@media (max-width: 520px) {
  .vsales-logo {
    width: 100px;
    height: 100px;
  }

  .vsales-label {
    font-size: 25px;
  }

  .login-box {
    width: 100%;
    padding: 25px;
  }

  /* .navbar{
        width: 25%;
    }

    .navbar-item{
        width: 65px;
        height: 65px;
    }

    .navbar-item:hover{
        margin-top: 30px !important;
    } */

  .login-container form {
    width: 85%;
  }

  .contact-note {
    position: fixed !important;
    width: 85%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px !important;
    right: 5px !important;
    text-align: center;
  }
}

/** All Contents Below Ipad Size **/
@media (max-width: 1024px) {

  .pos-ratecard-item,
  .add-new-product {
    padding: 15px;
    height: 215px;
  }

  .total-cart-label {
    top: 21px;
    font-size: 16px;
  }

  .input-container,
  .page-header-container,
  .filter-container {
    width: 500px;
  }

  .input-tb {
    width: 400px;
  }

  .input-tb.active {
    width: 402px;
  }
}

/** All Content Above HiDPI Screen Size **/
@media (min-width: 1440px) {
  .pos-ratecard-item {
    height: 310px;
  }
}

/* Modal CSS */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-wrapper.active {
  z-index: 10004;
  opacity: 1;
}

#customerselection.modal-wrapper.active {
  z-index: 100;
  opacity: 1;
}

.modal-wrapper.scrollable {
  padding: 35px 0;
  overflow: auto;
  align-items: inherit;
  justify-content: inherit;
}

.modal-scroll-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  display: flex;
  padding: 35px 0;
  overflow: auto;
}

.modal-scroll-wrapper.active {
  z-index: 10004;
  opacity: 1;
}

/* Input Field */
.form-item {
  padding: 0 15px;
}

.field {
  position: relative;
}

.field label {
  font-weight: 600;
}

.field .form-input,
.form-select {
  margin-top: 3px;
}

.form-input,
.form-select {
  font-family: "Montserrat", sans-serif !important;
  position: relative;
  width: 100%;
  height: 40px;
  background: #fff;
  padding-left: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 12px;
  color: var(--font-color);
}

/* Grid */
.grid {
  position: relative;
  width: 100%;
}

.grid>.row {
  position: relative;
  width: 100%;
  padding: 10px 0;
  clear: both;
  display: table;
}

.grid>.row>.column {
  position: relative;
  float: left;
}

.column {
  width: 100%;
}

.column.one {
  width: 100%;
}

.column.two {
  width: 50%;
}

.column.three {
  width: 33.3%;
}

.column.twothird {
  width: 66.7%;
}

.column.four {
  width: 25%;
}

.menu-burger {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4b7a7a;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}

.company-name {
  position: absolute;
  top: 0;
  left: 70px;
  width: 230px;
  height: 70px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 15px;
  color: #fff;
  font-family: var(--header-font);
}

.navbar-btn-container {
  position: absolute;
  top: 15px;
  right: 15px;
}

.category-item {
  position: relative;
}

.category-title {
  position: relative;
}

.category-title input {
  font-size: 16px;
}

/* .add-sub-category{
    position: absolute;
    right: 50px;
    top: -5px;
    font-size: 12px;
}

.delete-category{
    position: absolute;
    right: 0;
    top: -5px;
    font-size: 12px;
} */

.category-footer-btn {
  position: relative;
  font-size: 12px;
}

.delete-sub-category {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 12px;
}

.save-sub-category {
  position: absolute;
  right: 50px;
  top: 5px;
  font-size: 12px;
}

.category-container {
  position: relative;
  margin: 5px 0;
}

.sub-category-container {
  position: relative;
}

.sub-category-item {
  position: relative;
  height: 48px;
  background: #fff;
  margin: 5px 0;
  border-radius: var(--border-radius);
}

.sub-category-item input {
  height: 48px;
  font-size: 16px;
}

.setting-btn {
  background: #888888;
  color: #fff;
}

.login-as-container {
  position: absolute;
  top: 0;
  right: 125px;
  padding: 15px;
  width: 192px;
  max-width: 192px;
  height: 70px;
  background: #667a7a;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
}

.login-as-container label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--header-font);
}

.login-as-name {
  font-size: 14px;
  font-family: var(--content-font);
}

.back-to-modules {
  background: rgb(216 128 108);
  position: fixed;
  padding-top: 5px;
  width: 45px;
  height: 45px;
  bottom: 15px;
  left: 15px;
  border: none;
  border-radius: 10px;
  z-index: 98;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
}

.marketing-wrapper {
  position: relative;
  padding: 0 15px;
}

.sms-wrapper {
  position: relative;
  width: 35%;
  padding: 5px;
  float: left;
}

.sms-container {
  position: relative;
  border: 1px solid #a9a6a6;
  background: #fff;
}

.sms-header {
  position: relative;
  width: 100%;
}

.sms-note {
  position: relative;
  width: 50%;
  float: left;
  padding: 10px;
  font-size: 11px;
  border-right: 1px solid #a9a6a6;
}

.sms-balance {
  position: relative;
  width: 50%;
  float: left;
  padding: 10px;
  font-size: 11px;
}

.topup-balance-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff8d00;
  border: none;
  padding: 9px 12px;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sms-body {
  position: relative;
  border-top: 1px solid #a9a6a6;
  clear: both;
}

.sms-ta {
  padding: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
  background: none;
  border: none;
  vertical-align: top;
}

.sms-footer {
  position: relative;
  padding: 10px;
  border-top: 1px solid #a9a6a6;
  font-size: 11px;
}

.recipient-wrapper {
  position: relative;
  width: 65%;
  padding: 5px;
  float: left;
}

.recipient-container {
  position: relative;
  border: 1px solid #a9a6a6;
  background: #fff;
}

.recipient-header {
  position: relative;
  width: 100%;
}

.recipient-categories {
  position: relative;
  width: 40%;
  float: left;
  padding: 10px;
  font-size: 11px;
  border-right: 1px solid #a9a6a6;
}

.recipient-static {
  position: relative;
  width: 60%;
  float: left;
  font-size: 11px;
}

.recipient-item {
  position: relative;
  padding: 5px;
  padding-top: 13px;
  width: 25%;
  height: 67px;
  float: left;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}

.recipient-item:not(:first-of-type) {
  border-left: 1px solid #a9a6a6;
}

.recipient-item label {
  font-size: 11px;
  font-weight: normal;
}

.recipient-body {
  position: relative;
  border-top: 1px solid #a9a6a6;
  clear: both;
  padding: 10px;
}

.sms-btn-container {
  position: relative;
  clear: both;
  top: 15px;
  text-align: right;
  padding-right: 20px;
}

.checkout-container {
  position: relative;
  width: 700px;
  background: #fff;
  border-radius: var(--border-radius);
}

.checkout-amt-due {
  position: relative;
  padding: 15px;
  text-align: center;
  font-size: 22px;
  line-height: 1;
  border-bottom: 1px solid var(--border-color);
}

.checkout-amt-due label {
  font-weight: bold;
  font-size: 14px;
}

.checkout-payment-container {
  position: relative;
  width: 100%;
  padding-left: 120px;
}

.checkout-payment-selection {
  position: absolute;
  top: 0;
  left: 0;
}

.payment-selection-item {
  position: relative;
  width: 120px;
}

.payment-selection-item.active {
  color: #3b85e2;
}

.payment-selection-box {
  position: relative;
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  line-height: 1.7;
  font-size: 12px;
  cursor: pointer;
}

.payment-selection-box:hover {
  background: #e9e9e9;
}

.payment-selection-box i {
  position: relative;
  font-size: 2em;
}

.checkout-payment-tab {
  position: relative;
  width: 100%;
  height: 480px;
  border-left: 1px solid var(--border-color);
}

.checkout-payment-content {
  display: none;
}

.checkout-payment-content.current {
  display: inherit;
}

.cash-container {
  position: relative;
  width: 100%;
}

.calculator-container {
  position: relative;
  width: 360px;
  float: left;
}

.cal-num {
  position: relative;
  width: 120px;
  height: 120px;
  float: left;
  background: #fbfbfb;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  font-size: 2em;
}

.cal-num:active {
  background: #f9f9f9;
}

.amount-detail-container {
  position: relative;
  width: 219px;
  height: 480px;
  float: left;
}

.amount-item {
  position: relative;
  text-align: right;
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
}

.amount-item label {
  font-weight: 600;
}

.cal-display {
  position: relative;
  margin-top: 5px;
  width: 100%;
  height: 40px;
  border: none;
  background: transparent;
  font-family: "Montserrat", sans-serif !important;
  text-align: right;
  font-size: 2em;
  overflow: hidden;
}

.complete-checkout-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
}

.complete-checkout-btn {
  position: relative;
  width: 100%;
  font-weight: 800;
  padding: 15px;
  font-size: 2em;
}

.cancel-checkout-btn {
  position: relative;
  width: 100%;
  font-weight: 600;
  margin-top: 10px;
}

.payment-container {
  position: relative;
  width: 579px;
  height: 480px;
  text-align: center;
  padding: 50px;
}

.payment-container label {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.payment-tb {
  position: relative;
  margin-top: 20px;
  width: 100%;
  height: 50px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding-left: 15px;
}

.proceed-payment-btn {
  position: relative;
  margin-top: 20px;
  width: 100%;
  font-weight: 800;
  padding: 8px;
  font-size: 18px;
}

.statistic-container {
  padding: 0 15px;
}

.statistic-header-wrapper {
  width: 900px;
  margin: 0 auto;
}

.statistic-header-container {
  padding: 15px;
}

.dashboard-statistic {
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1px;
  margin: 15px 0;
}

.dashboard-statistic-header {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  background: var(--header-gradient);
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
}

.dashboard-statistic-header i {
  position: absolute;
  right: 15px;
  top: 14px;
  font-size: 1.5em;
  color: #fff !important;
}

.dashboard-statistic label {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  /* color: #AEB7C0; */
  color: #fff;
}

.dashboard-statistic-value {
  margin-top: 5px;
  padding: 10px 15px 12px 15px;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  font-family: var(--content-font);
}

.sales-update-container {
  position: relative;
  background: #f8ebd8;
  padding: 15px 0 25px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sales-update-header {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sales-update-item {
  position: relative;
  background: var(--header-gradient);
  border: 1px solid #c7cfea;
  border-radius: var(--border-radius);
  color: #fff;
}

.sales-update-top,
.sales-update-btm {
  position: relative;
  padding: 20px 15px;
  text-align: center;
}

.sales-update-top {
  border-bottom: 1px solid #d4e7f9;
}

.sales-update-top i {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 3em;
}

.salesup {
  color: #49d060 !important;
}

.salesdown {
  color: #de6565 !important;
}

.sales-update-top label,
.sales-update-btm label {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  color: #fff;
}

.sales-update-value {
  margin-top: 5px;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 1px;
}

.top10-container {
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
  color: var(--font-color);
  text-transform: capitalize;
  letter-spacing: 0;
  margin-top: 15px;
}

.top10-header {
  position: relative;
  padding: 15px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  background: var(--header-gradient);
  /* color: #AEB7C0; */
  color: #fff;
  border-bottom: 1px solid var(--border-color);
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
}

.top10-content {
  position: relative;
  padding: 15px;
}

.top10-content-item {
  clear: both;
  padding: 8px 0;
  margin-bottom: 15px;
  font-size: 12px;
}

.hotselling-desc {
  position: relative;
  width: 60%;
  float: left;
}

.hotselling-qty {
  position: relative;
  width: 20%;
  float: left;
}

.hotselling-val {
  position: relative;
  width: 20%;
  float: left;
}

.hotselling-desc label,
.hotselling-qty label,
.hotselling-val label {
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
}

.top10-cust {
  position: relative;
  width: 75%;
  float: left;
}

.top10-totalsales {
  position: relative;
  width: 25%;
  float: left;
}

.top10-cust label,
.top10-totalsales label {
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
}

.customer-company {
  position: relative;
  margin-top: 10px;
}

.inventory-container {
  position: relative;
  padding: 15px;
  border: 1px solid var(--border-color);
}

.table {
  border-collapse: collapse;
  width: 100%;
}

.table td,
.table th {
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 12px;
}

.table tr:nth-child(even) {
  background-color: #fff;
}

.table tr:hover {
  background-color: #fff;
  cursor: pointer;
}

.table th {
  text-align: left;
  background: #f9fafb;
  color: rgba(0, 0, 0, 0.87);
}

#inventorytable {
  border-collapse: collapse;
  width: 100%;
}

#inventorytable td,
#inventorytable th {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 12px;
}

#inventorytable tr:nth-child(even) {
  background-color: #f5f5f5;
}

#inventorytable tr:hover {
  background-color: #f5f5f5;
  cursor: pointer;
}

#inventorytable th {
  text-align: left;
  background: #73a7bb;
  color: white;
}

.current-stock {
  padding: 3px 6px;
  background: grey;
  font-size: 11px;
  border-radius: var(--border-radius);
  color: #fff;
}

.add-stock-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 12px;
  font-weight: 600;
}

.customer-address-container,
.company-contact-container {
  position: relative;
  margin-top: 10px;
  padding: 15px 0 10px 0;
  width: 100%;
  border: 1px solid #c7cfea;
  background: #d4e7f9;
  border-radius: var(--border-radius);
  display: none;
}

.customer-address-header,
.company-contact-header {
  position: relative;
  padding: 0 15px;
  padding-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #898b8c;
}

.customer-address-btn,
.company-contact-btn {
  position: absolute;
  top: 0;
  left: 15px;
  font-size: 13px;
  background: #e8900c;
  color: #fff;
}

.tnc-title {
  font-weight: 600;
  padding-bottom: 4px;
}

.back-label-input {
  position: relative;
  margin-top: 3px;
  width: 100%;
  height: 40px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.back-label-input input {
  width: 100%;
  height: 38px;
  border: none;
  border-radius: var(--border-radius);
  padding-left: 10px;
}

.input-label {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: #ff8100;
  color: #fff;
  font-weight: bold;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-label i {
  font-size: 16px;
}

.input-label-date {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  color: #999;
  font-weight: bold;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-label-date i {
  font-size: 16px;
}

.input-label-tax {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: #985e6d;
  color: #fff;
  font-weight: bold;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-label-tax i {
  font-size: 16px;
}

.box {
  position: relative;
  width: 232px;
  height: 232px;
  margin: 0 auto;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.box.customer-box {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.upload-options {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 45px;
  height: 45px;
  background-color: rgb(95, 158, 160, 0.8);
  cursor: pointer;
  overflow: hidden;
  text-align: center;
}

/* .upload-options:hover {
    background-color: #7fb1b3;
  } */
.upload-options input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.upload-options label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
}

.upload-options label::after {
  content: "+";
  position: absolute;
  font-size: 33px;
  font-weight: bold;
  /* color: #e6e6e6; */
  color: #fff;
  z-index: 0;
}

.upload-options label span {
  display: inline-block;
  width: 50%;
  height: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}

.upload-options label span:hover i.material-icons {
  color: lightgray;
}

.js--image-preview {
  height: 232px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-image: url("../img/noimg.jpg");
  background-color: white;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.js--image-preview.ratecard-preview {
  background: #fff;
  background-image: url("../img/noimg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.js--image-preview.customer-preview {
  height: 350px;
  background: #fff;
  background-image: url("../img/default-profile.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.dob-tb {
  position: relative;
  width: 100%;
  height: 40px;
  background: #fff;
  padding-left: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.date-dd,
.date-mm,
.date-yy {
  float: left;
  text-align: center;
}

.date-dd {
  width: 30%;
  padding-right: 3px;
}

.date-mm {
  width: 30%;
  padding: 0 3px;
}

.date-yy {
  width: 40%;
  padding-left: 3px;
}

.custom-grid-container {
  position: relative;
}

.custom-grid-img {
  position: relative;
  float: left;
  width: 27%;
  padding-top: 25px;
}

.custom-grid-content {
  position: relative;
  float: left;
  width: 73%;
}

.custom-grid-img-rc {
  position: relative;
  float: left;
  width: 31%;
  padding-top: 25px;
}

.custom-grid-content-rc {
  position: relative;
  float: left;
  width: 69%;
}

.custom-grid-content label {
  font-size: 12px;
}

/* .edit-customer-btn{
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: cadetblue;
    color: #fff;
    border: none;
    font-size: 18px;
  } */

.view-customer-btn {
  position: absolute;
  bottom: 20px;
  /* right: 63px; */
  right: 20px;
  width: 40px;
  height: 40px;
  background: cadetblue;
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.view-customer-btn:hover {
  background: #ff8d00;
}

/* .customer-img-container{
      position: relative;
      width: 40%;
      float: left;
  } */

.customer-form-container {
  position: relative;
  margin: 0 auto;
  background: #fff;
  text-align: left;
  color: var(--font-color);
  border-radius: var(--border-radius);
}

.customer-detail-container {
  position: relative;
}

.customer-img-container {
  position: relative;
  width: 350px;
  height: 460px;
  border-right: 1px solid #ddd;
  border-top-left-radius: var(--border-radius);
}

.customer-img {
  width: 350px;
  height: 350px;
  border-bottom: 1px solid #ddd;
}

.customer-img img {
  border-radius: var(--border-radius);
}

.customer-name-container {
  position: relative;
  padding: 15px 0;
}

.customer-name {
  font-weight: bold;
}

.customer-date-join {
  margin-top: 3px;
  color: grey;
  font-size: 12px;
}

.customer-content-container {
  position: relative;
  width: 650px;
  height: 460px;
}

.customer-detail-header {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  border-bottom: 1px solid #ddd;
}

.customer-detail-header label {
  position: relative;
  top: 1px;
  font-weight: bold;
  font-size: 18px;
}

.customer-content {
  position: relative;
  padding: 0 15px;
}

.customer-content-item-container {
  position: relative;
}

.customer-content-item-header {
  margin-top: 10px;
  width: 100%;
  font-weight: 600;
}

.customer-content-item {
  position: relative;
  width: 100%;
  font-size: 13px;
  margin: 10px 0;
}

.customer-content-item-half {
  position: relative;
  width: 50%;
  float: left;
  font-size: 13px;
  margin: 8px 0;
}

.customer-content-item-three {
  position: relative;
  width: 33.3%;
  float: left;
  font-size: 13px;
  margin: 8px 0;
}

.customer-content-item-four {
  position: relative;
  width: 25%;
  float: left;
  font-size: 13px;
  margin: 8px 0;
}

.customer-content-item-email {
  position: relative;
  width: 66.6%;
  float: left;
  font-size: 13px;
  margin: 8px 0;
}

.customer-content-item-name {
  position: relative;
  width: 33.3%;
  float: left;
  font-size: 13px;
  margin: 8px 0;
}

.customer-content-item-label {
  font-size: 12px;
  font-weight: bold;
  color: #ababab;
}

.customer-transaction-history {
  position: relative;
  clear: both;
  border-top: 1px solid #ddd;
  padding: 15px;
}

.table-transaction-container {
  padding: 15px;
  border: 1px solid #ddd;
}

.table-transaction-label {
  font-weight: 600;
  margin-bottom: 15px;
}

.edit-customer-detail {
  position: absolute;
  /* top: 6px; */
  right: 55px;
  /* font-weight: 600; */
  /* border: none; */
  /* background: #7a94e6; */
  /* color: #fff; */
  /* font-size: 11px; */
  /* letter-spacing: .5px; */
  /* text-transform: uppercase; */
}

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em;
  height: 35px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

.expense-table-wrapper {
  position: relative;
  width: 100%;
  padding: 25px;
}

.expense-table-container {
  position: relative;
  width: 100%;
  padding: 25px;
  background: var(--box-container);
  border: 1px solid var(--box-container-border);
  border-radius: var(--border-radius);
}

.expense-table th,
td {
  border: none;
}

table.dataTable.no-footer {
  border-bottom: 1px solid #bbb !important;
}

table.dataTable thead th,
table.dataTable thead td {
  font-size: 12px;
}

table.dataTable tbody th,
table.dataTable tbody td {
  font-size: 12px;
  padding: 10px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  background: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: var(--border-radius);
}

.stock-container {
  position: relative;
  margin-top: 25px;
  border: 1px solid var(--border-color);
}

.stock-container-header {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

.stock-container-table {
  position: relative;
  padding: 15px;
  max-height: 250px;
  overflow: auto;
}

.alert-dialog-content {
  position: relative;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.table-transaction-content {
  max-height: 210px;
  overflow: auto;
}

.cust-comment-ta {
  position: relative;
  width: 100%;
  border: none;
  font-family: "Montserrat", sans-serif !important;
  padding: 0;
  color: var(--font-color);
  font-size: 13px;
  max-width: 100%;
  min-width: 100%;
  max-height: 50px;
  min-height: 50px;
  margin-top: 5px;
}

.cust-comment-ta:focus {
  outline: none;
}

.transaction-overview-content {
  position: relative;
  max-height: 500px;
  overflow: auto;
}

.transaction-overview-footer {
  position: relative;
  margin-top: 20px;
}

.skipcheck-btn.relative {
  position: relative;
  left: 0;
  width: 100%;
  margin-top: 15px;
}

.submit-addcust,
.cancel-addcust {
  position: relative;
  width: 49%;
}

.payment-topup-container {
  position: relative;
  width: 500px;
  margin: 0 auto;
  padding: 15px 0 5px 0;
  border-radius: 5px;
  background: #fff;
}

.payment-topup-method {
  position: relative;
  padding: 15px 0;
  background: #f5f5f5;
}

.payment-method-item {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 15px 1px;
  box-shadow: var(--box-shadow);
  cursor: pointer;
}

.payment-method-item img {
  width: 64px;
  vertical-align: middle;
  border-radius: 5px;
}

.payment-method-label {
  margin-top: 15px;
  padding: 7px;
  font-size: 12px;
  font-weight: 600;
  background: #aaa;
  color: #fff;
}

.payment-topup-total {
  position: relative;
  padding: 15px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
}

.payment-topup-total-amt {
  position: absolute;
  right: 15px;
}

.payment-topup-wrapper {
  padding: 25px 0;
  background: #98878f;
}

.payment-btn-container {
  padding-top: 5px;
}

.payment-history-wrapper {
  position: relative;
  padding: 15px;
}

.payment-history-container {
  padding: 15px;
  background: var(--box-container);
  border: 1px solid var(--box-container-border);
  border-radius: 5px;
}

.payment-history-label {
  font-weight: bold;
}

.payment-history-table {
  margin-top: 10px;
}

.report-container {
  position: relative;
  width: 800px;
  margin: 0 auto;
  background: var(--box-container);
  border: 1px solid var(--box-container-border);
  border-radius: var(--border-radius);
}

.report-header-container {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.report-content-container {
  position: relative;
  padding: 15px;
}

.category-footer {
  position: relative;
}

.report-content-header {
  position: relative;
  margin-bottom: 13px;
}

.report-table-container {
  position: relative;
  margin-top: 15px;
}

.datepicker-tb {
  padding-left: 10px;
  width: 120px;
  height: 35px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

.report-breakdown-container {
  position: relative;
  width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  margin-top: 20px;
  padding: 15px;
}

.report-breakdown-header {
  font-weight: bold;
  margin-bottom: 10px;
}

.report-breakdown-content {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

.breakdownsales-btn {
  position: absolute;
  top: 4px;
  right: 0;
  padding: 10px;
  font-size: 12px;
  background: #926b6b;
  color: #fff;
  font-weight: bold;
  border-radius: var(--border-radius);
  border: none;
}

.breakdownexpenses-btn {
  position: absolute;
  top: 4px;
  right: 140px;
  padding: 10px;
  font-size: 12px;
  background: #926b6b;
  color: #fff;
  font-weight: bold;
  border-radius: var(--border-radius);
  border: none;
}

.report-menu-container {
  position: relative;
  width: 680px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 15px;
  /* border: 1px solid var(--box-container-border); */
  border-radius: var(--border-radius);
}

.report-menu-header {
  position: relative;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  background: var(--header-gradient);
  color: #fff;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.report-filter-container {
  position: relative;
  padding: 15px;
  background: var(--header-gradient);
  color: #fff;
}

.report-menu-content {
  display: flex;
  background: #98878f;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  color: #fff;
}

.report-menu-item-container {
  position: relative;
  width: 200px;
  text-align: center;
  padding: 10px;
}

.report-menu-item {
  position: relative;
  padding: 45px 10px;
  border-radius: var(--border-radius);
  cursor: pointer;
  background: #985e6d;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

/* .report-menu-item-container.active .report-menu-item{
    background: #985e6d;
    color: #fff;
    font-weight: bold;
} */

.invoice-form-container {
  position: relative;
  margin: 0 auto;
  width: 650px;
  background: #fff;
  text-align: left;
  color: var(--font-color);
  /* border-radius: var(--border-radius); //use this will make the content blur */
  overflow: auto;
}

.invoice-detail-header {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

.invoice-cust-name {
  font-size: 16px;
  font-weight: 700;
}

.invoice-order-id {
  margin-top: 5px;
  color: "black";
  font-weight: 500;
}

.invoice-address {
  margin-top: 6px;
  position: relative;
  font-size: 12px;
  font-style: italic;
}

.invoice-detail-content {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
}

.invoice-total-wrapper {
  position: relative;
}

.invoice-total-container {
  position: relative;
  width: 300px;
  margin: 30px 0 15px 0;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  float: right;
}

.invoice-total-content {
  padding: 10px 15px;
}

.invoice-total-item {
  position: relative;
  padding: 6px 0;
  font-weight: 500;
}

.invoice-total-item span {
  position: relative;
  float: right;
  font-weight: bold;
}

.invoice-detail-btn {
  position: absolute;
  top: 17px;
  right: 15px;
}

.invoice-detail-table {
  max-height: 350px;
  overflow: auto;
}

.referral-wrapper {
  position: relative;
  margin-top: 25px;
  padding: 25px;
  background: #98878f;
}

.referral-link-container {
  position: relative;
  width: 600px;
  margin: 25px auto;
}

.referral-instruction-container {
  position: relative;
  width: 800px;
  margin: 25px auto;
  color: #444863;
  text-align: justify;
  line-height: 1.5em;
}

.referral-tb {
  position: relative;
  width: 100%;
  height: 60px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  text-align: center;
  font-size: 16px;
  padding-top: 5px;
  color: #6b6262;
}

.copy-referral-btn {
  position: relative;
  width: 100%;
  height: 50px;
  margin-top: 10px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: bold;
  text-transform: uppercase;
  background: linear-gradient(60deg, #985f6d, #444863);
  color: #fff;
}

.referral-register-container {
  position: relative;
  width: 600px;
  margin: 0 auto;
  padding: 25px 15px;
  border: 1px solid var(--box-container-border);
  border-radius: var(--border-radius);
  background: var(--box-container);
}

.referral-register-header {
  position: relative;
  padding: 25px 0 15px 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.referral-phone-tb-container {
  position: relative;
  height: 60px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding-left: 85px;
  font-family: "Montserrat", sans-serif !important;
}

.mobile-select {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 85px;
  height: 58px;
  border: none;
  font-size: 20px;
  padding-top: 10px;
  color: var(--font-color);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.referral-phone-tb {
  position: relative;
  width: 100%;
  height: 58px;
  border: none;
  font-size: 20px;
  border-left: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 15px;
  padding-right: 210px;
  font-family: "Montserrat", sans-serif !important;
  color: var(--font-color);
}

.send-referral-btn {
  position: absolute;
  top: 4px;
  right: 3px;
  height: 50px;
  background: #5896bd !important;
  color: #fff !important;
  font-weight: 700;
}

.marketing-sms-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  padding-top: 70px;
  box-shadow: 0px 0px 5px 1px rgba(209, 209, 209, 1);
  z-index: 97;
}

.balance-point-container {
  position: fixed;
  left: 0;
  top: 70px;
  width: 300px;
  padding-left: 15px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  height: 60px;
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 10002;
}

.balance-point {
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0;
}

.topup-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 60px;
  border: none;
  padding-top: 5px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.submit-sms-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: grey;
  color: #fff;
  font-size: 16px;
  padding-top: 4px;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 99;
  cursor: pointer;
}

.marketing-statistic-container {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 60px;
  padding-left: 300px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 10002;
}

.statistic-item {
  padding: 0 25px;
  width: 25%;
  height: 60px;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #ddd;
}

.statistic-y {
  position: absolute;
  top: 10px;
  left: 149px;
  width: 1px;
  height: 129px;
  background: #ddd;
}

.statistic-x {
  position: absolute;
  top: 75px;
  left: 10px;
  width: 279px;
  height: 1px;
  background: #ddd;
}

.statistic-label {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.statistic-point {
  font-size: 20px;
  position: relative;
  top: 2px;
  margin: 0 5px 0 8px;
}

.statistic-label-sm {
  font-size: 13px;
}

.sms-marketing-note {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 15px;
  background: #f3f3f3;
  font-size: 11px;
  border-top: 1px solid #ddd;
  display: flex;
  align-items: center;
}

.type-sms-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  max-height: 100%;
  border: none;
  padding: 130px 0px 190px 0px;
  z-index: 96;
  background: none;
  font-family: "Montserrat", sans-serif !important;
}

.type-sms-container:focus {
  outline: none;
}

.type-sms-container textarea {
  position: relative;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  border: none;
  padding: 5px;
}

.marketing-detail-container {
  position: relative;
  width: 100%;
  padding-top: 110px;
  padding-left: 300px;
}

.marketing-detail-content {
  padding: 50px 25px;
}

.totalsmscontainer {
  position: absolute;
  bottom: 130px;
  left: 0;
  width: 100%;
  padding: 15px;
  font-size: 12px;
  border-top: 1px solid #ddd;
}

.ui.segments {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: 1rem 0;
  border: 1px solid var(--box-container-border);
  border-radius: var(--border-radius);
}

.ui.segments:first-child {
  margin-top: 0;
}

.ui.segments:last-child {
  margin-bottom: 0;
}

.ui.segments:not(.horizontal)>.segment:first-child {
  border-top: none;
  margin-top: 0;
  bottom: 0;
  margin-bottom: 0;
  top: 0;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.ui.segment,
.ui.segments .segment {
  font-size: 1rem;
  background: var(--box-container);
}

.ui.segments>.segment {
  top: 0;
  bottom: 0;
  border-radius: 0;
  margin: 0;
  width: auto;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  border-top: 1px solid rgba(34, 36, 38, 0.15);
}

.ui.segment:first-child {
  margin-top: 0;
}

.ui.segment {
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  margin: 1rem 0;
  padding: 1em 1em;
  border-radius: 0.28571429rem;
  border: 1px solid rgba(34, 36, 38, 0.15);
}

.ui.segment h3 {
  font-size: 1.28571429rem;
  margin: 0;
  margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_filter {
  float: inherit !important;
}

table.dataTable {
  margin-top: 15px !important;
}

.catid--1 {
  padding: 15px;
}

.pointer {
  width: 230px;
  height: 70px;
  position: relative;
  left: 300px;
  background: #667a7a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 25px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--header-font);
}

.pointer:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 25px solid #60a5a5;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
}

.pointer:before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
}

.add-sub-btn {
  position: absolute;
  top: -4px;
  right: 100px;
  z-index: 99;
}

.save-sub-btn {
  position: absolute;
  top: -4px;
  right: 55px;
  z-index: 99;
}

.delete-sub-btn {
  position: absolute;
  top: -4px;
  right: 10px;
  z-index: 99;
}

.sales-summary-container {
  position: relative;
  margin: 0 auto;
  width: 350px;
  background: #fff;
  text-align: left;
  color: var(--font-color);
  border-radius: var(--border-radius);
}

.sales-summary-header {
  position: relative;
  padding: 10px 15px;
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background: #444863;
  color: #fff;
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
}

.sales-summary-date label {
  font-size: 13px;
  font-weight: 600;
  color: #fbe89b;
}

.sales-summary-date div {
  margin-top: 3px;
}

.sales-summary-cash {
  position: absolute;
  top: 10px;
  right: 15px;
  text-align: right;
}

.sales-summary-cash label {
  font-size: 13px;
  font-weight: 600;
  color: #fbe89b;
}

.sales-summary-cash div {
  margin-top: 3px;
}

.sales-summary-content {
  position: relative;
  padding: 0 15px 15px 15px;
}

.sales-staff-container {
  position: relative;
  display: flex;
}

.sales-staff-item {
  position: relative;
  width: 50%;
  padding: 10px 15px;
}

.sales-staff-item label {
  font-weight: 600;
  font-size: 13px;
}

.referral-message-container {
  position: relative;
  border-radius: var(--border-radius);
}

.referral-message-header {
  position: relative;
  padding: 10px 15px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  background: var(--header-gradient);
  color: #fff;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.referral-message-content {
  position: relative;
  padding: 10px 15px;
  line-height: 1.5;
  background: #fff;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.referral-note {
  position: relative;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

.forgotpass-container {
  position: relative;
  margin: 0 auto;
  width: 300px;
  background: #fff;
  text-align: left;
  color: var(--font-color);
  border-radius: var(--border-radius);
}

.forgotpass-header {
  position: relative;
  padding: 15px;
  background: #60a5a5;
  color: #fff;
  font-weight: bold;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  text-align: center;
}

.forgotpass-content {
  position: relative;
  padding: 15px;
  background: #fff;
}

.forgotpass-footer {
  position: relative;
  padding: 15px;
  border-top: 1px solid var(--border-color);
}

.forgotpass-note {
  position: relative;
  font-size: 12px;
  margin-bottom: 12px;
}

.expired-container {
  position: absolute;
  top: 4px;
  right: 325px;
  padding: 8px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  border-radius: var(--border-radius);
  text-align: right;
}

.renew-btn {
  position: relative;
  margin-top: 5px;
  border: none;
  background: #33a094;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 600;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.bgred {
  background: #e03737;
}

.Valert-container {
  position: relative;
  margin: 0 auto;
  width: 400px;
  background: #fff;
  text-align: left;
  color: var(--font-color);
  border-radius: var(--border-radius);
}

.Valert-header {
  position: relative;
  padding: 15px;
  background: #60a5a5;
  color: #fff;
  font-weight: bold;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  text-align: center;
}

.Valert-content {
  position: relative;
  padding: 15px;
  background: #fff;
  line-height: 1.5;
  text-align: center;
}

.Valert-footer {
  position: relative;
  padding: 15px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.void-status-container {
  position: absolute;
  top: 45px;
  left: 15px;
  padding: 20px;
  border: 5px solid #e45f5f;
  color: #e45f5f;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
}

.void-status-container.green {
  border: 5px solid lightgreen;
  color: lightgreen;
}

.void-status-item-sub {
  position: absolute;
  top: 45px;
  left: 15px;
  padding: 20px;
  border: 5px solid #e45f5f;
  color: #e45f5f;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
}

.voidbtn {
  position: relative;
  margin-left: 7px;
  padding: 1px 5px;
  border-radius: var(--border-radius);
  background: #fff;
  border: 2px solid #e45f5f;
  color: #e45f5f;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 9px;
}

#voidbtntrigger {
  background: #e45f5f;
  color: #fff;
}

.saveremarkbtn {
  position: absolute;
  top: -3px;
  right: 0;
  background: #69b58f;
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  padding: 5px 7px;
}

.tab-companydetails {
  padding: 15px;
}

.toc-container {
  padding: 15px;
  background: #fff;
  height: 64vh;
}

.toc-ta {
  height: 40vh !important;
}

.select2-container {
  z-index: 10001;
}

.select2-drop {
  z-index: 99999;
}

.video-item {
  padding: 0 10px;
}

.announcement-container {
  position: relative;
  width: 600px;
  margin: 25px auto;
  background: #464646;
  color: #fff;
  z-index: 10002;
}

.announcement-header {
  position: relative;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #bbb;
}

.announcement-content {
  position: relative;
  border-top: none;
  border: 1px solid #bbb;
  padding: 15px;
  max-height: 150px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  padding-top: 240px;
  padding-bottom: 150px;
  overflow: auto;
}

.videos-wrapper {
  opacity: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.7);
}

.videos-wrapper.active {
  z-index: 99999;
  opacity: 1;
}

.video-content {
  height: 220px;
  padding: 1px;
  background: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bbb;
  border-bottom: none;
}

.video-content img {
  width: auto !important;
  height: 100%;
}

.video-title {
  position: relative;
  padding: 13px 10px;
  /* max-height: 76px; */
  text-align: left;
  background: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  text-align: center;
  border: 1px solid #bbb;
}

.video-modal-container {
  position: relative;
  width: 800px;
  background: #985e6d;
  border-radius: var(--border-radius);
}

.video-modal-content {
  height: 62vh;
}

.video-modal-footer {
  position: relative;
  padding: 15px;
  height: 75px;
  border-top: 1px solid #6f6f6f;
  display: flex;
  align-items: center;
}

.youtube-video {
  width: 100%;
  height: 100%;
}

.video-modal-title {
  padding-right: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.close-video-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  padding-top: 3px;
  width: 85px;
  height: 45px;
  line-height: 1.4;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--border-radius);
  background: #33a094;
  color: #fff;
}

.custom-grid-rc {
  position: relative;
  float: left;
  width: 31%;
  height: 235px;
  margin-top: 18px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.card-header-img {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 55px;
  height: 55px;
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-container {
  position: relative;
  width: 660px;
  border-radius: var(--border-radius);
  background: #fff;
}

.box-header {
  position: relative;
  padding: 15px;
  text-align: center;
  background: var(--header-gradient);
  color: #fff;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.box-content {
  position: relative;
  padding: 15px;
}

.header-big {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-small {
  font-size: 15px;
  font-weight: 500;
}

.box-content-item {
  position: relative;
  margin: 15px 0;
}

.box-content-item:first-of-type {
  margin-top: 0;
}

.box-content-item:last-of-type {
  margin-top: 0;
}

.box-content-item label {
  font-weight: 600;
}

.box-input {
  position: relative;
  padding: 0 15px;
  margin-top: 5px;
  width: 100%;
  height: 45px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

.box-btn-container {
  position: relative;
  display: flex;
  width: 100%;
}

.box-btn-content:first-of-type {
  position: relative;
  width: 50%;
  padding-right: 10px;
}

.box-btn-content:last-of-type {
  position: relative;
  width: 50%;
  padding-left: 10px;
}

.edit-info-btn,
.next-info-btn {
  position: relative;
  width: 100%;
  height: 50px;
  background: #985e6d;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#second {
  display: none;
}

.show-password-check {
  position: relative;
  top: 2px;
}

#wizardupdate {
  display: none;
}

#support.active {
  z-index: 10005;
  background: rgba(0, 0, 0, 0.8);
}

.support-modal-container {
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
}

.support-header {
  position: relative;
  width: 100%;
  height: 65px;
  padding: 15px;
  padding-right: 110px;
  border-radius: 5px 5px 0 0;
  background: #60a5a5;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.close-support-btn {
  position: absolute;
  right: 15px;
  top: 13px;
  padding-top: 3px;
  width: 75px;
  height: 40px;
  line-height: 1.4;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--border-radius);
  background: #4f4f4f;
  color: #fff;
}

.support-content {
  position: relative;
}

.support-content-note {
  position: relative;
  padding: 15px;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

.support-content-item {
  position: relative;
  width: 100%;
  height: 150px !important;
  padding: 15px;
}

.support-img {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 120px;
  height: 120px;
  padding: 1px;
  border: 2px solid #e4e4e4;
}

.support-img img {
  width: 100%;
}

.support-detail {
  position: relative;
  padding-left: 135px;
}

.support-name {
  font-size: 16px;
  font-weight: bold;
}

.support-title {
  margin-bottom: 12px;
}

.support-phone,
.support-email {
  position: relative;
  margin: 8px 0;
  font-weight: 500;
  font-size: 14px;
  padding-left: 22px;
  word-break: break-word;
  font-family: var(--content-font);
}

.support-phone i {
  position: absolute;
  left: 0;
  top: 3px;
}

.support-email i {
  position: absolute;
  left: 0;
  top: 3px;
}

.idformat-item input[type="checkbox"] {
  position: relative;
  top: 5px;
  width: 35px;
  height: 35px;
  margin: 0;
}

.check-status {
  position: relative;
  width: 350px;
  margin: 0 auto;
}

#backbtn {
  display: none;
}

.owl-theme .owl-nav {
  /*default owl-theme theme reset .disabled:hover links */
}

.owl-theme .owl-nav [class*="owl-"] {
  transition: all 0.3s ease;
}

.owl-theme {
  position: relative;
}

.owl-theme .owl-next,
.owl-theme .owl-prev {
  width: 30px;
  height: 50px;
  margin-top: -20px;
  position: absolute;
  top: 32%;
  background: rgba(255, 255, 255, 0.5) !important;
}

.owl-theme .owl-prev {
  left: 10px;
}

.owl-theme .owl-next {
  right: 10px;
}

.owl-theme .owl-prev span,
.owl-theme .owl-next span {
  font-size: 35px;
  position: relative;
  top: -3px;
}

@media (max-height: 650px) {
  /*
  .navbar-item {
    width: 80px;
    height: 70px;
    font-size: 8.5px;
  }
*/

  .navbar-item {
    width: 100px;
    height: 90px;
    font-size: 8.5px;
  }

  .navbar-item.active {
    margin-top: 0;
  }

  .announcement-content {
    height: 85px;
    overflow: auto;
  }

  .video-container {
    padding-top: 210px;
  }

  .video-content {
    height: 130px;
  }

  .owl-theme .owl-next,
  .owl-theme .owl-prev {
    top: 25%;
  }
}

.firsticbox,
.secondicbox,
.thirdicbox,
.phonecode,
.phonenum {
  float: left;
  text-align: center;
}

.firsticbox {
  width: 45%;
  padding-right: 3px;
}

.secondicbox {
  width: 25%;
  padding: 0 3px;
}

.thirdicbox {
  width: 30%;
  padding-left: 3px;
}

.phonecode {
  width: 30%;
  padding: 0 3px;
}

.phonenum {
  width: 70%;
  padding-left: 3px;
}

.upload-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background-color: #458a8c;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
}

/* .upload-img:hover {
    background-color: #7fb1b3;
  } */
.upload-img input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.upload-img label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
}

.upload-img label::after {
  content: "Upload New Image";
  position: absolute;
  font-size: 13px;
  font-weight: bold;
  /* color: #e6e6e6; */
  color: #fff;
  z-index: 0;
}

.upload-img label span {
  display: inline-block;
  width: 50%;
  height: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: middle;
  text-align: center;
}

.upload-img label span:hover i.material-icons {
  color: lightgray;
}

.uploading-title {
  margin-top: 15px;
  font-weight: 600;
  text-align: center;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
}

.loader.active {
  z-index: 999999;
  opacity: 1;
}

.agent-detail-wrapper {
  position: relative;
  padding: 25px;
  padding-bottom: 0px;
}

.agent-detail-container {
  position: relative;
  width: 980px;
  margin: 0 auto;
  display: flex;
  padding: 15px 0;
}

.agent-detail-left {
  position: relative;
  width: 50%;
  padding-right: 10px;
}

.agent-detail-right {
  position: relative;
  width: 50%;
  padding-left: 10px;
}

.agent-detail-header {
  position: relative;
  padding: 10px 15px;
  font-weight: 600;
  background: var(--header-gradient);
  color: #fff;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.agent-detail-content {
  position: relative;
  background: #fff;
  font-size: 13px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2px;
}

.agent-detail-item {
  position: relative;
  padding: 9px 15px;
  padding-left: 165px;
  border-top: 1px solid #e8e8e8;
  min-height: 36px;
}

.agent-detail-item:last-of-type {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

.agent-detail-item.twolines {
  min-height: 51px;
  display: flex;
  align-items: center;
}

.agent-detail-item.right-item {
  padding-left: 140px;
}

.agent-detail-item.address {
  height: 70px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.agent-detail-item-label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  width: 155px;
  padding-left: 35px;
  background: #acc7c7;
  color: #fff;
}

.agent-detail-item-label i {
  position: absolute;
  top: 12px;
  left: 15px;
}

.agent-detail-item-label.twolines i {
  position: absolute;
  top: 19px;
  left: 15px;
}

.agent-detail-item-label.twolines {
  height: 51px;
  display: flex;
  align-items: center;
}

.agent-detail-item-label.right-label {
  width: 130px;
}

.agent-detail-item-label.address {
  height: 70px;
  display: flex;
  align-items: center;
}

.agent-detail-item-label.address i {
  top: 28px;
  left: 14px;
}

.agent-sales-container {
  position: relative;
  width: 930px;
  margin: 0 auto;
  display: flex;
}

.activity-wrapper {
  position: relative;
  padding: 35px 0;
}

.activity-container {
  position: relative;
  width: 930px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--border-radius);
}

.activity-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.activity-form-container {
  position: relative;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: var(--border-radius);
}

.activity-form-row {
  position: relative;
  display: flex;
}

.activity-form-item {
  position: relative;
  padding: 15px;
  width: 50%;
}

.activity-form-item label {
  font-size: 12px;
  font-weight: 600;
}

.activity-form-item select,
.activity-form-item input {
  margin-top: 5px;
}

.activity-form-item textarea {
  position: relative;
  margin-top: 5px;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 165px;
  min-height: 165px;
  max-height: 165px;
  background: #fff;
  padding-left: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 12px;
  color: var(--font-color);
}

.activity-form-footer {
  position: relative;
  padding: 15px;
  padding-top: 0;
  text-align: center;
}

.activity-list {
  position: relative;
  padding: 15px;
}

.activity-list-item {
  position: relative;
  padding: 15px;
  border: 1px solid #e5e5e5;
  border-radius: var(--border-radius);
  background: #fff;
  margin-bottom: 15px;
}

.activity-list-item:last-of-type {
  margin-bottom: 0;
}

.activity-type {
  font-size: 14px;
  font-weight: 600;
}

.activity-date {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #9a9a9a;
  font-size: 12px;
}

.activity-description {
  margin-top: 3px;
  line-height: 1.5;
}

.activity-recorder {
  color: #4986ad;
  font-weight: 500;
  font-size: 13px;
}

.calendar-input-icon {
  position: absolute;
  right: 25px;
  top: 50px;
  z-index: 1;
  color: #9a9a9a;
}

.genealogy-container {
  position: relative;
  margin-top: 75px;
  border: 1px solid #ddd;
}

.container-header {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 25px;
  text-align: center;
}

.hq-card-container {
  position: relative;
  padding: 15px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: center;
}

.genealogy-statistic-container {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  border-top: 1px solid #ddd;
  background: #e8dde2;
}

.genealogy-statistic-content {
  position: relative;
  padding: 25px;
}

.genealogy-statistic-item {
  position: relative;
  cursor: pointer;
}

.genealogy-statistic-value {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 8px;
  color: #aaa;
}

.level-1 {
  color: var(--level-1);
}

.level-2 {
  color: var(--level-2);
}

.level-3 {
  color: var(--level-3);
}

.level-4 {
  color: var(--level-4);
}

.genealogy-statistic-item label {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
}

.genealogy-tree-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
}

.genealogy-tree-content {
  position: relative;
  width: 20%;
  padding: 10px;
}

.genealogy-item {
  border-radius: 5px;
  border: 1px solid #ddd;
  cursor: pointer;
  background: #fff;
}

.genealogy-item.level-0 {
  border: 1px solid var(--level-0);
}

.genealogy-item.level-1 {
  border: 1px solid var(--level-1);
}

.genealogy-item.level-2 {
  border: 1px solid var(--level-2);
}

.genealogy-item.level-3 {
  border: 1px solid var(--level-3);
}

.genealogy-item.level-4 {
  border: 1px solid var(--level-4);
}

.genealogy-header {
  position: relative;
  padding: 10px;
  /* min-height: 78px; */
  color: var(--font-color);
}

.genealogy-header label {
  font-weight: bold;
  color: #8e8e8e;
  font-size: 12px;
}

.upline-name {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
}

.genealogy-level {
  padding: 10px;
  background: #8e8e8e;
  color: #fff;
  font-weight: bold;
}

.genealogy-level.level-0 {
  background: var(--level-0);
}

.genealogy-level.level-1 {
  background: var(--level-1);
}

.genealogy-level.level-2 {
  background: var(--level-2);
}

.genealogy-level.level-3 {
  background: var(--level-3);
}

.genealogy-level.level-4 {
  background: var(--level-4);
}

.genealogy-content {
  position: relative;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  min-height: 123px;
  color: var(--font-color);
}

.genealogy-content-item {
  margin-top: 5px;
}

.genealogy-content-item:first-of-type {
  margin-top: 0;
}

.genealogy-content-item label {
  font-weight: bold;
  color: #aaa;
  font-size: 12px;
}

.genealogy-content-value {
  font-size: 13px;
}

.genealogy-footer {
  position: relative;
  padding: 10px;
  min-height: 97px;
  color: var(--font-color);
}

.genealogy-footer-item {
  position: relative;
  margin: 5px 0;
  font-size: 13px;
  cursor: pointer;
}

.genealogy-footer-item label {
  font-weight: bold;
  cursor: pointer;
}

.genealogy-footer-item span {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.selected-card-downline {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-height: 720px;
  overflow: auto;
  border-top: 1px solid #ddd;
}

.card-selected-content {
  position: relative;
}

.close-selected-agent-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 100px;
  height: 40px;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #d04444;
  color: #fff;
}

.genealogy-group-container {
  position: relative;
  padding: 10px;
  display: none;
}

.genealogy-group-item {
  position: relative;
  border-radius: 5px;
  border: 1px solid #aaa;
  width: 350px;
  max-height: 285px;
}

.genealogy-group-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  padding-left: 10px;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  border-radius: 5px 5px 0 0;
}

.genealogy-group-content {
  position: relative;
  padding-top: 45px;
}

.group-content-item {
  position: relative;
  width: 100%;
  height: 60px;
  border-top: 1px solid #aaa;
}

.group-content-item {
  position: relative;
  text-align: center;
  line-height: 1.3;
  display: flex;
  align-items: center;
  padding-left: 10px;
  letter-spacing: 0.5px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.group-content-item span {
  position: absolute;
  right: 10px;
}

.back-level-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  padding: 5px 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.back-level-btn:focus {
  outline: none;
}

.inventory-label {
  position: absolute;
  bottom: -3px;
  right: -3px;
  padding: 5px 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  z-index: 1;
  border-bottom-right-radius: var(--border-radius);
}

.price-book-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  background: #73a6bb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.book-price-row {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.book-price-header {
  font-size: 20px;
  font-weight: 500;
}

.price-book-right {
  position: absolute;
  right: 0;
  width: 150px;
  height: 40px;
  display: flex;
  align-items: center;
  text-align: right;
}

.price-book-right input {
  width: 150px !important;
}

.payment-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.payment-box {
  position: relative;
  width: 50%;
}

.payment-box:nth-child(odd) {
  padding-right: 15px;
}

.payment-box:nth-child(even) {
  padding-left: 15px;
}

.payment-box label {
  font-size: 16px;
}

.paytodetail-container {
  position: relative;
  padding: 15px;
  height: 160px;
  border-bottom: 1px solid #ddd;
}

.paytodetail-container label,
.paytodetail-container-float label {
  font-size: 14px;
  font-weight: 700;
}

.paytodetail-container-float {
  position: absolute;
  top: 15px;
  right: 15px;
  text-align: right;
}

.payment-platform-btn {
  position: relative;
  width: 230px;
  margin: 0 auto;
  margin-top: 18px;
  border: 2px solid #ddd;
  cursor: pointer;
}

.payment-platform-btn img {
  width: 100%;
}

.shipping-detail-container {
  position: relative;
  clear: both;
  border-top: 1px solid #ddd;
  padding: 15px;
}

.shipping-detail-container label {
  font-weight: 20px;
  font-weight: bold;
}

.shipping-detail-box {
  position: relative;
  width: 50%;
  margin-top: 10px;
}

.shipping-detail-box label {
  font-weight: 600;
  font-size: 14px;
}

.shipping-detail-btn {
  position: absolute;
  right: 0;
  bottom: 2px;
}

.payable-row-background {
  background-color: aquamarine !important;
}

.payable-btn {
  width: 25px;
  padding: 5px;
}

.viewme {
  background: #e28b28;
  color: #fff;
}

.shippinginfo-grid {
  position: relative;
}

.shippinginfo-row {
  position: relative;
  display: flex;
  width: 100%;
}

.shippinginfo-column {
  position: relative;
  margin-top: 7px;
  /* width: 50%; */
}

.tnc-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 25px;
  padding-top: 70px;
}

.tnc-modal-header {
  position: relative;
  padding: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.tnc-modal-content-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 25px;
  padding-top: 123px;
  padding-bottom: 115px;
  width: 100%;
  height: 100%;
}

.tnc-modal-content {
  /* position: relative;
    padding: 15px;
    background: #f1e9e9;
    border: 1px solid #8e7a7a;
    border-radius: var(--border-radius);
    max-height: 100%;
    overflow: auto; */
  padding: 15px;
  background: #f3f8ff;
  border: 1px solid #667a7a;
  border-radius: var(--border-radius);
  min-height: 300px;
  max-height: 300px;
  overflow: auto;
}

.tnc-modal-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
}

.tnc-modal-footer button {
  width: 49%;
}

.expense-header-fixed {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 1;
  padding: 0 25px;
  background: #3c3c3c;
}

.tnc-modal-note {
  margin-top: 25px;
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.control__indicator {
  position: absolute;
  top: -1px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
}

.control--radio .control__indicator {
  border-radius: 50%;
}

.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
  background: #ccc;
}

.control input:checked~.control__indicator {
  background: #2aa1c0;
}

.control:hover input:not([disabled]):checked~.control__indicator,
.control input:checked:focus~.control__indicator {
  background: #0e647d;
}

.control input:disabled~.control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}

.control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}

.control input:checked~.control__indicator:after {
  display: block;
}

.control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.control--checkbox input:disabled~.control__indicator:after {
  border-color: #7b7b7b;
}

.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}

.control--radio input:disabled~.control__indicator:after {
  background: #7b7b7b;
}

.flex-container {
  position: relative;
  width: 800px;
  margin: 0 auto;
}

.report-header {
  position: relative;
  padding: 10px;
}

.report-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.report-box {
  /* position: relative; */
  width: 180px;
  padding: 10px;
}

.report-item {
  position: relative;
  padding: 15px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}

.report-item i {
  font-size: 30px;
  margin-bottom: 8px;
}

.modal-container {
  position: relative;
  width: 500px;
  margin: 0 auto;
  background: #fff;
}

.modal-header {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  background: #60a5a5;
  color: #fff;
  font-weight: 600;
}

.modal-header button {
  position: absolute;
  top: 13px;
  right: 7px;
  background: none;
  border: none;
  font-size: 20px;
  color: #adadad;
}

.modal-content {
  position: relative;
  padding: 15px;
}

.note-container {
  width: 350px;
}

.note-item {
  position: relative;
  margin: 8px 0;
}

.note-item span {
  position: absolute;
  right: 0;
}

.calender-range {
  background: #fff;
  cursor: pointer;
  padding: 15px;
  border: 1px solid #ccc;
  width: 450px;
  margin: 0 auto;
  text-align: center;
}

.invoice-detail-btn-absolute {
  position: absolute;
  top: 65px;
  right: 15px;
  width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.invoice-detail-btn-absolute div {
  width: 50%;
  padding: 5px;
}

.invoice-detail-btn-absolute button {
  width: 100%;
}

.order-detail-list {
  position: relative;
  padding-left: 140px;
  margin-bottom: 4px;
}

.order-detail-list label {
  position: absolute;
  left: 0;
}

.order-shipment-container {
  text-align: center;
  display: flex;
  background: #98878f;
  padding: 10px;
  border-radius: var(--border-radius);
  margin-top: 30px;
}

.order-shipment-list {
  position: relative;
  padding: 10px 5px;
  width: 33.3%;
}

.order-shipment-list label {
  font-weight: 600;
  color: #fff;
}

.order-shipment-list input {
  margin-top: 5px;
  width: 100%;
  height: 50px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  text-align: center;
}

#splitdetail tr td input {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  height: 30px;
  padding: 0 5px;
}

.order-ship-cust-detail {
  position: relative;
  width: 300px;
  background: #717fa9;
  color: #fff;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--border-radius);
}

.order-ship-cust-list {
  position: relative;
  width: 100%;
  padding-left: 110px;
}

.order-ship-cust-list select {
  width: 100%;
}

.order-ship-cust-list label {
  position: absolute;
  left: 0;
  top: -2px;
  height: 40px;
  display: flex;
  align-items: center;
}

.order-ship-cust-input {
  position: relative;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: #717fa9;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
}

.order-ship-cust-header {
  position: relative;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
}

.order-ship-cust-header label {
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  color: #fff;
}

.order-ship-cust-header div {
  position: absolute;
  top: 0;
  right: 0;
}

.order-ship-cust-input div {
  padding: 5px;
}

.order-ship-cust-input div input,
.state-select {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0 10px;
}

.inputshipcalendar {
  position: relative;
  margin-top: 5px;
  width: 100%;
  height: 50px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: #fff;
}

.inputshipcalendar i {
  position: absolute;
  right: 10px;
  top: 17px;
  font-size: 16px;
  color: #616161;
}

.inputshipcalendar input {
  background: none;
  border: none;
}

.inputshipcalendar input:focus {
  outline: none;
}

.invoice-receipt-img-container {
  position: absolute;
  top: 65px;
  right: 70px;
  width: 100px;
  height: 100px;
  background-image: url("../img/noimg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  text-align: center;
}

.imgzoom-container {
  position: relative;
  width: 70vh;
  height: 70vh;
  background-image: url("../img/noimg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.pdfzoom-container {
  position: relative;
  width: 70vh;
  height: 70vh;
  max-height: 70vh;
  padding-top: 45px;
}

.close-imgzoom {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 24px;
}

.receiptinput-container {
  position: relative;
  /* height: 320px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.invoice-receipt-box {
  width: 270px;
  height: 270px;
  margin-bottom: 20px;
}

.js--image-preview.invoice-receipt {
  width: 270px;
  height: 270px;
  background: #fff;
  background-image: url("../img/noimg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.confirm-payment-container {
  position: absolute;
  top: 0;
  right: 160px;
  width: 170px;
}

.shipping-item {
  position: relative;
  width: 867px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  margin-bottom: 15px;
}

.shipping-input {
  position: relative;
  width: 180px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.shipping-input input {
  position: relative;
  width: 100%;
  height: 38px;
  border: none;
  border-radius: 5px;
  background: #fff;
  padding-left: 10px;
  padding-right: 50px;
}

.shipping-input input:focus {
  outline: none;
}

.shipping-label {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 40px;
  height: 36px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: #74799c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.shipping-amt-label {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 40px;
  height: 36px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background: orange;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 1;
}

.shipping-input.amount {
  margin-left: 20px;
}

.shipping-input.amount input {
  padding-left: 50px;
  padding-right: 10px;
}

.shipping-item button {
  margin-left: 10px;
}

.readonly-input {
  background: #f1f1f1 !important;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 25px;
  height: 20px;
  font-size: 12px;
  color: #4c4c4c;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  background-color: #eee;
  border: 1px solid #ddd;
}

.checkbox-container:hover input~.checkmark {
  background-color: #eee;
}

.checkbox-container input:checked~.checkmark {
  background-color: #2196F3;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked~.checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.package-item-wrapper {
  position: relative;
}

.package-item-header {
  position: relative;
  margin-top: 15px;
  margin-bottom: -8px;
  padding-right: 60px;
  display: flex;
  font-weight: bold;
}

.package-item {
  position: relative;
  margin-top: 15px;
  padding-right: 60px;
  display: flex;
}

.package-item button {
  position: absolute;
  right: 0;
}

.report-fab-btn {
  background: rgba(9, 84, 9, .7);
  position: fixed;
  padding-top: 5px;
  width: 55px;
  height: 55px;
  bottom: 100px;
  right: 50px;
  border: none;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 0px rgb(206, 203, 203);
  z-index: 98;
  font-size: 25px;
  color: #fff;
}

.report-fab-btn i {
  position: relative;
  top: -1px;
}

.current-month-sales {
  position: relative;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.personal-sales-content {
  position: relative;
  background: #fff;
  width: 100%;
  padding: 15px 10px;
  border-radius: 5px;
  border: 1px solid #3b58c1;
}

.personal-sales-content {
  margin-top: 25px;
}

.sales-content-left {
  padding-right: 7.5px;
}

.sales-content-center {
  padding: 0 7.5px;
}

.sales-content-right {
  padding-left: 7.5px;
}

.personal-accu-content {
  position: relative;
  background: #fff;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #c18b3b;
  padding-bottom: 10px;
  margin-top: 15px;
}

.accu-sales-header {
  position: relative;
  background: var(--header-gradient);
  color: #fff;
  padding: 8px 0;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  letter-spacing: .5px;
}

.accu-sales-item {
  position: relative;
  display: flex;
  padding: 8px 10px;
  padding-right: 60px;
}

.accu-sales-content {
  position: relative;
  width: 50%;
  font-size: 13px;
}

.accu-sales-content.textright {
  text-align: right;
}

.accu-sales-content.total {
  font-size: 14px;
  font-weight: bold;
  color: #c18b3b;
}

.accu-sales-content.header {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 12px;
}

.check-detail-sales {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 30px;
  height: 22px;
  border: none;
  background: #794964;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
}

.check-detail-sales i {
  position: relative;
  top: 1px;
}

.totalsalesagent {
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  width: 200px;
}

.totalsalesagent .dashboard-statistic-header {
  padding: 10px;
  font-size: 12px;
}

.totalsalesagent .dashboard-statistic-header i {
  top: 9px;
  right: 10px;
}

.totalsalesagent .dashboard-statistic-value {
  margin-top: 0;
  padding: 10px;
  font-size: 14px;
}

.sales-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 25px;
}

.sales-table td,
.sales-table th {
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 12px;
}

.sales-table tr:nth-child(even) {
  background-color: #fff;
}

.sales-table tr:nth-child(odd) {
  background-color: #f5f8ff;
}

/* .sales-table tr:hover {
  background-color: #fff;
  cursor: pointer;
} */

.sales-table th {
  text-align: left;
  background: linear-gradient(to bottom, #6186ca, #5c6784);
  color: #fff;
}

/* New Dashboard CSS */
.dash-wrapper {
  position: fixed;
  width: 100%;
  top: 70px;
  bottom: 0;
  overflow: auto;
  background: #f7faff;
  padding-bottom: 35px;
}

.section-container {
  position: relative;
  width: 980px;
  margin: 0 auto;
  margin-top: 35px;
  padding: 15px;
  padding-top: 10px;
  background: #acc7c7;
  border: 2px solid #667a7a;
  border-radius: 5px;
}

.section-header {
  position: relative;
  line-height: 1.5;
  padding: 10px;
  color: #303030;
}

.section-header i {
  position: relative;
  top: -1px;
  margin-right: 10px;
  font-size: 20px;
}

.section-header label {
  font-weight: bold;
  font-size: 24px;
  font-family: var(--header-font);
}

.section-header span {
  color: #303030;
  font-weight: 500;
}

.section-sub-header {
  position: absolute;
  top: 18px;
  right: 15px;
  font-weight: 500;
  font-family: var(--content-font);
}

.sales-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.sales-statistic {
  position: relative;
  width: 25%;
  padding: 10px;
}

.sales-statistic.fivecol {
  width: 20%;
}

.sales-statistic-box {
  position: relative;
  padding: 15px;
  background: #fff;
  box-shadow: 1px 1px 5px 0 rgba(173, 48, 110, 0.15);
  border-radius: 5px;
}

.sales-statistic-box label {
  font-weight: bold;
  letter-spacing: .2px;
  font-size: 12px;
  text-transform: uppercase;
  color: #8e8989;
  font-family: var(--header-font);
}

.sales-statistic-price {
  font-weight: 600;
  font-size: 20px;
  margin-top: 5px;
  color: #60a5a5;
  font-family: var(--content-font);
}

.tooltip-box {
  position: absolute;
  top: 13px;
  right: 13px;
  border-radius: 5px;
  font-size: 11px;
  background: #45787d;
  color: #fff;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tooltip-content {
  position: absolute;
  top: 40px;
  right: 13px;
  max-width: 200px;
  padding: 10px;
  font-size: 12px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  border-radius: 5px;
  font-style: normal;
  text-decoration: none;
  display: none;
  font-family: var(--content-font);
}

.tooltip-content.custom {
  min-width: 200px;
}

.sub-dash-container {
  position: relative;
  width: 500px;
  margin: 0 auto;
  margin-top: 25px;
  padding: 10px;
}

.sub-dash-box {
  position: relative;
  border-radius: 5px;
  background: var(--box-container);
  border: 2px solid var(--box-container-border);
}

.sub-dash-header {
  position: relative;
  padding: 15px;
  padding-bottom: 0;
  line-height: 1.5;
  color: #303030;
}

.sub-dash-header label {
  font-size: 16px;
  font-weight: bold;
}

.sub-dash-header span {
  font-weight: 500;
}

.sub-dash-content {
  position: relative;
  padding: 15px;
}

.sub-dash-list {
  position: relative;
  padding: 15px;
  /* background: #fde9ed; */
  /* background: #eb7a25;
    border: 1px solid #d92927; */
  background: #fff;
  box-shadow: 1px 1px 5px 0 rgb(173 48 110 / 15%);
  border-radius: 5px;
}

.sub-dash-list.big {
  padding: 23px 15px;
}

.sub-dash-list:not(:first-of-type) {
  margin-top: 15px;
}

.sub-dash-list label {
  font-weight: 500;
}

.sub-dash-list span {
  position: absolute;
  right: 15px;
  font-weight: bold;
  color: #60a5a5;
}

.achievement-summary {
  position: relative;
  width: 50%;
  padding: 10px;
}

.achievement-summary-box {
  position: relative;
  padding: 15px;
  /* background: #fff;
  border: 2px solid #ffbeaf; */
  background: #fff;
  box-shadow: 1px 1px 5px 0 rgb(173 48 110 / 15%);
  border-radius: 5px;
}

/* Circle Progress Bar Start */
.progress-container {
  padding-left: 85px;
}

#progressbar {
  position: absolute;
  top: 12px;
  left: 15px;
  width: 55px;
  height: 55px;
}

/* Circle Progress Bar End */

.achievement-summary-box label {
  font-weight: bold;
  letter-spacing: .2px;
  font-size: 12px;
  text-transform: uppercase;
  color: #8e8989;
  font-family: var(--header-font);
}

.achievement-summary-price {
  font-weight: 600;
  font-size: 20px;
  margin-top: 3px;
  color: #60a5a5;
  font-family: var(--content-font);
}

.achievement-summary-position {
  font-weight: 600;
  font-size: 18px;
  margin-top: 3px;
  color: #60a5a5;
  font-family: var(--content-font);
}

.commission-container {
  position: relative;
  width: 980px;
  margin: 0 auto;
  margin-top: 35px;
  padding: 15px;
  padding-top: 10px;
  text-align: center;
}

.commission-dash-container {
  position: relative;
  width: 50%;
  padding: 10px;
  margin: 0 auto;
  line-height: 1.2;
  text-align: center;
}

.commission-dash-container label {
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: bold;
  font-size: 16px;
  color: #676767;
  font-family: var(--header-font);
}

.commission-dash-container-price {
  font-weight: bold;
  font-size: 30px;
  margin-top: 5px;
  color: #60a5a5;
  font-family: var(--content-font);
}

.dash-monthly-table {
  margin: 0 auto;
  margin-top: 10px;
  width: 500px;
  border: 2px solid #667a7a;
  text-align: center;
}

.dash-monthly-table th {
  background: #efafa9;
  color: #fff;
  text-align: center;
}

.dash-monthly-table tr td {
  font-weight: normal;
  background: #fff;
}

.statement-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #fff4f8;
  padding-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statement-container {
  position: relative;
  width: 450px;
  margin: 0 auto;
}

.statement-header {
  position: relative;
  line-height: 1.5;
  text-align: center;
  padding: 15px;
}

.statement-header label {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .2px;
}

.statement-header select {
  width: 150px;
  height: 40px;
  margin-top: 10px;
}

.income-statement-container {
  position: relative;
  padding: 25px;
  border-radius: 5px;
  background: linear-gradient(150deg, #dc649f 50%, #f1bccd);
  color: #fff;
  border: 3px solid #d92927;
}

.income-statement-header {
  text-align: center;
  line-height: 1.5;
}

.income-statement-header label {
  font-weight: bold;
  font-size: 22px;
}

.income-statement-profile {
  position: relative;
  margin-top: 25px;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 1px 1px 5px 0 rgb(173 48 110 / 15%);
  color: #d92927;
}

.income-statement-item {
  position: relative;
  line-height: 1.3;
}

.income-statement-item:not(:first-of-type) {
  margin-top: 10px;
}

.income-statement-item label {
  font-weight: bold;
  letter-spacing: .2px;
  font-size: 11px;
  text-transform: uppercase;
  color: #8e8989;
}

.income-statement-item span {
  font-weight: 600;
  font-size: 15px;
  margin-top: 5px;
  color: #d92927;
}

.income-statement-content {
  position: relative;
  margin-top: 25px;
  color: #fff;
}

.income-statement-total {
  position: relative;
  line-height: 1.5;
  margin-top: 30px;
  text-align: center;
}

.income-statement-total label {
  font-weight: 600;
  letter-spacing: .1px;
  font-size: 12px;
  text-transform: uppercase;
  color: #f1f1f1;
}

.income-statement-total span {
  font-weight: bold;
  font-size: 26px;
  margin-top: 5px;
  letter-spacing: .5px;
}

.income-sales-item {
  position: relative;
  margin-top: 15px;
}

.income-sales-item label {
  color: #f1f1f1;
}

.income-sales-item span {
  float: right;
  font-weight: 600;
}

.table tr th {
  position: relative;
  background: var(--header-gradient);
  color: #fff;
  font-family: var(--header-font);
}

.announce-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  background: rgba(0, 0, 0, .3);
  border-radius: 5px;
  border: 1px solid #fff;
}

.announce-header {
  position: relative;
  padding: 15px;
  color: #fff;
  font-weight: bold;
}

.announce-header button {
  position: absolute;
  top: 9px;
  right: 15px;
  height: 30px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  background: #3693b1;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
}

.announce-list {
  position: relative;
  padding: 15px;
  padding-top: 0;
}

.announce-item {
  position: relative;
  padding: 15px;
  /* padding-left: 75px; */
  margin-top: 15px;
  border-radius: 5px;
  background: #d9f7fb;
  border: 2px solid #383f5d;
  color: #4e4646;
}

.announce-item:first-of-type {
  margin-top: 0;
}

.announce-img {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 15px auto;
  background: #ddd;
  cursor: pointer;
}

.announce-content label {
  font-weight: bold;
  font-size: 12px;
  color: #4e4646;
}

.announce-content span {
  position: absolute;
  top: 16px;
  width: 67px;
  text-align: center;
  margin-left: 8px;
  padding: 2px 7px;
  background: #757575;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-weight: 500;
  color: #dbdbdb;
  border-radius: var(--border-radius);
  font-size: 11px;
}

.announce-content button {
  position: absolute;
  top: 2px;
  right: 5px;
  width: 25px;
  height: 25px;
  border: none;
  background: none;
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.announce-title {
  margin-top: 10px;
  font-weight: 600;
}

.announce-title div {
  margin-top: 5px;
  font-weight: normal;
  line-height: 1.5;
}

.announce-form {
  position: relative;
  width: 670px;
}

.announce-btn {
  text-align: center;
}

.announce-btn button {
  width: 150px;
  height: 45px;
  padding-top: 2px;
  background: #544;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .5px;
  margin-right: 10px;
  cursor: pointer;
}

.percentage-comparison {
  position: absolute;
  bottom: 20px;
  right: 5px;
  font-size: 18px;
  padding: 3px 6px;
  font-weight: 600;
}

.percentage-comparison.red {
  color: #da6060;
}

.percentage-comparison.green {
  color: green;
}

.content-font{
  font-family: var(--content-font);
}

.table td{
  font-family: var(--content-font);
}

.product-container{
  display: flex;
}

.product-desc{
  background: #fff;
  border: 1px solid #ddd;
  margin: 0 5px;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}

.product-desc img{
  width: 100%;
  border-radius: 5px;
  margin-bottom: 5px;
}

.product-desc label{
  font-weight: bold;
  font-size: 16px;
}

.product-desc ol{
  padding: 0;
}

.product-desc ol li{
  list-style-type: none;
  font-size: 12px;
}