@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
body {
  font-family: "Rubik", Helvetica, "Trebuchet MS", Verdana, sans-serif;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
body .logo {
  height: 80px;
}
body .logo img {
  height: 100%;
}
body.body-size-1 {
  font-size: 1rem;
}
body.body-size-2 {
  font-size: 1.1rem;
}
body.user-not-logged-in {
  background-color: #3395ff;
  background-image: url("/images/backgrounds/user-not-logged-in.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button {
  cursor: pointer;
}
button.button-edit {
  display: block;
  width: 42px;
  height: 42px;
  background: transparent url("/images/icons/pencil-blue.svg") no-repeat center center;
  background-size: 36px;
  background-position: center;
  border: none;
  margin-left: 0.5rem;
}
button.button-delete {
  display: block;
  width: 42px;
  height: 42px;
  background: transparent url("/images/icons/trash-red.svg") no-repeat center center;
  background-size: 36px;
  background-position: center;
  border: none;
  margin-left: 0.5rem;
}

.w-100 {
  width: 100%;
  max-width: unset !important;
}

.h-100 {
  height: 100%;
  max-height: unset !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.pl-2 {
  padding-left: 2rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.pr-2 {
  padding-right: 2rem !important;
}

.pr-3 {
  padding-right: 3rem !important;
}

.p-1 {
  padding: 1rem !important;
}

.p-2 {
  padding: 2rem !important;
}

.p-3 {
  padding: 3rem !important;
}

.m-1 {
  margin: 1rem !important;
}

.m-2 {
  margin: 2rem !important;
}

.m-3 {
  margin: 3rem !important;
}

.d-none {
  display: none !important;
}

a {
  text-decoration: none;
  color: #212529;
}
a:hover {
  color: #3395ff;
}
a:visited {
  font-weight: bold;
}

.alert {
  display: block;
  width: 100%;
  padding: 2rem;
  text-align: center;
  border-radius: 5px;
  font-size: 1.6rem;
}
.alert a {
  color: #ffeeaa;
}
.alert a:hover {
  text-decoration: underline;
}
.alert.alert-danger {
  background-color: #dc3545;
  color: #ffffff;
}
.alert.alert-success {
  background-color: #28a745;
  color: #ffffff;
}
.alert.alert-primary {
  background-color: #3395ff;
  color: #ffffff;
}
.alert.alert-secondary {
  background-color: #6c757d;
  color: #ffffff;
}
.alert.alert-warning {
  background-color: #dc622e;
  color: #ffffff;
}
.alert.alert-info {
  background-color: #17a2b8;
  color: #ffffff;
}

.padding-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

input[type=text],
input[type=password],
input[type=tel],
input[type=email],
input[type=number],
input[type=search],
input[type=url],
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=color],
input[type=range],
input[type=file],
.form-info-text {
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 20px;
}
input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=time]::-webkit-input-placeholder, input[type=datetime-local]::-webkit-input-placeholder, input[type=month]::-webkit-input-placeholder, input[type=week]::-webkit-input-placeholder, input[type=color]::-webkit-input-placeholder, input[type=range]::-webkit-input-placeholder, input[type=file]::-webkit-input-placeholder, .form-info-text::-webkit-input-placeholder {
  color: #b3b3b3;
}
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=color]::-moz-placeholder, input[type=range]::-moz-placeholder, input[type=file]::-moz-placeholder, .form-info-text::-moz-placeholder {
  color: #b3b3b3;
}
input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=time]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input[type=color]:-ms-input-placeholder, input[type=range]:-ms-input-placeholder, input[type=file]:-ms-input-placeholder, .form-info-text:-ms-input-placeholder {
  color: #b3b3b3;
}
input[type=text]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, input[type=time]::-ms-input-placeholder, input[type=datetime-local]::-ms-input-placeholder, input[type=month]::-ms-input-placeholder, input[type=week]::-ms-input-placeholder, input[type=color]::-ms-input-placeholder, input[type=range]::-ms-input-placeholder, input[type=file]::-ms-input-placeholder, .form-info-text::-ms-input-placeholder {
  color: #b3b3b3;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=search]::placeholder,
input[type=url]::placeholder,
input[type=date]::placeholder,
input[type=time]::placeholder,
input[type=datetime-local]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=color]::placeholder,
input[type=range]::placeholder,
input[type=file]::placeholder,
.form-info-text::placeholder {
  color: #b3b3b3;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=time]:focus,
input[type=datetime-local]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=color]:focus,
input[type=range]:focus,
input[type=file]:focus,
.form-info-text:focus {
  outline: none;
  border-color: #3395ff;
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=tel]:disabled,
input[type=email]:disabled,
input[type=number]:disabled,
input[type=search]:disabled,
input[type=url]:disabled,
input[type=date]:disabled,
input[type=time]:disabled,
input[type=datetime-local]:disabled,
input[type=month]:disabled,
input[type=week]:disabled,
input[type=color]:disabled,
input[type=range]:disabled,
input[type=file]:disabled,
.form-info-text:disabled {
  background-color: #e9ecef;
  color: #adb5bd;
}
input[type=text]:-moz-read-only, input[type=password]:-moz-read-only, input[type=tel]:-moz-read-only, input[type=email]:-moz-read-only, input[type=number]:-moz-read-only, input[type=search]:-moz-read-only, input[type=url]:-moz-read-only, input[type=date]:-moz-read-only, input[type=time]:-moz-read-only, input[type=datetime-local]:-moz-read-only, input[type=month]:-moz-read-only, input[type=week]:-moz-read-only, input[type=color]:-moz-read-only, input[type=range]:-moz-read-only, input[type=file]:-moz-read-only, .form-info-text:-moz-read-only {
  background-color: #f8f9fa;
  color: #adb5bd;
}
input[type=text]:read-only,
input[type=password]:read-only,
input[type=tel]:read-only,
input[type=email]:read-only,
input[type=number]:read-only,
input[type=search]:read-only,
input[type=url]:read-only,
input[type=date]:read-only,
input[type=time]:read-only,
input[type=datetime-local]:read-only,
input[type=month]:read-only,
input[type=week]:read-only,
input[type=color]:read-only,
input[type=range]:read-only,
input[type=file]:read-only,
.form-info-text:read-only {
  background-color: #f8f9fa;
  color: #adb5bd;
}
input[type=text].error,
input[type=password].error,
input[type=tel].error,
input[type=email].error,
input[type=number].error,
input[type=search].error,
input[type=url].error,
input[type=date].error,
input[type=time].error,
input[type=datetime-local].error,
input[type=month].error,
input[type=week].error,
input[type=color].error,
input[type=range].error,
input[type=file].error,
.form-info-text.error {
  border-color: #dc3545;
}

