/**********************************/
/*** CSS FRAMEWORK 1.0 ***/
/**********************************/
:root {
  --crmpam-bg-primary: #141128;
  --crmpam-bg-secondary: #000000;
  --crmpam-bg-tertiary: #000000;
  --crmpam-bg-dark-tertiary: #000000;
  --crmpam-bg-color-primary: #eeeeee;
  --crmpam-bg-color-primary-light: #eeeeee;
  --crmpam-bg-color-secondary: #000000;
  --crmpam-bg-color-secondary-light: #4e4e4e;
  --crmpam-bg-color-success: #2bb376;
  --crmpam-bg-color-error: #e50000;
  --crmpam-bg-color-warning: #e19b32;
  --crmpam-color-primary: #ffffff;
  --crmpam-color-primary-light: #ffffff;
  --crmpam-color-secondary: #ffffff;
  --crmpam-color-secondary-light: #ffffff;
  --crmpam-text-xsmall: 0.35rem;
  --crmpam-text-small: 0.5rem;
  --crmpam-text-normal: 0.75rem;
  --crmpam-text-medium: 1rem;
  --crmpam-text-big: 1.25rem;
  --crmpam-font: "principal", Arial, sans-serif;
  --crmpam-border-radius: 4px;
  --crmpam-btn-color-primary: #6d6d6d;
  --crmpam-btn-color-primary-hover: #000000;
  --crmpam-btn-color-secondary: #4e4e4e;
  --crmpam-btn-color-secondary-hover: #323232;
  --crmpam-btn-color-tertiary: #000000;
  --crmpam-btn-color-tertiary-hover: #000000;
  --crmpam-btn-color-primary-text: #000000;
  --crmpam-color-overlay: rgb(54 54 54 / 85%);
}
html,
body,
.crmpam-content {
  height: 100%;
  width: 100%;
  min-height: 100%;
  min-height: -webkit-fill-available;
  max-height: -webkit-fill-available;
  height: -webkit-fill-available;
}
body {
  margin: 0;
  background: var(--hdr-bg-2);
  color: var(--crmpam-color-primary);
  font-family: var(--crmpam-font);
  font-size: var(--crmpam-text-normal);
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  font-display: swap;
}

::-webkit-scrollbar {
  width: 6px;
  height: 0px;
}
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:active {
  background: var(--crmpam-color-tertiary);
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
  background: var(--crmpam-color-secondary);
}

/*Background*/
.crmpam-bg-primary {
  background: var(--crmpam-bg-primary);
}
.crmpam-bg-primary-light {
  background: var(--crmpam-bg-color-primary-light);
}
.crmpam-bg-secondary {
  background: var(--crmpam-bg-secondary);
}
.crmpam-bg-secondary-light {
  background: var(--crmpam-bg-color-secondary-light);
}
.crmpam-bg-tertiary-light {
  background: var(--crmpam-bg-tertiary);
}
.crmpam-bg-tertiary {
  background: var(--crmpam-bg-dark-tertiary);
}

