@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/* lg */
/* sm */
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-2 {
  font-size: 1.1rem;
}
body.user-not-logged-in {
  background-color: #0c54c8;
  background-image: url("/images/backgrounds/user-not-logged-in.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body.user-logged-in {
  background-color: #0c54c8;
  background-image: url("/images/backgrounds/user-logged-in.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 992px) {
  body.user-not-logged-in, body.user-logged-in {
    background-position: inherit;
  }
}
@media screen and (min-width: 993px) {
  body.user-not-logged-in, body.user-logged-in {
    background-position: center;
  }
}

* {
  -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-0 {
  margin-bottom: 0 !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;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

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

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

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

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

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

.text-size-big {
  font-size: 2rem !important;
  line-height: 1.4 !important;
}

.text-size-middle {
  font-size: 1.5rem !important;
  line-height: 1.4 !important;
}

.text-size-small {
  font-size: 1rem !important;
  line-height: 1.4 !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.top-border {
  border-top: 1px solid #dee2e6;
}

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

.alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
  font-size: 1.6rem;
}
.alert.alert-danger {
  background-color: #dc3545;
  color: #ffffff;
}
.alert.alert-success {
  background-color: #28a745;
  color: #ffffff;
}
.alert.alert-primary {
  background-color: #0c54c8;
  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: 0 solid #ccc;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  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 {
    padding: 1rem;
    border-radius: 0.75rem;
    font-size: 1.15rem !important;
  }
}
@media screen and (min-width: 993px) {
  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 {
    padding: 2rem;
    border-radius: 1rem;
    font-size: 1.3rem !important;
  }
}
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: #0c54c8;
}
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;
}

select {
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #333;
  border: 0 solid #ccc;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 20px;
  font-size: 1.3rem !important;
}
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: #0c54c8;
}
select:disabled {
  background-color: #e9ecef;
  color: #adb5bd;
}
select.error {
  border-color: #dc3545;
}

textarea {
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #333;
  border: 0 solid #ccc;
  border-radius: 1rem;
  padding: 2rem;
  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: #0c54c8;
}
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: calc(100vh - 245px);
  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;
}
@media screen and (max-width: 992px) {
  .content-container {
    padding: 1rem;
  }
}