.form-info-text-with-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.form-info-text-with-button .form-info-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  cursor: not-allowed;
}
.form-info-text-with-button button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-container-with-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: #ffffff;
  color: #333;
  border-radius: 5px;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.input-container-with-button input[type=text], .input-container-with-button select, .input-container-with-button textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
}
.input-container-with-button button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.nameday-container .inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nameday-container .inputs input[name=nameday_month], .nameday-container .inputs .lookup-combo-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 1rem;
}
.nameday-container .inputs input[name=nameday_day] {
  width: 6rem;
}

.card-code-container input[name=pin_code] {
  width: 6rem;
  -moz-appearance: textfield;
}
.card-code-container input[name=pin_code] -webkit-outer-spin-button,
.card-code-container input[name=pin_code] -webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select {
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 20px;
}
select::-webkit-input-placeholder {
  color: #e6e6e6;
}
select::-moz-placeholder {
  color: #e6e6e6;
}
select:-ms-input-placeholder {
  color: #e6e6e6;
}
select::-ms-input-placeholder {
  color: #e6e6e6;
}
select::placeholder {
  color: #e6e6e6;
}
select:focus {
  outline: none;
  border-color: #3395ff;
}
select:disabled {
  background-color: #e9ecef;
  color: #adb5bd;
}
select.error {
  border-color: #dc3545;
}

textarea {
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 20px;
  min-height: 7rem;
  resize: none;
}
textarea::-webkit-input-placeholder {
  color: #e6e6e6;
}
textarea::-moz-placeholder {
  color: #e6e6e6;
}
textarea:-ms-input-placeholder {
  color: #e6e6e6;
}
textarea::-ms-input-placeholder {
  color: #e6e6e6;
}
textarea::placeholder {
  color: #e6e6e6;
}
textarea:focus {
  outline: none;
  border-color: #3395ff;
}
textarea:disabled {
  background-color: #e9ecef;
  color: #adb5bd;
}
textarea:-moz-read-only {
  background-color: #f8f9fa;
  color: #adb5bd;
}
textarea:read-only {
  background-color: #f8f9fa;
  color: #adb5bd;
}
textarea.error {
  border-color: #dc3545;
}

.input-group label {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  color: #666;
}

.label-hint {
  font-size: 1rem;
  color: #adb5bd;
  font-style: italic;
  padding-left: 2rem;
}

.center-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

.narrow-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}

.vertical-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.horizontal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 3rem;
}

.panel {
  background-color: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 16px;
  padding: 2rem 2rem;
}
.panel h1 {
  font-weight: 300;
  color: #495057;
}
.panel p {
  margin: 0;
  padding: 1.5rem 0;
}
.panel .panels-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
.panel .panels-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}

.login-form {
  min-width: 500px;
  max-width: 500px;
  width: 500px;
}

.check-card-form,
.point-adjustment-form {
  min-width: 800px;
  max-width: 800px;
  width: 800px;
}

.customer-details-form,
.user-details-form {
  max-width: calc(100vw - 2rem);
  width: 800px;
  /*max-height: calc(100vh - 138px);
  position: sticky;
  top: 40px;*/
}
.customer-details-form > form,
.user-details-form > form {
  max-height: calc(100vh - 230px);
  overflow-y: auto;
}

.customer-details-page {
  max-width: calc(100vw - 2rem);
  width: 800px;
  margin: 2rem auto;
}

.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 1rem;
}

.checkbox-grid-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}

.checkbox-item {
  display: block;
  width: 100%;
}
.checkbox-item input[type=checkbox] {
  display: none;
}
.checkbox-item input[type=checkbox] + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.checkbox-item input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #3395ff;
  background-color: #ffffff;
  border-radius: 50%;
  margin-right: 1.5rem;
  /*position: absolute;
  left: 1rem;
  top: 1rem;*/
}
.checkbox-item input[type=checkbox] + label:hover {
  background-color: #e9ecef;
}
.checkbox-item input[type=checkbox]:checked + label:before {
  content: "✓";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #3395ff;
  color: #ffffff;
  font-size: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  margin-right: 1.5rem;
  /*position: absolute;
  right: 1rem;
  top: 1rem;*/
}