/*Text*/
p,
.crmpam-p {
  font-size: var(--crmpam-text-normal);
  color: var(--crmpam-color-primary);
}
.crmpam-p-small {
  font-size: var(--crmpam-text-small) !important;
}
.crmpam-p-xsmall {
  font-size: var(--crmpam-text-xsmall) !important;
}
h1,
.crmpam-h1 {
  font-size: var(--crmpam-text-big);
}
h2,
.crmpam-h2 {
  font-size: var(--crmpam-text-medium);
}
a,
.crmpam-link {
  cursor: pointer;
  font-size: var(--crmpam-text-normal);
  color: var(--crmpam-color-secondary);
  background: none !important;
  transition: 0.3s;
  text-decoration: none;
}
a:hover,
.crmpam-link:hover {
  color: var(--crmpam-color-secondary);
}
.crmpam-link-secondary {
  cursor: pointer;
  font-size: var(--crmpam-text-normal);
  color: var(--crmpam-color-primary);
  transition: 0.3s;
}
.crmpam-link-secondary:hover {
  cursor: pointer;
  font-size: var(--crmpam-text-normal);
  color: var(--crmpam-color-tertiary);
}
.crmpam-link-secondary:hover * {
  color: var(--crmpam-color-secondary-light);
  fill: var(--crmpam-color-secondary-light);
  transition: 0.3s;
}
.crmpam-link-list {
  cursor: pointer;
  border-bottom: 1px solid var(--crmpam-bg-color-secondary);
  font-size: var(--crmpam-text-small);
}
.crmpam-link-list:hover {
  background: var(--crmpam-bg-color-secondary);
}
.crmpam-txtc {
  text-align: center;
}
.crmpam-txtr {
  text-align: right;
}
.crmpam-txtl {
  text-align: left;
}
.crmpam-capitalize {
  text-transform: capitalize;
}
.crmpam-uppercase {
  text-transform: uppercase;
}
.crmpam-bold {
  font-weight: bold;
}
.crmpam-text-decoration {
  text-decoration: none !important;
}
.crmpam-text-underlined {
  text-decoration: underline;
}
.crmpam-yellow-text {
  color: var(--crmpam-color-tertiary);
}
.crmpam-white-text {
  color: #ffffff;
}
.crmpam-black-text {
  color: #000000;
}
.crmpam-text-nowrap {
  white-space: nowrap;
}
.crmpam-text-2-lines {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.crmpam-text-3-lines {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}

/*Size*/
.crmpam-w25 {
  width: 25%;
  min-width: 25%;
  max-width: 25%;
}
.crmpam-w50 {
  width: 50%;
  min-width: 50%;
  max-width: 50%;
}
.crmpam-w75 {
  width: 75%;
  min-width: 75%;
  max-width: 75%;
}
.crmpam-w85 {
  width: 85%;
  min-width: 85%;
  max-width: 85%;
}
.crmpam-w100 {
  width: 100%;
  max-width: 100%;
}
.crmpam-h100 {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}
.crmpam-vh100 {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
}
@media (max-width: 450px) {
  .crmpam-p40 {
    padding: 20px !important;
  }
  .crmpam-ph40 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .crmpam-m20 {
    margin: 10px !important;
  }
  .crmpam-w25,
  .crmpam-w50,
  .crmpam-w75 {
    width: 100% !important;
    min-width: 100%;
    max-width: 100%;
  }
  .crmpam-btn-absolute {
    top: 20px !important;
    right: 32px !important;
  }
  .crmpam-btn-primary,
  .crmpam-btn-secondary,
  .crmpam-btn-tertiary {
    width: 100%;
  }
  .crmpam-buttons-container .crmpam-btn-primary,
  .crmpam-buttons-container .crmpam-btn-secondary,
  .crmpam-buttons-container .crmpam-btn-secondary {
    width: calc(100% - 20px);
  }
}
/*Margin*/
.crmpam-m-auto {
  margin: 0 auto !important;
}

.crmpam-m5 {
  margin: 5px;
}
.crmpam-mv5 {
  margin-top: 5px;
  margin-bottom: 5px;
}
.crmpam-mh5 {
  margin-left: 5px;
  margin-right: 5px;
}
.crmpam-mt5 {
  margin-top: 5px;
}
.crmpam-mb5 {
  margin-bottom: 5px;
}
.crmpam-mr5 {
  margin-right: 5px;
}
.crmpam-ml5 {
  margin-left: 5px;
}
.crmpam-m10 {
  margin: 10px;
}
.crmpam-mv10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.crmpam-mh10 {
  margin-left: 10px;
  margin-right: 10px;
}
.crmpam-mt10 {
  margin-top: 10px;
}
.crmpam-mb10 {
  margin-bottom: 10px;
}
.crmpam-mr10 {
  margin-right: 10px;
}
.crmpam-ml10 {
  margin-left: 10px;
}
.crmpam-m20 {
  margin: 20px;
}
.crmpam-mv20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.crmpam-mh20 {
  margin-left: 20px;
  margin-right: 20px;
}
.crmpam-mt20 {
  margin-top: 20px;
}
.crmpam-mb20 {
  margin-bottom: 20px;
}
.crmpam-mr20 {
  margin-right: 20px;
}
.crmpam-ml20 {
  margin-left: 20px;
}
.crmpam-m40 {
  margin: 40px;
}
.crmpam-mv40 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.crmpam-mh40 {
  margin-left: 40px;
  margin-right: 40px;
}
.crmpam-mt40 {
  margin-top: 40px;
}
.crmpam-mb40 {
  margin-bottom: 40px;
}
.crmpam-mr40 {
  margin-right: 40px;
}
.crmpam-ml40 {
  margin-left: 40px;
}
.crmpam-m60 {
  margin: 60px;
}
.crmpam-mv60 {
  margin-top: 60px;
  margin-bottom: 60px;
}
.crmpam-mh60 {
  margin-left: 60px;
  margin-right: 60px;
}
.crmpam-mt60 {
  margin-top: 60px;
}
.crmpam-mb60 {
  margin-bottom: 60px;
}
.crmpam-mr60 {
  margin-right: 60px;
}
.crmpam-ml60 {
  margin-left: 60px;
}

/*Padding*/
.crmpam-p0 {
  padding: 0px;
}
.crmpam-pv5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.crmpam-p10 {
  padding: 10px;
}
.crmpam-pv10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.crmpam-ph10 {
  padding-left: 10px;
  padding-right: 10px;
}
.crmpam-pt10 {
  padding-top: 10px;
}
.crmpam-pb10 {
  padding-bottom: 10px;
}
.crmpam-pr10 {
  padding-right: 10px;
}
.crmpam-pl10 {
  padding-left: 10px;
}
.crmpam-p20 {
  padding: 20px;
}
.crmpam-pv20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.crmpam-ph20 {
  padding-left: 20px;
  padding-right: 20px;
}
.crmpam-pt20 {
  padding-top: 20px;
}
.crmpam-pb20 {
  padding-bottom: 20px;
}
.crmpam-pr20 {
  padding-right: 20px;
}
.crmpam-pl20 {
  padding-left: 20px;
}
.crmpam-p40 {
  padding: 40px;
}
.crmpam-pv40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.crmpam-ph40 {
  padding-left: 40px;
  padding-right: 40px;
}
.crmpam-pt40 {
  padding-top: 40px;
}
.crmpam-pb40 {
  padding-bottom: 40px;
}
.crmpam-pr40 {
  padding-right: 40px;
}
.crmpam-pl40 {
  padding-left: 40px;
}
.crmpam-p60 {
  padding: 60px;
}
.crmpam-pv60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.crmpam-ph60 {
  padding-left: 60px;
  padding-right: 60px;
}
.crmpam-pt60 {
  padding-top: 60px;
}
.crmpam-pb60 {
  padding-bottom: 60px;
}
.crmpam-pr60 {
  padding-right: 60px;
}
.crmpam-pl60 {
  padding-left: 60px;
}

/*BORDER*/
.crmpam-border-bottom {
  border-bottom: 1px solid var(--crmpam-btn-color-secondary-hover);
}

/*Display*/
.crmpam-block {
  display: block;
}
.crmpam-hidden {
  display: none !important;
}
.crmpam-invisible {
  opacity: 0 !important;
}
.crmpam-flex {
  display: flex;
}
.crmpam-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.crmpam-flex-center .login-icon {
  cursor: pointer;
  margin-right: 4px;
  color: white;
  height: 24px;
}
.crmpam-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.crmpam-flex-between-start {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.crmpam-flex-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.crmpam-flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.crmpam-flex-align-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.crmpam-flex-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.crmpam-flex-wrap {
  flex-wrap: wrap;
}
.crmpam-flex-grow1 {
  flex-grow: 1;
}
.crmpam-flex-grow2 {
  flex-grow: 2;
}
.crmpam-flex-gap20 {
  gap: 20px;
}

/*Position*/
.crmpam-relative {
  position: relative;
}
.crmpam-absolute {
  position: absolute;
}

/*Overflow*/
.crmpam-no-overflow {
  overflow: hidden !important;
  text-overflow: ellipsis;
}

/*Border radius*/
.crmpam-border-radius {
  border-radius: var(--crmpam-border-radius);
}
.crmpam-no-border {
  border: none !important;
}
.crmpam-border-1 {
  border: 1px solid var(--crmpam-bg-secondary);
}

/*Z-index*/
.crmpam-zindex0 {
  z-index: 0;
}
.crmpam-zindex1 {
  z-index: 9;
}
.crmpam-zindex2 {
  z-index: 99;
}
.crmpam-zindex3 {
  z-index: 999;
}
.crmpam-zindex4 {
  z-index: 9999;
}

/*Butons*/
.crmpam-btn-primary,
.crmpam-btn-secondary,
.crmpam-btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  padding: 0px 16px;
  height: 32px;
  border: none;
  cursor: pointer;
  background: #242424;
  color: var(--crmpam-color-primary-light);
  font-size: var(--crmpam-text-normal);
  border-radius: 100px;
}
.crmpam-btn-primary.crmpam-btn-small,
.crmpam-btn-secondary.crmpam-btn-small,
.crmpam-btn-tertiary.crmpam-btn-small {
  height: 30px;
  background-size: cover;
}
/* .crmpam-btn-primary {
  background-image: url("/assets/img/primary-button.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: #ffffff;
} */

.crmpam-btn-secondary {
  background-image: url("/assets/img/secondary-button.webp");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}
.crmpam-btn-primary:hover,
.crmpam-btn-secondary:hover {
  opacity: 0.7;
}
.crmpam-btn-tertiary {
  background: transparent;
  border: 1px solid var(--crmpam-btn-color-primary);
  color: var(--crmpam-btn-color-primary);
}
.crmpam-btn-tertiary:hover {
  background: rgb(255 255 255 / 30%);
  border: 1px solid var(--crmpam-btn-color-primary);
  color: var(--crmpam-btn-color-primary);
}
.crmpam-btn-tertiary.crmpam-btn-dark {
  background: transparent;
  border: 1px solid var(--crmpam-color-primary);
  color: var(--crmpam-color-primary);
}
.crmpam-icon-button {
  padding: 0 16px 0 6px !important;
}
.crmpam-rounded-icon-button {
  width: 42px;
  min-width: 42px;
  height: 42px;
  border-radius: 100%;
}
.crmpam-square-icon-button {
  width: 42px;
  min-width: 42px;
  height: 42px;
}
.crmpam-btn-absolute {
  position: absolute;
  top: 40px;
  right: 52px;
  padding: 0;
}

.ver-mas {
margin: 0 5px;
    display: flex;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    padding: 1px 10px;
    align-items: center;
    border-radius: 100px;
    text-decoration: none;
    justify-content: center;
    background: linear-gradient(to var(--direccion), var(--background-2), var(--background-2));
}

@media (max-width: 560px) {
  .crmpam-btn-container {
    flex-wrap: wrap;
  }
  .crmpam-btn-container button {
    margin: 20px 0px 0px 0px;
    width: 100% !important;
    min-width: 100%;
  }
}
.crmpam-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}
.crmpam-pointer {
  cursor: pointer;
}