.panel {
  background-color: #f8f9fa;
  border: 0;
}
.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%;
}
@media screen and (max-width: 992px) {
  .panel {
    padding: 1rem 1rem;
    border-radius: 0.75rem;
  }
  .panel h1 {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 993px) {
  .panel {
    padding: 2rem 2rem;
    border-radius: 1rem;
  }
}

.login-form {
  min-width: 500px;
  max-width: 500px;
  width: 500px;
  background-color: #0c54c8;
}
.login-form h1, .login-form label {
  color: #ffffff;
}
.login-form a.forgotten-password {
  color: #ffffff;
  font-size: 1.3rem;
  text-align: center;
  display: block;
}
@media screen and (max-width: 992px) {
  .login-form {
    width: 100%;
    max-width: 100%;
    min-width: unset;
  }
  .login-form .signup-button {
    margin-top: 1rem !important;
  }
  .login-form a.forgotten-password {
    padding: 0.5rem 0 0 0;
  }
}
@media screen and (min-width: 993px) {
  .login-form .signup-button {
    margin-top: 3rem !important;
  }
  .login-form a.forgotten-password {
    padding: 2rem 0 0 0;
  }
}

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

.signup-form, .unsubscribe-form, .my-profile-form, .forgotten-password-form {
  max-width: calc(100vw - 2rem);
  width: 800px;
  margin: 0 auto 3rem auto;
  /*max-height: calc(100vh - 138px);
  position: sticky;
  top: 40px;*/
}
.signup-form > form, .unsubscribe-form > form, .my-profile-form > form, .forgotten-password-form > form {
  /*max-height: calc(100vh - 230px);
  overflow-y: auto;*/
}
.signup-form > form input, .signup-form > form select, .signup-form > form textarea, .unsubscribe-form > form input, .unsubscribe-form > form select, .unsubscribe-form > form textarea, .my-profile-form > form input, .my-profile-form > form select, .my-profile-form > form textarea, .forgotten-password-form > form input, .forgotten-password-form > form select, .forgotten-password-form > form textarea {
  border: 1px solid #ced4da;
  padding: 0.75rem 1rem;
}
@media screen and (max-width: 992px) {
  .signup-form > form, .unsubscribe-form > form, .my-profile-form > form, .forgotten-password-form > form {
    max-height: unset !important;
    overflow-y: unset !important;
  }
}

.checkbox-group {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}
.checkbox-group.full-width {
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}
.checkbox-group .checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.checkbox-group .checkbox-item input[type=checkbox] {
  display: none;
}
.checkbox-group .checkbox-item input[type=checkbox] + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem 3rem;
  border: 0 solid #ccc;
  border-radius: 1rem;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1;
  min-height: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox-group .checkbox-item input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #0c54c8;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: 0.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.checkbox-group .checkbox-item input[type=checkbox] + label:hover {
  background-color: #e9ecef;
}
.checkbox-group .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: #0c54c8;
  color: #ffffff;
  font-size: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  position: absolute;
  left: 0.5rem;
  top: 50%;
}
@media screen and (max-width: 992px) {
  .checkbox-group .checkbox-item input[type=checkbox] + label {
    padding: 0.5rem 0.5rem 0.5rem 3rem;
    margin-bottom: 0;
  }
  .checkbox-group .checkbox-item input[type=checkbox] + label:before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid #0c54c8;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 0.5rem;
    top: 0.5rem;
  }
  .checkbox-group .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: #0c54c8;
    color: #ffffff;
    font-size: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    position: absolute;
    right: 1rem;
    top: 0.5rem;
  }
}
.checkbox-group .checkbox-item.single-line input[type=checkbox] + label {
  min-height: 1.75rem;
  padding: 0.5rem 0 0.75rem 3rem;
}
.checkbox-group .checkbox-item.check-all-line input[type=checkbox] + label {
  min-height: 3rem;
  padding: 1rem 0 0.75rem 3rem !important;
}
.checkbox-group.terms {
  grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  grid-gap: 0;
}
.checkbox-group.terms .checkbox-item {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 0;
}
.checkbox-group.terms .checkbox-item label {
  display: block !important;
}
.checkbox-group.terms .checkbox-item input[type=checkbox] {
  display: none;
}
.checkbox-group.terms .checkbox-item input[type=checkbox] + label {
  padding: 0.5rem 0 0.75rem 3rem;
  margin-bottom: 0;
  /*&::before {
      top: 0.75rem;
  }*/
}