.table-group {
  display: block;
  width: 100%;
  min-height: 150px;
  margin-bottom: 1.5rem;
}
.table-group label {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  color: #666;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.pagination .items-per-page-container .items-per-page {
  margin-bottom: 0;
  height: 42px;
  padding: 0.5rem;
  border: #dee2e6 1px solid;
  border-radius: 5px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.pagination .page-item {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border: #dee2e6 1px solid;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.pagination .page-item:hover {
  background-color: #dee2e6;
}
.pagination .page-item.active {
  background-color: #3395ff;
  color: #ffffff;
  border-color: #3395ff;
}
.pagination .page-item.first {
  content: "";
  background: url("/images/icons/first.svg") no-repeat center center;
  background-size: 24px;
  background-position: center;
}
.pagination .page-item.previous {
  content: "";
  background: url("/images/icons/previous.svg") no-repeat center center;
  background-size: 24px;
  background-position: center;
}
.pagination .page-item.next {
  content: "";
  background: url("/images/icons/next.svg") no-repeat center center;
  background-size: 24px;
  background-position: center;
}
.pagination .page-item.last {
  content: "";
  background: url("/images/icons/last.svg") no-repeat center center;
  background-size: 24px;
  background-position: center;
}
.pagination .last-page-number {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 1rem;
}
.pagination .last-page-number:before {
  content: "/";
  display: inline-block;
  margin: 0 1rem;
}
.pagination input[type=number]::-webkit-inner-spin-button,
.pagination input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pagination input[type=number] {
  -moz-appearance: textfield;
}
.pagination input[type=number] {
  max-width: 100px;
  width: 100px;
  height: 42px;
  text-align: center;
}

.center-info-box {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.center-info-box .info-box-header {
  width: 100%;
  margin: 3rem 0 1rem 0;
}

div.table {
  display: block;
  width: 100%;
  min-height: 150px;
  border-radius: 5px;
  overflow-x: auto;
  overflow-y: auto;
}
div.table .table-head {
  width: 100%;
}
div.table .table-head .table-head-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: #dee2e6 1px solid;
  overflow-x: visible;
}
div.table .table-head .table-head-row .table-head-cell {
  padding: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
div.table .table-head .table-head-row .table-head-cell:first-child {
  border-top-left-radius: 5px;
}
div.table .table-head .table-head-row .table-head-cell:last-child {
  border-top-right-radius: 5px;
}
div.table .table-head .table-head-row .table-head-cell[data-sort-direction="-1"] {
  cursor: pointer;
}
div.table .table-head .table-head-row .table-head-cell[data-sort-direction="-1"]:after {
  content: "▼";
  margin-left: 0.5rem;
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
div.table .table-head .table-head-row .table-head-cell[data-sort-direction="1"]:after {
  content: "▲";
  margin-left: 0.5rem;
  display: inline-block;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
div.table .table-head .table-head-row .table-head-cell[data-sort-column] {
  cursor: pointer;
}
div.table .table-head .table-head-row .table-head-cell[data-sort-column]:before {
  content: attr(data-sort-column);
  display: inline-block;
  position: absolute;
  right: 3rem;
  top: 1rem;
}
div.table .table-head .table-head-row.columns .table-head-cell {
  border-right: #dee2e6 1px solid;
}
div.table .table-head .table-head-row.columns .table-head-cell[data-sort-column]:hover {
  background-color: #f8f9fa;
}
div.table .table-body {
  width: 100%;
  min-height: 150px;
}
div.table .table-body .table-body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
div.table .table-body .table-body-row:hover {
  background-color: #dee2e6;
  cursor: pointer;
}
div.table .table-body .table-body-row.table-body-row-subitem {
  background-color: #b7efea;
}
div.table .table-body .table-body-row.table-body-row-subitem:hover {
  background-color: #8de6de;
}
div.table .table-body .table-body-row .total-point {
  font-weight: 500;
  color: #3395ff;
}
div.table .table-body .table-body-row .toggle-subitems {
  margin-left: unset;
  background-color: transparent;
  border: none;
  color: #495057;
  border: #dee2e6 1px solid;
  width: 42px;
  height: 42px;
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
div.table .table-body .table-body-row .toggle-subitems:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("/images/icons/up.svg") no-repeat center center;
  background-size: 24px;
}
div.table .table-body .table-body-row .toggle-subitems.active:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("/images/icons/down.svg") no-repeat center center;
  background-size: 24px;
}
div.table .table-body .table-body-row .table-body-cell {
  padding: 1rem;
  border-bottom: #dee2e6 1px solid;
  border-right: #f8f9fa 1px solid;
  border-radius: 0;
  overflow-x: visible;
}
div.table .table-body .table-body-row .table-body-cell > input,
div.table .table-body .table-body-row .table-body-cell > select,
div.table .table-body .table-body-row .table-body-cell > textarea,
div.table .table-body .table-body-row .table-body-cell > button,
div.table .table-body .table-body-row .table-body-cell > label {
  margin-bottom: 0;
}
div.table .table-body .table-body-row .table-body-cell.center-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
div.table .table-body .table-body-row.selected {
  background-color: #3395ff;
  color: #ffffff;
}
div.table .table-body .table-body-row.selected:hover {
  background-color: #007bff !important;
}
div.table .table-body.dialog-list {
  max-height: 200px;
  overflow-x: auto;
  overflow-y: auto;
}
div.table.table-light-gray {
  border: 2px solid #ccc;
}
div.table.table-light-gray .table-head .table-head-row .table-head-cell {
  background-color: #e9ecef;
  color: #495057;
  border-bottom: #ced4da 1px solid;
  border-right: #ced4da 1px solid;
}
div.table.table-light-gray .table-head .table-head-row .table-head-cell:last-child {
  border-right: none;
}
div.table.table-danger {
  border: 2px solid #dc3545;
}
div.table.table-danger .table-head .table-head-row .table-head-cell {
  background-color: #dc3545;
  color: #ffffff;
  border-bottom: #921925 1px solid;
  border-right: #921925 1px solid;
}
div.table.table-danger .table-head .table-head-row .table-head-cell:last-child {
  border-right: none;
}
div.table.table-danger .table-body .table-body-row {
  background-color: #f3b7bd;
}
div.table.table-danger .table-body .table-body-row .table-body-cell {
  border-bottom: #921925 1px solid;
  border-right: #921925 1px solid;
}
div.table.table-danger .table-body .table-body-row .table-body-cell > input,
div.table.table-danger .table-body .table-body-row .table-body-cell > select,
div.table.table-danger .table-body .table-body-row .table-body-cell > textarea,
div.table.table-danger .table-body .table-body-row .table-body-cell > button,
div.table.table-danger .table-body .table-body-row .table-body-cell > label {
  border-color: #bd2130;
}
div.table.table-danger .table-body .table-body-row .table-body-cell:last-child {
  border-right: none;
}
div.table.table-danger .table-body .table-body-row:hover {
  background-color: #e4606d !important;
}

.align-left {
  text-align: left !important;
}

.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.col-12 {
  width: 100%;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.purchase-form,
.redeem-form {
  width: 800px;
  max-width: 100;
  width: 1200px;
}

.redeem-form div.table-body {
  max-height: 300px !important;
}

label.required {
  color: #007bff;
}

.form-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  position: relative;
}
.form-header h1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.form-header .color-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
  padding-left: 2rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.form-header .color-info .color-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.form-header .color-info .color-info-item .color-info-color {
  display: box;
  width: 2rem;
  height: 2rem;
  border-radius: 5px;
  margin-right: 1rem;
}
.form-header .color-info .color-info-item .color-info-color.color-info-color-required {
  background-color: #007bff;
}
.form-header .close-button {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  padding: 0;
  margin: 0;
  background: #6c757d;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
}
.form-header .close-button:before {
  content: "×";
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  display: block;
  margin-top: -4px;
}
.form-header .close-button:hover {
  background-color: #dc3545;
}

.form-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-footer button {
  margin-left: 2rem;
  margin-right: unset;
}
.form-footer button:first-child {
  margin-left: 0;
}

.customer-list-form,
.user-list-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: calc(100vh - 270px);
}
.customer-list-form .panels-horizontal,
.user-list-form .panels-horizontal {
  height: 100%;
}
.customer-list-form .panels-horizontal .panel-filters,
.user-list-form .panels-horizontal .panel-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 340px;
  height: 100%;
  border-right: 1px solid #dee2e6;
  padding-right: 2rem;
}
.customer-list-form .panels-horizontal .panel-content,
.user-list-form .panels-horizontal .panel-content {
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  background-color: #ffffff;
}
.customer-list-form .panels-horizontal .panel-content .table-group,
.user-list-form .panels-horizontal .panel-content .table-group {
  margin-bottom: 0;
}
.customer-list-form .panels-horizontal .panel-content .table-group .table-body,
.user-list-form .panels-horizontal .panel-content .table-group .table-body {
  font-weight: 300;
}
.customer-list-form .panels-horizontal .panel-content .table-group .table-body .table-body-row .table-body-cell,
.user-list-form .panels-horizontal .panel-content .table-group .table-body .table-body-row .table-body-cell {
  line-height: 1.5;
}
.customer-list-form .panels-horizontal .panel-content .table-group .table-body .table-body-row .table-body-cell.operations,
.user-list-form .panels-horizontal .panel-content .table-group .table-body .table-body-row .table-body-cell.operations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customer-list-form .panels-horizontal .panel-content .table-group .table-body .table-body-row .table-body-cell.operations button:first-child,
.user-list-form .panels-horizontal .panel-content .table-group .table-body .table-body-row .table-body-cell.operations button:first-child {
  margin-left: 0 !important;
}
.customer-list-form .panels-horizontal .panel-content .table-group .table-body .table-body-row .table-body-cell .card-code,
.user-list-form .panels-horizontal .panel-content .table-group .table-body .table-body-row .table-body-cell .card-code {
  color: #3395ff;
}
.customer-list-form .panels-horizontal .panel-content .table-group .table-body .table-body-row .table-body-cell .card-code:hover,
.user-list-form .panels-horizontal .panel-content .table-group .table-body .table-body-row .table-body-cell .card-code:hover {
  text-decoration: underline;
}
.customer-list-form .card-code-cell,
.user-list-form .card-code-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.customer-list-form .card-code-cell .tooltip,
.user-list-form .card-code-cell .tooltip {
  max-width: 200px;
}
.customer-list-form .card-code-cell .tooltip.tooltip-secondary,
.user-list-form .card-code-cell .tooltip.tooltip-secondary {
  background-color: #6c757d;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.customer-list-form .card-code-cell .tooltip.tooltip-secondary:hover,
.user-list-form .card-code-cell .tooltip.tooltip-secondary:hover {
  background-color: #545b62;
}

.club-card-info-form {
  width: 100%;
}
.club-card-info-form .customer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.club-card-info-form .customer-info .avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 2rem;
}
.club-card-info-form .customer-info .owner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.club-card-info-form .customer-info .owner .owner-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  line-height: 1.5;
}
.club-card-info-form .customer-info .owner .owner-info-item .owner-name {
  font-size: 2rem;
}
.club-card-info-form .customer-info .owner .owner-info-item .button-edit-owner {
  display: block;
  width: 26px;
  height: 26px;
  background-color: #3395ff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
  margin: 0.5rem 0 0 1rem;
}
.club-card-info-form .customer-info .owner .owner-info-item .button-edit-owner:hover {
  background-color: #007bff;
}
.club-card-info-form .customer-info .owner .owner-info-item .button-edit-owner:before {
  display: block;
  width: 26px;
  height: 26px;
  content: "";
  background: url("/images/icons/person-vcard.svg") no-repeat center center;
  background-size: 20px;
  position: absolute;
  left: 0px;
  top: 0px;
}
.club-card-info-form .customer-info .owner .owner-info-item .button-send-mail {
  display: block;
  width: 26px;
  height: 26px;
  background-color: #3395ff;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
  margin: 0.5rem 0 0 1rem;
}
.club-card-info-form .customer-info .owner .owner-info-item .button-send-mail:hover {
  background-color: #007bff;
}
.club-card-info-form .customer-info .owner .owner-info-item .button-send-mail:before {
  display: block;
  width: 26px;
  height: 26px;
  content: "";
  background: url("/images/icons/email.svg") no-repeat center center;
  background-size: 20px;
  position: absolute;
  left: 0px;
  top: 0px;
}
.club-card-info-form .customer-info .owner .owner-info-item .card-type-name {
  font-weight: 600;
}
.club-card-info-form .customer-info .money-spent,
.club-card-info-form .customer-info .number-of-purchases,
.club-card-info-form .customer-info .cart-value,
.club-card-info-form .customer-info .last-purchase {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-right: 2rem;
  padding-right: 2rem;
  border-right: #dee2e6 1px solid;
  min-width: 200px;
}
.club-card-info-form .customer-info .money-spent:last-child,
.club-card-info-form .customer-info .number-of-purchases:last-child,
.club-card-info-form .customer-info .cart-value:last-child,
.club-card-info-form .customer-info .last-purchase:last-child {
  border-right: none;
  margin-right: 0;
}
.club-card-info-form .customer-info .money-spent .value,
.club-card-info-form .customer-info .number-of-purchases .value,
.club-card-info-form .customer-info .cart-value .value,
.club-card-info-form .customer-info .last-purchase .value {
  font-size: 2rem;
  font-weight: 400;
}
.club-card-info-form .customer-info .money-spent .bottom-label,
.club-card-info-form .customer-info .number-of-purchases .bottom-label,
.club-card-info-form .customer-info .cart-value .bottom-label,
.club-card-info-form .customer-info .last-purchase .bottom-label {
  font-size: 1.2rem;
  color: #495057;
  margin-top: 0.8rem;
}
.club-card-info-form .customer-info .button-current-balance {
  display: block;
  width: 100%;
  max-width: 200px;
  margin-top: 2rem;
  background-color: #dc3545;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.club-card-info-form .customer-info .button-current-balance:hover {
  background-color: #bd2130;
}
.club-card-info-form .customer-info .button-current-balance:before {
  display: block;
  width: 26px;
  height: 26px;
  content: "";
  background: url("/images/icons/points.svg") no-repeat center center;
  background-size: 20px;
  position: absolute;
  left: 4px;
  top: 4px;
}
.club-card-info-form .customer-info .button-current-balance:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.club-card-info-form .panel-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.club-card-info-form .panel-content .tools {
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 3rem;
}
.club-card-info-form .panel-content .tools button {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  width: 100%;
  height: 80px;
  padding-left: 85px;
  position: relative;
  border: 0;
}
.club-card-info-form .panel-content .tools button.button-point-adjustment:before {
  display: block;
  width: 60px;
  height: 60px;
  content: "";
  background: #6c757d url("/images/icons/pencil.svg") no-repeat center center;
  background-size: 40px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 10px;
}
.club-card-info-form .panel-content .tools button.button-purchase:before {
  display: block;
  width: 60px;
  height: 60px;
  content: "";
  background: #6f42c1 url("/images/icons/purchase.svg") no-repeat center center;
  background-size: 40px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 10px;
}
.club-card-info-form .panel-content .tools button.button-redeem:before {
  display: block;
  width: 60px;
  height: 60px;
  content: "";
  background: #dc3545 url("/images/icons/spend.svg") no-repeat center center;
  background-size: 40px;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 10px;
}
.club-card-info-form .panel-content .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.btn {
  max-width: 200px;
  min-height: 42px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  padding: 1rem 2rem;
  border-radius: 5px;
}
.btn.btn-danger {
  background-color: #dc3545;
  color: #ffffff;
}
.btn.btn-danger:hover {
  background-color: #bd2130;
}
.btn.btn-success {
  background-color: #28a745;
  color: #ffffff;
}
.btn.btn-success:hover {
  background-color: #1e7e34;
}
.btn.btn-primary {
  background-color: #3395ff;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: #007bff;
}
.btn.btn-secondary {
  background-color: #6c757d;
  color: #ffffff;
}
.btn.btn-secondary:hover {
  background-color: #545b62;
}
.btn.btn-warning {
  background-color: #dc622e;
  color: #ffffff;
}
.btn.btn-warning:hover {
  background-color: #b84d1f;
}
.btn.btn-sm {
  font-size: 1rem !important;
  padding: 0.5rem 1rem !important;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.input-warning {
  border-color: #dc622e !important;
  color: #dc622e !important;
}

.label-warning {
  color: #dc622e !important;
}

.icon-btn {
  padding: 0.5rem;
  min-width: 42px;
  min-height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button-toolbar button {
  margin-right: 1rem;
}
.button-toolbar button:last-child {
  margin-right: 0;
}

.submit-button {
  display: block;
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  background-color: #28a745;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.submit-button:hover {
  background-color: #1e7e34;
}

.cancel-button {
  display: block;
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  background-color: #6c757d;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.cancel-button:hover {
  background-color: #545b62;
}

.label-info {
  color: #17a2b8;
  padding-left: 1rem;
}

h1 {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
.main-menu .row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  list-style-type: none;
  list-style: none;
  padding: 1rem 3rem;
  margin: 0;
  border-bottom: #dee2e6 1px solid;
}
.main-menu .row1 .franchise-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  padding-left: 4rem;
}
.main-menu .row1 .user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-menu .row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  list-style-type: none;
  list-style: none;
  padding: 1rem;
  margin: 0;
  border-bottom: #dee2e6 1px solid;
}
.main-menu .row2 li {
  white-space: nowrap;
  padding: 1rem 2rem;
}
.main-menu .row2 li > ul {
  display: none;
}
.main-menu .row2 li:hover > ul {
  list-style-type: none;
  list-style: none;
  display: block;
  position: absolute;
  background-color: #ffffff;
  border: #dee2e6 1px solid;
  border-radius: 0rem;
  padding: 1rem;
  margin-top: 1rem;
  min-width: 500px;
  z-index: 1;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
}
.modal-backdrop.hidden {
  display: none;
  opacity: 0;
}
.modal-backdrop.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.modal-backdrop .modal-dialog {
  background-color: #ffffff;
  border: #dee2e6 1px solid;
  border-radius: 16px;
  padding: 2rem 2rem;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 3rem;
}
.modal-backdrop .modal-dialog .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 2rem;
}
.modal-backdrop .modal-dialog .modal-header .modal-title {
  font-size: 2rem;
  font-weight: 500;
  padding: 0;
  margin: 0;
}
.modal-backdrop .modal-dialog .modal-header .close-button {
  padding: 0;
  margin: 0;
  background: #6c757d;
  border: none;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
}
.modal-backdrop .modal-dialog .modal-header .close-button:before {
  content: "×";
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-top: -4px;
}
.modal-backdrop .modal-dialog .modal-header .close-button:hover {
  background-color: #dc3545;
}
.modal-backdrop .modal-dialog .modal-body {
  padding: 2rem 0;
  display: block;
  width: 100%;
  border-top: #dee2e6 1px solid;
  border-bottom: #dee2e6 1px solid;
}
.modal-backdrop .modal-dialog .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-backdrop .modal-dialog .modal-button {
  display: block;
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  border: none;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.modal-backdrop .modal-dialog .modal-button.danger {
  background-color: #dc3545;
  color: #ffffff;
}
.modal-backdrop .modal-dialog .modal-button.danger:hover {
  background-color: #bd2130;
}
.modal-backdrop .modal-dialog .modal-button.success {
  background-color: #28a745;
  color: #ffffff;
}
.modal-backdrop .modal-dialog .modal-button.success:hover {
  background-color: #1e7e34;
}
.modal-backdrop .modal-dialog .modal-button.primary {
  background-color: #3395ff;
  color: #ffffff;
}
.modal-backdrop .modal-dialog .modal-button.primary:hover {
  background-color: #007bff;
}
.modal-backdrop .modal-dialog .modal-button.secondary {
  background-color: #6c757d;
  color: #ffffff;
}
.modal-backdrop .modal-dialog .modal-button.secondary:hover {
  background-color: #545b62;
}
.modal-backdrop .modal-dialog .modal-button.warning {
  background-color: #dc622e;
  color: #ffffff;
}
.modal-backdrop .modal-dialog .modal-button.warning:hover {
  background-color: #b84d1f;
}
.modal-backdrop .modal-dialog.primary {
  border-color: #3395ff;
  background-color: #3395ff;
  color: #ffffff;
}
.modal-backdrop .modal-dialog.primary .modal-button {
  background-color: #ffffff !important;
  color: #212529 !important;
}
.modal-backdrop .modal-dialog.primary .close-button {
  background: #ffffff !important;
}
.modal-backdrop .modal-dialog.primary .close-button:before {
  color: #212529;
}
.modal-backdrop .modal-dialog.success {
  border-color: #28a745;
  background-color: #28a745;
  color: #ffffff;
}
.modal-backdrop .modal-dialog.success .modal-button {
  background-color: #ffffff !important;
  color: #212529 !important;
}
.modal-backdrop .modal-dialog.success .close-button {
  background: #ffffff !important;
}
.modal-backdrop .modal-dialog.success .close-button:before {
  color: #212529;
}
.modal-backdrop .modal-dialog.danger {
  border-color: #dc3545;
  background-color: #dc3545;
  color: #ffffff;
}
.modal-backdrop .modal-dialog.danger .modal-button {
  background-color: #ffffff !important;
  color: #212529 !important;
}
.modal-backdrop .modal-dialog.danger .close-button {
  background: #ffffff !important;
}
.modal-backdrop .modal-dialog.danger .close-button:before {
  color: #212529;
}
.modal-backdrop .modal-dialog.warning {
  border-color: #dc622e;
  background-color: #dc622e;
  color: #ffffff;
}
.modal-backdrop .modal-dialog.warning .modal-button {
  background-color: #ffffff !important;
  color: #212529 !important;
}
.modal-backdrop .modal-dialog.warning .close-button {
  background: #ffffff !important;
}
.modal-backdrop .modal-dialog.warning .close-button:before {
  color: #212529;
}
.modal-backdrop .modal-dialog.confirm {
  border-color: #007bff;
  background-color: #007bff;
  color: #ffffff;
}
.modal-backdrop .modal-dialog.confirm .modal-button {
  background-color: #ffffff !important;
  color: #212529 !important;
}
.modal-backdrop .modal-dialog.confirm .close-button {
  background: #ffffff !important;
}
.modal-backdrop .modal-dialog.confirm .close-button:before {
  color: #212529;
}
.modal-backdrop .modal-dialog.secondary {
  border-color: #6c757d;
  background-color: #6c757d;
  color: #ffffff;
}
.modal-backdrop .modal-dialog.secondary .modal-button {
  background-color: #ffffff !important;
  color: #212529 !important;
}
.modal-backdrop .modal-dialog.secondary .close-button {
  background: #ffffff !important;
}
.modal-backdrop .modal-dialog.secondary .close-button:before {
  color: #212529;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}
.tooltip .tooltip-text {
  visibility: hidden;
  max-width: 350px;
  background-color: #6c757d;
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  position: absolute;
  z-index: 1;
  bottom: calc(100% + 5px);
  left: 50%;
  /* Középen */
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /* Középen tartás */
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #6c757d transparent transparent transparent;
}
.tooltip.tooltip-danger .tooltip-text {
  background-color: #dc3545 !important;
}
.tooltip.tooltip-secondary .tooltip-text {
  background-color: #6c757d !important;
}
.tooltip.tooltip-right .tooltip-text {
  left: calc(100% + 5px);
  bottom: unset;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  padding: 0.5rem 1rem;
  min-height: 2.2rem;
}
.tooltip.tooltip-right .tooltip-text:after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: -10px;
  margin-left: 0;
  border-width: 5px;
  border-style: solid;
}
.tooltip.tooltip-right.tooltip-danger .tooltip-text:after {
  border-color: transparent #dc3545 transparent transparent !important;
}
.tooltip.tooltip-right.tooltip-secondary .tooltip-text:after {
  border-color: transparent #6c757d transparent transparent !important;
}
.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.badge {
  background-color: #ffffff;
  color: #212529;
  padding: 0.25rem 1rem;
  border-radius: 5px;
  white-space: nowrap;
}

.list-of-tasks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 3rem 0 0 3rem;
}
.list-of-tasks .task-item {
  width: 400px;
  margin: 0 3rem 3rem 0;
  padding: 2rem;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.5rem;
}
.list-of-tasks .task-item .task-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.list-of-tasks .task-item .task-item-header .task-item-title {
  font-weight: 400;
  font-size: 2rem;
}
.list-of-tasks .task-item .task-item-header .task-item-tools {
  font-weight: 400;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.list-of-tasks .task-item .task-item-header .task-item-tools .task-item-edit {
  display: block;
  width: 42px;
  height: 42px;
  background: transparent url("/images/icons/pencil.svg") no-repeat center center;
  background-size: 36px;
  background-position: center;
  border: none;
  margin-left: 0.5rem;
}
.list-of-tasks .task-item .task-item-header .task-item-tools .task-item-delete {
  display: block;
  width: 42px;
  height: 42px;
  background: transparent url("/images/icons/trash.svg") no-repeat center center;
  background-size: 36px;
  background-position: center;
  border: none;
  margin-left: 0.5rem;
}
.list-of-tasks .task-item .task-item-coupon {
  background-color: #444 !important;
  width: 100%;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  padding: 1rem;
}
.list-of-tasks .task-item .task-item-body {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.list-of-tasks .task-item .task-item-body .task-item-gross-total,
.list-of-tasks .task-item .task-item-body .task-item-points-total {
  width: 100%;
  white-space: nowrap;
  padding-bottom: 0.5rem;
}
.list-of-tasks .task-item .task-item-body .task-item-invoice {
  width: 100%;
  margin-top: 2rem;
}
.list-of-tasks .task-item .task-item-body .task-item-comment {
  width: 100%;
  font-size: 1rem;
  margin-top: 1rem;
}
.list-of-tasks .task-item .task-item-body .badge {
  margin-left: 1rem;
}
.list-of-tasks .task-item.task-item-invoice {
  background-color: #6f42c1;
  color: #ffffff;
}
.list-of-tasks .task-item.task-item-redeem {
  background-color: #dc3545;
  color: #ffffff;
}
.list-of-tasks .task-item.task-item-redeem .task-item-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  font-size: 1rem;
}
.list-of-tasks .task-item.task-item-redeem .task-item-products .task-item-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.5rem 0;
  border-bottom: #dee2e6 1px solid;
}
.list-of-tasks .task-item.task-item-redeem .task-item-products .task-item-product:last-child {
  border-bottom: none;
}
.list-of-tasks .task-item.task-item-redeem .task-item-products .task-item-product .product-name {
  font-weight: 400;
  font-size: 1.5rem;
}
.list-of-tasks .task-item.task-item-redeem .task-item-products .task-item-product .badge {
  font-size: 1rem;
}
.list-of-tasks .task-item.task-item-total {
  width: 100%;
  background-color: #ffffff;
  color: #212529;
  margin-right: 0;
}
.list-of-tasks .task-item.task-item-total button {
  background-color: #6f42c1;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  letter-spacing: 1px;
  margin-top: 2rem;
}
.list-of-tasks .task-item.task-item-total button:hover {
  background-color: #59339d;
}