/*Inputs*/
.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: var(--crmpam-btn-color-secondary) !important;
}
label.Mui-focused {
  color: var(--crmpam-btn-color-secondary) !important;
}
.crmpam-dark-form .crmpam-input fieldset,
.crmpam-dark-form .crmpam-select fieldset,
.crmpam-dark-form .Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: rgb(255 255 255 / 20%) !important;
}
.crmpam-dark-form .crmpam-input *,
.crmpam-dark-form .crmpam-select *,
.crmpam-dark-form .crmpam-select-label *,
.crmpam-dark-form label.Mui-focused,
.crmpam-dark-form .crmpam-formControl * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}
.crmpam-dark-form .crmpam-input > div,
.crmpam-dark-form .crmpam-select > div {
  background: rgb(255 255 255 / 10%);
  border-radius: 50px;
}
.crmpam-dark-form .crmpam-formError {
  padding: 5px 0px 0 5px;
  background: none;
  color: #d96767;
}
.crmpam-dark-form .crmpam-formError * {
  fill: #d96767;
  padding: 0px;
}
.crmpam-dark-form .crmpam-formError.MuiAlert-standardSuccess {
  color: #29b95f;
}
.crmpam-dark-form .crmpam-formError.MuiAlert-standardSuccess * {
  fill: #29b95f;
  padding: 0px;
}
.crmpam-dark-form input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.crmpam-dark-form .crmpam-checkbox * {
  fill: #fff;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
}
input:-webkit-autofill {
  -webkit-text-fill-color: var(--crmpam-color-primary) !important;
}
.crmpam-dark-form input:-webkit-autofill,
.crmpam-dark-form input:-webkit-autofill:hover,
.crmpam-dark-form input:-webkit-autofill:focus,
.crmpam-dark-form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
}
.crmpam-dark-form input:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
}
.crmpam-input,
.crmpam-input * {
  appearance: none !important;
  -webkit-appearance: none !important;
}
input::-webkit-date-and-time-value {
  text-align: left;
}
.crmpam-formControl {
  min-width: 150px;
}
.crmpam-fake-input {
  overflow-x: auto;
  padding: 11px;
  border: solid 1px #ffffff;
  border-radius: 8px;
  background-color: rgb(238 238 238 / 20%);
  color: white;
  min-width: 230px;
}