.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: 1rem;
  -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: 1rem;
  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: #0c54c8;
  color: #ffffff;
  border-color: #0c54c8;
}
.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] {
  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: 1rem;
  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: 1rem;
}
div.table .table-head .table-head-row .table-head-cell:last-child {
  border-top-right-radius: 1rem;
}
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: #0c54c8;
}
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: #0c54c8;
  color: #ffffff;
}
div.table .table-body .table-body-row.selected:hover {
  background-color: #094098 !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;
}
.purchase-form .toolbar, .redeem-form .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;
  width: 100%;
}
.purchase-form .toolbar h2, .redeem-form .toolbar h2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 3rem;
}
.purchase-form .toolbar .buttons, .redeem-form .toolbar .buttons {
  width: 615px;
  margin-bottom: 1.5rem;
}
.purchase-form .toolbar .buttons > a, .redeem-form .toolbar .buttons > a {
  margin: 0 1rem 0 0;
  background-color: #ffffff;
  border: 1px solid #0c54c8;
  color: #0c54c8;
  padding: 0.5rem 1rem;
  text-align: center;
  white-space: nowrap;
  max-width: unset;
}
.purchase-form .toolbar .buttons > a:last-child, .redeem-form .toolbar .buttons > a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1360px) {
  .purchase-form .toolbar, .redeem-form .toolbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .purchase-form .toolbar h2, .redeem-form .toolbar h2 {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .purchase-form .toolbar .buttons, .redeem-form .toolbar .buttons {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .purchase-form .toolbar .buttons > a, .redeem-form .toolbar .buttons > a {
    margin: 0 0 1rem 0;
    width: 100%;
  }
}

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

.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 .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: #0c54c8;
}

.purchase-form, .use-form {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.purchase-form h2, .use-form h2 {
  color: #0c54c8;
}
.purchase-form .product-list, .use-form .product-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(450px, 1fr) 2rem minmax(450px, 1fr) 2rem minmax(450px, 1fr);
  grid-template-columns: repeat(3, minmax(450px, 1fr));
  grid-gap: 2rem;
}
@media screen and (max-width: 1360px) {
  .purchase-form .product-list, .use-form .product-list {
    -ms-grid-columns: minmax(450px, 1fr) 2rem minmax(450px, 1fr);
    grid-template-columns: repeat(2, minmax(450px, 1fr));
  }
}
@media screen and (max-width: 992px) {
  .purchase-form .product-list, .use-form .product-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-columns: unset;
    grid-template-columns: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.purchase-form .product-list .product, .use-form .product-list .product {
  background-color: #0c54c8;
  color: #ffffff;
  border-radius: 1rem;
  min-height: 10rem;
  padding: 2rem;
}
.purchase-form .product-list .product.type-1, .use-form .product-list .product.type-1 {
  background-color: #0c54c8;
}
.purchase-form .product-list .product.type-2, .use-form .product-list .product.type-2 {
  background-color: #17a2b8;
}
.purchase-form .product-list .product.type-3, .use-form .product-list .product.type-3 {
  background-color: #28a745;
}
.purchase-form .product-list .product .value, .use-form .product-list .product .value {
  font-size: 2rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: 6px;
  background-color: #ffffff;
  color: #0c54c8;
  text-align: center;
}
.purchase-form .product-list .product .name, .use-form .product-list .product .name {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  display: block;
  width: 100%;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
}
.purchase-form .product-list .product .details, .use-form .product-list .product .details {
  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;
}
.purchase-form .product-list .product .details .detail-item, .use-form .product-list .product .details .detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
}
.purchase-form .product-list .product .details .detail-item .label, .use-form .product-list .product .details .detail-item .label {
  font-size: 1rem;
  color: #dee2e6;
  margin-top: 1rem;
}
.purchase-form .product-list .product .details .detail-item .available, .purchase-form .product-list .product .details .detail-item .valid-to, .use-form .product-list .product .details .detail-item .available, .use-form .product-list .product .details .detail-item .valid-to {
  font-size: 1.5rem;
  color: #ffffff;
  margin-top: 1rem;
}
@media screen and (max-width: 992px) {
  .purchase-form .product-list .product .details, .use-form .product-list .product .details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .purchase-form .product-list .product .details .detail-item, .use-form .product-list .product .details .detail-item {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.purchase-form .product-list .product .description, .use-form .product-list .product .description {
  width: 100%;
  font-size: 1.2rem;
  color: #ffffff;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.purchase-form .product-list .product.type-1 .name, .use-form .product-list .product.type-1 .name {
  border-top: 1px solid #4689f4;
}
.purchase-form .product-list .product.type-1 .description, .use-form .product-list .product.type-1 .description {
  border-top: 1px solid #4689f4;
}
.purchase-form .product-list .product.type-2 .name, .use-form .product-list .product.type-2 .name {
  border-top: 1px solid #4cd3e9;
}
.purchase-form .product-list .product.type-2 .description, .use-form .product-list .product.type-2 .description {
  border-top: 1px solid #4cd3e9;
}
.purchase-form .product-list .product.type-3 .name, .use-form .product-list .product.type-3 .name {
  border-top: 1px solid #5dd879;
}
.purchase-form .product-list .product.type-3 .description, .use-form .product-list .product.type-3 .description {
  border-top: 1px solid #5dd879;
}
.purchase-form .product-list .product .buttons, .use-form .product-list .product .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.5rem 0 0 0;
}
.purchase-form .product-list .product .buttons button, .use-form .product-list .product .buttons button {
  background-color: #fac927;
  color: #212529;
  border: none;
  border-radius: 1rem;
  padding: 0.5rem 2rem;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.purchase-form .product-list .product .buttons button:hover, .use-form .product-list .product .buttons button:hover {
  background-color: #e9b405;
}

.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;
}
@media screen and (max-width: 992px) {
  .btn {
    padding: 1rem 1.2rem;
    border-radius: 1.2rem;
  }
}
@media screen and (min-width: 993px) {
  .btn {
    padding: 1.2rem 1.5rem;
    border-radius: 1.5rem;
  }
}
.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: #0c54c8;
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: #094098;
}
.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;
}

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