.text-primary {
  color: #3395ff;
}

.text-secondary {
  color: #6c757d;
}

.text-danger {
  color: #dc3545;
}

.text-warning {
  color: #dc622e;
}

.text-success {
  color: #28a745;
}

.text-info {
  color: #17a2b8;
}

.text-light {
  color: #f8f9fa;
}

.text-dark {
  color: #212529;
}

.text-white {
  color: #ffffff;
}

.text-gray {
  color: #adb5bd;
}

.text-gray-light {
  color: #dee2e6;
}

.text-gray-dark {
  color: #495057;
}

.text-gray-darker {
  color: #212529;
}

.text-gray-lighter {
  color: #f8f9fa;
}

.text-gray-lightest {
  color: #e9ecef;
}

.button-icon {
  display: block;
  width: 32px;
  height: 32px;
}

.icon-load {
  background: transparent url("/images/icons/reload-white.svg") no-repeat center center;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-export {
  background: transparent url("/images/icons/cloud-download-white.svg") no-repeat center center;
  background-position: center;
  background-repeat: no-repeat;
}

.icon-add {
  background: transparent url("/images/icons/circle-plus.svg") no-repeat center center;
  background-position: center;
  background-repeat: no-repeat;
}

button.loading {
  cursor: not-allowed;
}
button.loading .button-icon {
  -webkit-animation: rotate 1s linear infinite;
          animation: rotate 1s linear infinite;
}

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

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.panel-filters .panel-header-caption {
  font-weight: 400;
  color: #495057;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.panel-filters .panel-header-caption:first-child {
  margin-top: 0;
}
.panel-filters .panel-header-title {
  font-weight: 500;
  color: #495057;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.panel-filters .selections,
.panel-filters .checkbox-combo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}
.panel-filters .selections button.selected-items,
.panel-filters .selections button.switch-items,
.panel-filters .checkbox-combo button.selected-items,
.panel-filters .checkbox-combo button.switch-items {
  width: 100%;
  max-width: unset !important;
  position: relative;
  overflow-x: hidden;
}
.panel-filters .selections button.selected-items:after,
.panel-filters .selections button.switch-items:after,
.panel-filters .checkbox-combo button.selected-items:after,
.panel-filters .checkbox-combo button.switch-items:after {
  content: "▼";
  display: block;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.panel-filters .selections .selection-items,
.panel-filters .checkbox-combo .selection-items {
  width: 100%;
  max-width: unset !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.panel-filters .selections .checkbox-combo-title,
.panel-filters .checkbox-combo .checkbox-combo-title {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 300;
  color: #6c757d;
  margin: 2rem 0 1rem 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.panel-filters .selections .switch-item,
.panel-filters .checkbox-combo .switch-item {
  display: block;
  width: 100%;
  background-color: #ffffff;
  padding: 1rem;
  border-bottom: #dee2e6 1px solid;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.panel-filters .selections .switch-item:last-child,
.panel-filters .checkbox-combo .switch-item:last-child {
  border-bottom: none;
}
.panel-filters .selections .switch-item:hover,
.panel-filters .checkbox-combo .switch-item:hover {
  background-color: #f8f9fa;
}
.panel-filters .selections .checkbox-item,
.panel-filters .checkbox-combo .checkbox-item {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border-bottom: #dee2e6 1px solid;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.panel-filters .selections .checkbox-item:last-child,
.panel-filters .checkbox-combo .checkbox-item:last-child {
  border-bottom: none;
}
.panel-filters .selections .checkbox-item:hover,
.panel-filters .checkbox-combo .checkbox-item:hover {
  background-color: #f8f9fa;
}
.panel-filters .selections .checkbox-item label,
.panel-filters .checkbox-combo .checkbox-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 1rem;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.panel-filters .selections .checkbox-item input[type=checkbox],
.panel-filters .checkbox-combo .checkbox-item input[type=checkbox] {
  display: none;
}
.panel-filters .selections .checkbox-item input[type=checkbox]:checked + label:after,
.panel-filters .checkbox-combo .checkbox-item input[type=checkbox]:checked + label:after {
  content: "✓";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #3395ff;
  color: #ffffff;
  font-size: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.panel-filters .filters {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.panel-filters .filters .numeric-range {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.panel-filters .filters .numeric-range .numeric-range-title {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 300;
  color: #6c757d;
  margin: 2rem 0 1rem 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.panel-filters .filters .numeric-range .numeric-range-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.panel-filters .filters .numeric-range .numeric-range-inputs .numeric-range-min {
  width: calc(50% - 0.5rem);
  margin-right: 1rem;
}
.panel-filters .filters .numeric-range .numeric-range-inputs .numeric-range-min input {
  width: 100%;
  margin: 0;
}
.panel-filters .filters .numeric-range .numeric-range-inputs .numeric-range-max {
  width: calc(50% - 0.5rem);
}
.panel-filters .filters .numeric-range .numeric-range-inputs .numeric-range-max input {
  width: 100%;
  margin: 0;
}
.panel-filters .filters .date-time {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.panel-filters .filters .date-time .date-time-title {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 300;
  color: #6c757d;
  margin: 2rem 0 1rem 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.panel-filters .filters .date-time .date-time-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.panel-filters .filters .date-time .date-time-input input {
  width: 100%;
  margin: 0;
}

.status-active {
  color: #28a745;
}

.status-inactive {
  color: #dc3545;
}

@media screen and (min-width: 769px) {
  .pl-md-1 {
    padding-left: 1rem !important;
  }
  .pl-md-2 {
    padding-left: 2rem !important;
  }
  .pl-md-3 {
    padding-left: 3rem !important;
  }
  .pr-md-1 {
    padding-right: 1rem !important;
  }
  .pr-md-2 {
    padding-right: 2rem !important;
  }
  .pr-md-3 {
    padding-right: 3rem !important;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
.info-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1rem;
  border-radius: 5px;
  margin-top: 2rem;
  padding: 0.5rem;
}
.info-panel .info-panel-header {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ffffff;
  padding: 1rem 0;
  position: relative;
}
.info-panel .info-panel-header.purchases:before {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  top: 10px;
  width: 24px;
  height: 24px;
  background: url("/images/icons/shopping-cart.svg") no-repeat center center;
  background-size: 24px;
}
.info-panel .info-panel-header.points:before {
  content: "";
  display: block;
  position: absolute;
  left: 6px;
  top: 10px;
  width: 24px;
  height: 24px;
  background: url("/images/icons/points.svg") no-repeat center center;
  background-size: 24px;
}
.info-panel .info-panel-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0rem;
}
.info-panel .info-panel-item .info-panel-item-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.info-panel .info-panel-item .info-panel-item-value {
  width: 120px;
  text-align: right;
}
.info-panel.info-panel-purple {
  background-color: #6f42c1;
  color: #ffffff;
}
.info-panel.info-panel-danger {
  background-color: #dc3545;
  color: #ffffff;
}

body {
  font-family: "Rubik", Helvetica, "Trebuchet MS", Verdana, sans-serif;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
body.body-size-1 {
  font-size: 1rem;
}
body.body-size-1 button,
body.body-size-1 input,
body.body-size-1 select,
body.body-size-1 textarea,
body.body-size-1 .form-info-text {
  font-size: 1rem;
}
body.body-size-1 .input-group label {
  font-size: 1rem;
}
body.body-size-1 .customer-info .money-spent .value,
body.body-size-1 .customer-info .number-of-purchases .value,
body.body-size-1 .customer-info .cart-value .value,
body.body-size-1 .customer-info .last-purchase .value {
  font-size: 2rem;
  font-weight: 300;
}
body.body-size-2 {
  font-size: 1.2rem;
}
body.body-size-2 button,
body.body-size-2 input,
body.body-size-2 select,
body.body-size-2 textarea,
body.body-size-2 .form-info-text {
  font-size: 1.2rem;
}
body.body-size-2 .input-group label {
  font-size: 1.2rem;
}
body.body-size-2 .customer-info .money-spent .value {
  font-size: 2rem;
}
body.body-size-2 .customer-info .number-of-purchases .value {
  font-size: 2rem;
}
body.body-size-2 .customer-info .cart-value .value {
  font-size: 2rem;
}
body.body-size-2 .customer-info .last-purchase .value {
  font-size: 2rem;
}
body .lookup-combo-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}
body .lookup-combo-wrapper.active .lookup-combo-options {
  display: block;
}
body .lookup-combo-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #333;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 20px;
}
body .lookup-combo-input:focus {
  border-color: #007bff;
}
body .lookup-combo-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
}
body .lookup-combo-option {
  padding: 10px;
  cursor: pointer;
}
body .lookup-combo-option:hover {
  background-color: #80bdff;
}
body .lookup-combo-option.active {
  background-color: #007bff;
  color: #fff;
}