/*Messages*/
.crmpam-success-message,
.crmpam-error-message,
.crmpam-warning-message {
  color: #fff;
  padding: 10px;
  border-radius: var(--crmpam-border-radius);
}
.crmpam-success-message {
  background: var(--crmpam-bg-color-success);
}
.crmpam-error-message {
  background: var(--crmpam-bg-color-error);
}
.crmpam-warning-message {
  background: #f5c043;
}

.crmpam-doc-PENDING {
  color: var(--crmpam-bg-color-warning);
}
.crmpam-doc-DENIED {
  color: var(--crmpam-bg-color-error);
}
.crmpam-doc-APPROVED {
  color: var(--crmpam-bg-color-success);
}

/*Icons*/
.crmpam-white-icon {
  color: #ffffff;
  fill: #ffffff;
}
.crmpam-light-icon {
  color: var(--crmpam-color-primary);
  fill: var(--crmpam-color-primary);
}
.crmpam-input-icon {
  position: absolute;
  right: 14px;
}

/*Tables*/
table {
  width: 100%;
  border-spacing: 0px;
}
table tr {
  height: 46px;
  text-align: left;
}
.crmpam-table table tr:empty {
  display: none;
}
table tr th {
  background: var(--crmpam-bg-color-secondary-light);
  color: #fff;
  padding: 0px 10px;
  border-right: 1px solid rgb(0 0 0 / 30%);
}
table tr th:first-child {
  border-radius: var(--crmpam-border-radius) 0 0 0;
}
table tr th:last-child {
  border-radius: 0 var(--crmpam-border-radius) 0 0;
  border-right: none;
}
table tr td {
  border-bottom: 1px solid #eeeeee;
  padding: 0px 10px;
}
.crmpam-table {
  width: 100%;
  overflow: auto;
}
.crmpam-table tbody tr td {
  background: rgb(255 255 255 / 80%);
  border-right: 1px solid rgb(0 0 0 / 10%);
  white-space: nowrap;
  color: var(--crmpam-color-secondary);
}
.crmpam-table tbody tr td:last-child {
  border-right: none;
}
.crmpam-table tbody tr:nth-child(odd) td {
  background: #ffffff;
}
.crmpam-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--crmpam-border-radius);
}
.crmpam-table tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--crmpam-border-radius) 0;
}
.crmpam-table-empty {
  border-radius: 0 0 var(--crmpam-border-radius) var(--crmpam-border-radius);
  background: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.crmpam-table-empty svg {
  width: 2em;
  height: 2em;
  margin-bottom: 20px;
}

/*TABS*/
.crmpam-tabs .crmpam-tab {
  color: #fff;
  background: rgb(255 255 255 / 10%);
  text-transform: none;
}
.crmpam-tabs .crmpam-tab:first-child {
  border-radius: var(--crmpam-border-radius) 0 0 0;
}
.crmpam-tabs .crmpam-tab:last-child {
  border-radius: 0 var(--crmpam-border-radius) 0 0;
}
.crmpam-tabs .crmpam-tab.Mui-selected {
  color: var(--crmpam-color-tertiary);
  background: rgb(255 255 255 / 15%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-bottom: none;
}
.crmpam-tabs .MuiTabs-indicator {
  background-color: var(--crmpam-color-tertiary);
}
.crmpam-tabPanel {
  background: rgb(255 255 255 / 15%);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 0 var(--crmpam-border-radius);
}

/*FRAGMENTS*/
.crmpam-fragmentText * {
  color: #fff;
}
.crmpam-fragmentText p {
  padding-left: 20px;
  line-height: 24px;
}
.crmpam-fragmentText ul,
.crmpam-fragmentText ol {
  padding-left: 60px;
  line-height: 24px;
}
.crmpam-fragmentText .crmpam-table tbody * {
  color: #000;
}

/*LOADER*/
.crmpam-loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--crmpam-btn-color-secondary);
  border-bottom-color: var(--crmpam-btn-color-primary);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.crmpam-loader-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 77%);
  z-index: 1;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

:root {
  --gp-cashier-button-width: 20px;
  --gp-cashier-button-height: 20px;
  --gp-cashier-button-background-colour: gray;
  --gp-cashier-button-border-size: 2px;
  --gp-cashier-button-border-colour: black;
  --gp-cashier-button-svg-top: 4px;
  --gp-fill-colour: black;
  --gp-icon-blackground-colour: black;
}