.button {
  width: 100%;
  display: block;
  max-width: 200px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .button {
    padding: 1rem 1.2rem;
    border-radius: 1.2rem;
    font-size: 1.1rem !important;
  }
}
@media screen and (min-width: 993px) {
  .button {
    padding: 1.2rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 1.3rem !important;
  }
}
@media screen and (max-width: 768px) {
  .button {
    margin-top: 1rem !important;
  }
}
@media screen and (min-width: 769px) {
  .button {
    margin-top: 3rem !important;
  }
}
.button.current {
  background-color: #fd7e14 !important;
  color: #ffffff !important;
  border-color: #dc6502 !important;
}

.submit-button {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.submit-button:hover {
  background-color: #ffffff;
  color: #0c54c8;
}

.signup-button, .unsubscribe-button {
  background-color: #fac927;
  color: #212529;
  border: 1px solid #fac927;
  white-space: nowrap;
  width: 450px;
  max-width: 100%;
  margin: 0 auto !important;
}
.signup-button:hover, .unsubscribe-button:hover {
  background-color: #e9b405;
  color: #212529;
}
.signup-button:disabled, .unsubscribe-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media screen and (max-width: 992px) {
  .signup-button, .unsubscribe-button {
    font-size: 1rem !important;
  }
}

.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;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 992px) {
  .cancel-button {
    padding: 1rem 1.2rem;
    border-radius: 1.2rem;
  }
}
@media screen and (min-width: 993px) {
  .cancel-button {
    border-radius: 1rem;
    padding: 2rem;
  }
}
.cancel-button:hover {
  background-color: #545b62;
}

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

.input-group 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: end;
      -ms-flex-align: end;
          align-items: end;
}
.input-group label .required-field {
  color: #007bff;
  margin-left: 1rem;
}

.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: calc(100vw - 6rem);
  margin: 1rem 3rem 2rem 3rem;
}
@media screen and (max-width: 992px) {
  .main-menu .logo {
    height: 60px;
  }
  .main-menu .logo img {
    height: 100%;
  }
}
@media screen and (min-width: 993px) {
  .main-menu .logo {
    height: 80px;
  }
  .main-menu .logo img {
    height: 100%;
  }
}
.main-menu h1 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #0c54c8;
  padding: 0 0 0 1rem;
  margin-bottom: 1rem;
}
.main-menu .menuitems {
  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;
  margin: 0;
  background-color: #0c54c8;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 992px) {
  .main-menu .menuitems {
    border-radius: 0.75rem;
    padding: 0 1rem 0 0;
    min-height: 45px;
  }
}
@media screen and (min-width: 993px) {
  .main-menu .menuitems {
    border-radius: 1rem;
    padding: 0 1rem 0 0;
    min-height: 80px;
  }
}
.main-menu .menuitems .toggle-menu {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 0 2rem 0 0;
  border: none;
  background-color: #0c54c8;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.main-menu .menuitems .toggle-menu:before {
  content: "☰";
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  display: block;
  margin-top: -4px;
}
.main-menu .menuitems li {
  white-space: nowrap;
  padding: 1rem;
}
.main-menu .menuitems li.logo {
  margin-right: auto;
}
.main-menu .menuitems li.login {
  margin-left: auto;
}
.main-menu .menuitems li a, .main-menu .menuitems li span {
  color: #ffffff;
  font-size: 1.2rem;
}
.main-menu .menuitems li.signup {
  padding-right: 0 !important;
}
.main-menu .menuitems li.signup a {
  color: #212529;
  background-color: #fac927;
  border-radius: 1rem;
  padding: 1rem 2rem;
  margin-right: 1rem;
}
.main-menu .menuitems li > ul {
  display: none;
}
.main-menu .menuitems 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;
}

@media screen and (min-width: 1281px) and (max-width: 1650px) {
  .main-menu .menuitems li {
    padding: 0.5rem;
  }
  .main-menu .menuitems li a, .main-menu .menuitems li span {
    font-size: 1rem;
  }
  .main-menu .menuitems li.user-name {
    position: fixed;
    top: 1.5rem;
    right: 5rem;
    background-color: #fac927;
    color: #212529;
    padding: 1rem;
    border-radius: 1rem;
  }
  .main-menu .menuitems li.user-name a {
    color: #212529;
  }
}
@media screen and (max-width: 1280px) {
  .main-menu .menuitems {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .main-menu .menuitems li {
    padding: 0.3rem;
  }
  .main-menu .menuitems li a, .main-menu .menuitems li span {
    font-size: 14px;
  }
  .main-menu .menuitems li.item {
    display: none;
  }
  .main-menu .menuitems li.user-name {
    position: absolute;
    display: block;
    top: 1.5rem;
    right: 5rem;
  }
  .main-menu .menuitems li.user-name a {
    font-size: 1.4rem;
  }
  .main-menu .menuitems .toggle-menu {
    display: block;
  }
  .main-menu .menuitems.mobile-menu-open {
    padding-bottom: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-menu .menuitems.mobile-menu-open .item {
    display: block;
  }
  .main-menu .menuitems.mobile-menu-open .item a {
    text-align: left;
    font-size: 1.4rem;
  }
  .main-menu .menuitems.mobile-menu-open .toggle-menu:before {
    content: "×";
  }
}
@media screen and (max-width: 992px) {
  .main-menu {
    width: calc(100vw - 2rem);
    margin: 1rem 1rem 1rem 1rem;
  }
  .main-menu h1 {
    text-align: center;
    padding: 0 0 0 0;
    margin: 0 0 1rem 0;
  }
  .main-menu .menuitems {
    min-height: 45px;
    padding-left: 0.5rem;
  }
  .main-menu .menuitems li.logo img {
    width: 130px;
  }
  .main-menu .menuitems li.user-name {
    position: absolute;
    display: block;
    top: 1rem;
    right: 4rem;
  }
  .main-menu .menuitems li.user-name a {
    font-size: 1rem !important;
  }
  .main-menu .menuitems li.login {
    margin-left: unset;
  }
  .main-menu .menuitems li.signup a {
    color: #ffffff;
    background-color: unset;
    border-radius: unset;
    padding: unset;
    margin-right: unset;
  }
  .main-menu .menuitems .toggle-menu {
    top: 10px;
    margin: 0;
    right: 10px;
  }
  .purchase-form .toolbar h2 {
    text-align: center;
  }
}
.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;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 3rem;
}
@media screen and (max-width: 992px) {
  .modal-backdrop .modal-dialog {
    border-radius: 0.75rem;
    padding: 2rem 1rem;
  }
}
@media screen and (min-width: 993px) {
  .modal-backdrop .modal-dialog {
    border-radius: 1rem;
    padding: 2rem 2rem;
  }
}
.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;
  font-size: 1.4rem;
  line-height: 1.4;
}
.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;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 992px) {
  .modal-backdrop .modal-dialog .modal-button {
    border-radius: 0.75rem;
    padding: 1rem;
  }
}
@media screen and (min-width: 993px) {
  .modal-backdrop .modal-dialog .modal-button {
    border-radius: 1rem;
    padding: 2rem;
  }
}
.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: #0c54c8;
  color: #ffffff;
}
.modal-backdrop .modal-dialog .modal-button.primary:hover {
  background-color: #094098;
}
.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: #0c54c8;
  background-color: #0c54c8;
  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.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;
  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;
}
@media screen and (max-width: 992px) {
  .tooltip .tooltip-text {
    border-radius: 5px;
  }
}
@media screen and (min-width: 993px) {
  .tooltip .tooltip-text {
    border-radius: 5px;
  }
}
.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;
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .badge {
    padding: 0.25rem 1rem;
    border-radius: 5px;
  }
}
@media screen and (min-width: 993px) {
  .badge {
    padding: 0.25rem 1rem;
    border-radius: 5px;
  }
}

.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;
  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;
}
@media screen and (max-width: 992px) {
  .list-of-tasks .task-item {
    border-radius: 0.75rem;
  }
}
@media screen and (min-width: 993px) {
  .list-of-tasks .task-item {
    border-radius: 1rem;
  }
}
.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-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;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  letter-spacing: 1px;
  margin-top: 2rem;
}
@media screen and (max-width: 992px) {
  .list-of-tasks .task-item.task-item-total button {
    border-radius: 0.75rem;
    padding: 1rem 1.2rem;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 993px) {
  .list-of-tasks .task-item.task-item-total button {
    border-radius: 1rem;
    padding: 1.2rem 1.5rem;
    font-size: 1.3rem;
  }
}
.list-of-tasks .task-item.task-item-total button:hover {
  background-color: #59339d;
}

.text-primary {
  color: #0c54c8;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.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: block;
  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: #0c54c8;
  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: 993px) {
  .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;
  margin-top: 2rem;
  padding: 0.5rem;
}
@media screen and (max-width: 992px) {
  .info-panel {
    border-radius: 0.75rem;
  }
}
@media screen and (min-width: 993px) {
  .info-panel {
    border-radius: 1rem;
  }
}
.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;
}

.my-card {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh - 245px);
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
}
.my-card h2 {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 3rem;
  color: #0c54c8;
}
.my-card .owner-name {
  width: 700px;
  font-size: 3rem;
  font-weight: 300;
  background-color: #ffffff;
  color: #0c54c8;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 20px;
}
.my-card .card-container {
  -webkit-perspective: 1000px;
          perspective: 1000px;
  position: relative;
  width: 700px;
  height: 400px;
  margin-bottom: 3rem;
}
.my-card .card-container .card {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.my-card .card-container .card.flipped {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.my-card .card-container .card .front,
.my-card .card-container .card .back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  top: 0;
  left: 0;
}
.my-card .card-container .card .back {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@media screen and (max-width: 992px) {
  .my-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .my-card .card-container {
    width: 100%;
    padding: 0 1rem;
    height: 300px;
  }
  .my-card .card-container .card img {
    width: 100%;
  }
  .my-card .owner-name {
    width: calc(100% - 2rem);
    margin: 0 1rem;
    font-size: 1.6rem;
    padding: 1rem;
    border-radius: 1rem;
  }
}
div.info-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  width: 600px;
  padding: 3rem;
  margin-top: 2rem;
  font-size: 1.4rem;
  color: #212529;
  background-color: #ffffff;
}
@media screen and (max-width: 992px) {
  div.info-line {
    border-radius: 1.2rem;
  }
}
@media screen and (min-width: 993px) {
  div.info-line {
    border-radius: 1.5rem;
  }
}

.policy, .privacy-terms, .my-rights {
  background-color: #f8f9fa;
  border: 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 992px) {
  .policy, .privacy-terms, .my-rights {
    border-radius: 0.75rem;
    padding: 1rem 1rem;
  }
}
@media screen and (min-width: 993px) {
  .policy, .privacy-terms, .my-rights {
    border-radius: 1rem;
    padding: 2rem 2rem;
  }
}

.big-text {
  font-size: 2rem;
}