@charset "utf-8";

@import "system.css";

/* CSS Document */

* {
  font-family: var(--lj-font-sans-serif);
}

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

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: var(--lj-font-primary-light);
  font-family: var(--lj-font-sans-serif);
  font-weight: 400;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  scrollbar-color: var(--lj-bg-light);
}

body.bgWhite,
html.bgWhite {
  background-color: var(--lj-white);
}

body.bgWhite p,
body.bgWhite h2 {
  color: #545454;
  font-size: 18px;
}

html,
body {
  height: 100vh;
  background-color: var(--lj-bg-light, #545454);
}

p {
  margin: 0 0 10px 0;
}

a {
  color: var(--lj-font-primary-light);
  text-decoration: none;
  outline: none;
}

a:focus,
a:active,
button,
button:focus,
button:active {
  outline: none;
}

img {
  border: none 0;
}

strong {
  font-weight: var(--lj-font-bold);
}

h1 {
  font-size: 1.5rem;
  margin: 0 0 8px 0;
  padding: 0;
  font-weight: var(--lj-font-bold);
  color: var(--lj-font-primary-light);
}

h2 {
  font-size: 17px;
  margin: 5px 0 5px 0;
  padding: 0;
  font-weight: var(--lj-font-medium);
  color: var(--lj-font-primary-light);
}

h3 {
  font-weight: 400;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  text-align: center;
}

.redColor {
  color: var(--lj-primary) !important;
}

.bold {
  font-weight: var(--lj-font-bold);
}

header {
  padding: 0;
  height: 60px;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--lj-white);
  transition: 0.15s;
  display: flex;
  align-items: center;
}

header.shadow {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: 0.15s;
}

section {
  padding-bottom: 60px;
}

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

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

.backButton a {
  background: var(--lj-arrow-right) center no-repeat;
  transform: rotate(180deg);
  width: 60px;
  height: 60px;
  display: block;
  background-size: 2.5rem;
}

.closeButton a {
  background: url(../svg/icon-close.svg) center no-repeat;
  width: 60px;
  height: 60px;
  display: block;
  background-size: 24px auto;
  filter: var(--lj-invert-icon);
}

header .backButton {
  float: left;
  margin-right: -10px;
}

.pageWrapper {
  padding: 20px 20px;
  max-width: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pageContainer {
  min-height: 380px;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.wizardBars {
  margin: 0 -5px 3rem -5px;
}

.wizardBars .wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

.wizardBars .item {
  background-color: var(--lj-infobox);
  height: 4px;
  flex-grow: 1;
  margin: 0 5px;
  border-radius: 2px;
}

.wizardBars .item.completed {
  background-color: var(--lj-navbar-bg-light);
}

.confirmation h2 {
  font-size: 20px;
  font-weight: 300;
}

/* FORMS */
fieldset {
  border: none 0;
  padding: 0;
  margin: 0 0 20px 0;
}

label {
  color: var(--lj-font-primary-light);
}

fieldset table {
  width: 100%;
}

fieldset table td {
  vertical-align: top;
  padding-right: 20px;
}

fieldset table td.prefixTara {
  vertical-align: bottom;
  width: 30%;
}

fieldset table td:last-child {
  padding-right: 0;
}

input[type="text"],
input[type="date"],
input[type="password"],
input[type="number"],
input[type="tel"],
select,
textarea {
  border: none 0;
  color: var(--lj-font-tertiary-light);
  border-bottom: solid 1px var(--lj-border-bottom);
  width: 100%;
  padding: 7px 0;
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box;
  background-color: transparent;
  outline: none;
  -webkit-appearance: none;
}

input {
  outline: none;
  -webkit-appearance: none !important;
  appearance: none !important;
}

select {
  padding: 7px 5px;
  outline: none;
}

.code {
  font-size: 25px;
  font-weight: var(--lj-font-medium);
  color: #707070;
}

.code input[type="text"],
.code input[type="password"],
.code input[type="number"] {
  border: solid 1px #898989;
  -webkit-border-radius: var(--lj-border-radius-lg);
  border-radius: var(--lj-border-radius-lg);
  width: 120px;
  padding: 5px 15px;
  color: var(--lj-font-primary-light);
  text-align: center;
}

.code input[type="number"] {
  -webkit-appearance: textfield;
  appearance: textfield;
}

.code input[type="number"]::-webkit-inner-spin-button,
.code input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input.error {
  border-color: var(--lj-red) !important;
  color: var(--lj-red) !important;
}

div.error {
  color: var(--lj-red);
  font-size: 15px;
  padding-top: 7px;
  font-weight: var(--lj-font-regular);
}

.cardLimits div.error:empty {
  padding-top: 0;
}

.floatingInput {
  position: relative;
  padding-top: 20px;
}

.floatingInput label {
  position: absolute;
  left: 0;
  bottom: 10px;
  transition: 0.1s;
}

.floatingInput ::placeholder {
  opacity: 0;
  color: #afafaf;
  transition: 0.3s;
}

.floatingInput.active ::placeholder {
  opacity: 1;
  transition: 0.3s;
}

.floatingInput.active label {
  left: 0;
  bottom: 40px;
  transition: 0.1s;
}

.floatingInput.active input[type="text"] {
  padding-left: 0;
  padding-right: 0;
}

.floatingInput.error {
  padding-top: 20px;
}

.floatingInput.error label {
  color: var(--lj-red);
}

.floatingInput.disabled input,
.floatingInput.disabled select,
.floatingInput.disabled label {
  color: #848484;
}

.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 22px;
  vertical-align: middle;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lj-toggle);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "OFF";
  height: 20px;
  width: 20px;
  font-size: 0.64rem;
  left: 1px;
  bottom: 1px;
  background-color: var(--lj-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  line-height: 21px;
  color: #3b3b3b;
}

input:checked + .slider {
  background-color: var(--lj-toggle);
}

input:checked + .slider:before {
  background-color: var(--lj-green);
  content: "ON";
  font-size: 0.64rem;
  line-height: 21px;
  text-align: center;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:disabled + .slider:before {
  filter: invert(1) grayscale(1) brightness(1);
}

.carduriFidelitate .infoList input[type="number"]:focus::placeholder {
  color: transparent;
}

input:checked + .slider:before {
  -webkit-transform: translateX(23px);
  -ms-transform: translateX(23px);
  transform: translateX(23px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.selectForm {
  font-size: 18px;
  display: inline-block;
  text-align: left;
}

.selectForm label {
  padding: 5px 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.selectForm label label {
  padding: 0;
}

input[type="checkbox"] {
  display: none;
  /* padding: 8px; */
  box-sizing: border-box;
}

.checkbox {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  margin: -2px 5px 4px 0;
}

.checkbox label {
  width: 32px;
  height: 32px;
  border: solid 1px #cbcbcb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.checkbox label:after {
  opacity: 0;
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.5' height='14.323' viewBox='0 0 15.5 14.323'%3E%3Cpath id='Path_2790' data-name='Path 2790' d='M106.895,13.583a1.653,1.653,0,0,0-2.318.307l-.842,1.1-1.295,1.69-5.024,6.561-2.436-3a1.653,1.653,0,1,0-2.567,2.084l3.758,4.628a1.65,1.65,0,0,0,1.283.611h.023a1.649,1.649,0,0,0,1.289-.648l5.645-7.373,1.458-1.9L107.2,15.9a1.653,1.653,0,0,0-.307-2.318' transform='translate(-92.043 -13.242)' fill='%23fff'/%3E%3C/svg%3E%0A");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  filter: var(--lj-invert-icon);
}

.checkbox input[type="checkbox"]:checked + label:after {
  opacity: 1;
}

.disabled .checkbox label:after,
.checkbox.disabled label:after {
  background: url(../images/icon-checkbox-gray.png) center no-repeat;
  background-size: 1rem 1rem;
}

input[type="radio"] {
  visibility: hidden;
}

.radioButton {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.radioButton label {
  width: 1.25rem;
  height: 1.25rem;
  border: solid 1px var(--lj-bg-secondary);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.radioButton label:after {
  opacity: 0;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--lj-button-primary);
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.radioButton input[type="radio"]:checked + label {
  border: solid 1px var(--lj-button-primary);
}

.radioButton input[type="radio"]:checked + label:after {
  opacity: 1;
}

.disabled .radioButton label:after,
.radioButton.disabled label:after {
  background-color: #ccc;
}

/* FORMS end */

.cta .link {
  margin: 10px 0;
}

.cta .link.splitbill {
  padding: 20px 0;
}

.cta .link.splitbill a {
  padding: 0;
}

.cta .link a {
  font-weight: var(--lj-font-bold);
  padding: 20px 0;
  display: block;
}

.cta.bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 1;
  background: -moz-linear-gradient(
    top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.85) 30%
  );
  background: -webkit-linear-gradient(var(--lj-btn-gradient));
  background: linear-gradient(var(--lj-btn-gradient));
  background-image: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.85) 30%
  );
  background-image: -ms-linear-gradient(
    top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.85) 30%
  );
}

.cta .link.bottom {
  margin-bottom: -10px;
}

.cta .left {
  width: 50%;
  float: left;
  padding-right: 10px;
  box-sizing: border-box;
}

.cta .right {
  width: 50%;
  float: right;
  padding-left: 10px;
  box-sizing: border-box;
}

.cta .smallText {
  font-size: 14px;
}

.buttonOk {
  background-color: var(--lj-button-primary);
  color: var(--lj-bg-light);
  font-weight: var(--lj-font-regular);
  font-size: 18px;
  padding: 14px;
  text-align: center;
  width: 100%;
  border: 1px solid var(--lj-button-primary);
  -webkit-border-radius: var(--lj-border-radius-lg);
  border-radius: var(--lj-border-radius-lg);
  display: block;
  box-sizing: border-box;
  text-decoration: none;
}

.buttonLink {
  padding: 14px;
  text-align: center;
  display: block;
  box-sizing: border-box;
  -webkit-border-radius: 60px;
  border-radius: 60px;
}

.buttonDark {
  display: inline-flex;
  font-size: 16px;
  background-color: #3b3b3b;
  color: #fff;
  padding: 12px 24px;
  -webkit-border-radius: var(--lj-border-radius-lg);
  border-radius: var(--lj-border-radius-lg);
}

.smallButton {
  font-weight: 500;
  color: var(--lj-white);
  border: none;
  display: inline-block !important;
  padding: 4px 8px;
  font-size: 0.875rem;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  background: var(--lj-red);
}

.pageContainer.confirmation .appLogo {
  margin-bottom: 25px;
}

.pageContainer.confirmation .appLogo img {
  width: 92px;
  height: auto;
}

.pageContainer.confirmation h2 {
  margin: 0 0 40px 0;
}

.pageContainer.confirmation .pageIcon {
  margin-bottom: 40px;
}

.pageContainer.confirmation .pageIcon img {
  max-width: 60%;
}

.pageContainer.login.verticalAlign {
  padding-top: 0;
}

.pageContainer.login .appLogo {
  margin-bottom: 30px;
}

.pageContainer.login .appLogo img {
  width: 110px;
  height: auto;
}

.welcomeAvatar {
  width: 105px;
  height: 105px;
  text-align: center;
  overflow: hidden;
  border-radius: 100%;
  margin: 15px auto;
}

.welcomeAvatar img {
  height: 100%;
  width: auto;
}

.headTitle {
  font-size: 1.2rem;
  font-weight: var(--lj-font-regular);
  padding-left: 15px;
  border-bottom: solid 1px #ccc;
}

header .headTitle {
  border: none 0;
  font-size: 20px;
  display: flex;
  gap: 6px;
  align-self: center;
  align-items: center;
}

.content {
  line-height: 1.6em;
}

.settings h1 {
  font-size: 28px;
  font-weight: var(--lj-font-bold);
}

.settings .title {
  font-size: 1.2rem;
  font-weight: var(--lj-font-extra-bold);
  padding: 30px 20px 5px 20px;
  margin-bottom: 10px;
}

table {
  border-collapse: collapse;
}

table.options {
  margin: 15px 0 20px 0;
}

table.options td {
  padding: 5px 0;
}

table.options td:first-child {
  width: 25px;
}

.toggleOption {
  margin-bottom: 20px;
  font-size: 18px;
}

.toggleOption .icon {
  padding-right: 8px;
  margin-top: -5px;
}

.toggleOption .icon img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  filter: var(--lj-icons-dark);
  object-fit: contain;
}

.settings .toggleOption {
  padding-bottom: 6px;
  margin-bottom: 22px;
}

.menu .option {
  padding: 15px 0;
  font-size: 1rem;
  color: var(--lj-font-primary-light);
  margin: 0 20px;
  border-bottom: 1px solid var(--lj-border-bottom);
}

.menu .option.more {
  padding: 0;
}

.menu .option.more a {
  background: var(--lj-arrow-right) right center no-repeat;
  display: block;
  padding: 12px 0;
  background-size: 32px;
}

.menu .option a {
  color: var(--lj-font-primary-light);
}

.headUser {
  padding: 15px;
  font-size: 18px;
  font-weight: var(--lj-font-regular);
}

.headUser .avatar {
  width: 5rem;
  height: 5rem;
  text-align: center;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: var(--lj-gray-700);
  color: var(--lj-white);
  margin: 0 auto;
  font-size: 30px;
  margin-bottom: 16px;
  font-weight: var(--lj-font-bold);
  display: flex;
  justify-content: center;
  align-items: center;
}

.headUser .info {
  font-weight: 400;
}

.headUser .info .date {
  font-size: 17px;
  font-weight: 500;
  margin: 5px 0 8px 0;
}

.headUser .info .ammount {
  font-size: 1.1rem;
  font-weight: var(--lj-font-extra-bold);
  margin: 6px 0;
}

.headUser .avatar .tag {
  width: 14px;
  height: 14px;
  border: solid 2px var(--lj-bg-light);
  background-size: 12px !important;
}

.headUser .avatar.bgWhite img {
  background: var(--lj-white);
}

.infoList {
  font-size: 15px;
}

.infoList .item {
  padding: 4px 0;
  border-bottom: solid 1px var(--lj-border-bottom);
  position: relative;
  padding-right: 50px;
  margin-bottom: 2rem;
}

.infoList .item label {
  font-weight: 400;
  margin-bottom: 3px;
  display: block;
}

.infoList .item .info {
  color: var(--lj-font-tertiary-light);
}

.editButton {
  background: url(../svg/icon-editare-rosu.svg) center no-repeat;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-size: 16px;
  filter: grayscale(1) invert(1) var(--lj-invert-icon);
}

.infoList .editButton {
  position: absolute;
  right: 0;
  bottom: 0;
}

.infoList input[type="text"],
.infoList input[type="date"],
.infoList input[type="password"],
.infoList select,
.infoList textarea {
  border: solid 1px #ccc;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  padding-left: 15px;
  padding-right: 15px;
}

/* FOOTER */
.hasFooterMenu {
  padding-bottom: 60px;
}

.hasFooterMenu .cta.bottom {
  bottom: 75px;
}

footer {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: bottom 0.3s;
}

.bottomMenu {
  -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.15);
  background-color: var(--lj-white);
  text-align: center;
  padding: 0 20px;
}

.bottomMenu ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.bottomMenu li {
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline-block;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.bottomMenu a {
  display: block;
  line-height: 0;
}

.bottomMenu .active a {
  color: #ed1c24;
  font-weight: var(--lj-font-bold);
}

.bottomMenu .icon {
  display: inline-block;
  width: 30px;
  height: 60px;
  background-size: 34px auto;
}

.bottomMenu .active .icon {
  background-size: 34px auto;
}

.bottomMenu a {
  position: relative;
}

.bottomMenu .number {
  width: 14px;
  height: 14px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: #0080ff;
  color: var(--lj-white);
  text-align: center;
  display: inline-block;
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  line-height: 14px;
  position: absolute;
  top: 14px;
  right: 50%;
  margin-right: 4px;
  border: solid 1px var(--lj-white);
}

.icon-home {
  background: url(../svg/icon-meniu-acasa.svg) center no-repeat;
}

.icon-transactions {
  background: url(../svg/icon-meniu-istoric.svg) center no-repeat;
}

.icon-settings {
  background: url(../svg/icon-meniu-setari.svg) center no-repeat;
}

.icon-wallet {
  background: url(../svg/icon-meniu-wallet.svg) center no-repeat;
}

.icon-more {
  background: url(../svg/icon-meniu-more.svg) center no-repeat;
}

.icon-avanposturi {
  background: url(../svg/icon-meniu-avanposturi.svg) center no-repeat;
}

.active .icon-home {
  background: url(../svg/icon-meniu-acasa-activ.svg) center no-repeat;
}

.active .icon-transactions {
  background: url(../svg/icon-meniu-istoric-activ.svg) center no-repeat;
}

.active .icon-settings {
  background: url(../svg/icon-meniu-setari-activ.svg) center no-repeat;
}

.active .icon-more {
  background: url(../svg/icon-meniu-more-activ.svg) center no-repeat;
}

.active .icon-wallet {
  background: url(../svg/icon-meniu-wallet-activ.svg) center no-repeat;
}

/* FOOTER end */

.snackbar {
  padding: 1.5rem;
  background-color: var(--lj-bg-secondary);
  color: var(--lj-white);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transition: bottom 0.3s;
  z-index: 9999;
  border-radius: 1rem 1rem 0 0;
}

.snackbar.red {
  background-color: var(--lj-snackbar-red);
}

.snackbar .top-shadow {
  box-shadow: 0 -4px 6px rgb(0 0 0 / 19%);
}

#footerAlert {
  padding: 0;
  background-color: transparent;
}

#footerAlert .success,
#footerAlert .error {
  padding: 1.25rem 1rem;
  color: var(--lj-white);
  background-color: #828282;
  border-radius: 10px 10px 0 0;
  font-size: 1rem;
  min-height: 2rem;
}

#footerAlert .error.red {
  background-color: var(--lj-primary);
}

.hasFooterMenu .snackbar,
.hasFooterMenu #footerAlert {
  bottom: 60px;
}

/* CARDS */
.cards {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
  font-family: "Roboto", sans-serif;
}

.cards .cta {
  padding: 10px 20px;
}

.cards .cta .left {
  width: 48%;
}

.cards .cta .right {
  width: 48%;
}

.cards .carousel {
  opacity: 1;
  text-align: center;
  position: relative;
  width: 100%;
  padding: 15px 0 0 0;
  display: inline-block;
}

.cards .sold {
  font-size: 20px;
  text-align: center;
  padding: 0 0 7px 0;
}

.cards .mainCard {
  width: 70%;
  margin: 0 auto;
}

.cards .image {
  position: relative;
}

.cards .image .container {
  line-height: 0;
  overflow: hidden;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.cards .image img {
  width: 100%;
  height: 100%;
}

.cards .leftCard {
  width: 220px;
  position: absolute;
  left: -180px;
  bottom: 0;
}

.cards .rightCard {
  width: 220px;
  position: absolute;
  right: -180px;
  bottom: 0;
}

.cards .code {
  position: absolute;
  left: 7%;
  text-align: center;
  bottom: 50%;
  color: var(--lj-white);
  font-size: 22px;
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.cards .exp {
  position: absolute;
  left: 7%;
  bottom: 34%;
  color: var(--lj-white);
  font-size: 17px;
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.cards .exp:before {
  content: "EXP ";
}

.cards .name {
  position: absolute;
  left: 7%;
  bottom: 64px;
  color: var(--lj-white);
  font-size: 17px;
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.cards .name[id^="alias"] {
  bottom: 22px;
}

.cards .inputName {
  position: absolute;
  left: 7%;
  bottom: 13px;
  margin-top: -20px;
  z-index: 99;
  right: 30%;
}

.cards .inputName input {
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none 0;
  padding: 10px 0 6px 0;
  background: transparent;
  border-bottom: solid 1px var(--lj-border-color);
  color: var(--lj-white);
  font-size: 12px;
}

.cards .inputName input[type="submit"] {
  background: url(../svg/icon-checkmark-alias.svg) center no-repeat;
  background-size: 21px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  width: 24px;
  height: 38px;
  border: none;
}

.cards .main .icon {
  width: 25px;
  height: 25px;
  background: url(../images/icon-checkbox.png) var(--lj-white) center no-repeat;
  background-size: 1rem auto;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  right: 12px;
  top: -13px;
}

.cards .actions {
  position: absolute;
  top: 20px;
  right: 10px;
  z-index: 100;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform: translateZ(1000px);
}

.cards .actions .button {
  background: url(../svg/icon-more-alb.svg) center no-repeat;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-size: 25px;
  z-index: 100;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.cards .container {
  background-color: transparent;
}

.cards .colorBlack {
  background-color: #000;
}

.cards .colorGray {
  background-color: #d9d9d9;
}

.cards .colorRed {
  background-color: var(--lj-primary);
}

.cards .colorOrange {
  background-color: #f26500;
}

.cards .logo {
  position: absolute;
  top: 20px;
  right: 20px;
}

.cards .logo img {
  max-width: 50%;
  max-height: 80px;
  float: right;
  width: auto;
  height: auto;
  border-radius: 0.25rem;
}

.cards .addCard {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: var(--lj-font-regular);
  margin-top: -4rem;
  font-size: 1.1rem;
  color: var(--lj-font-primary-light);
}

.cards .addCard .plus {
  font-size: 5rem;
  font-weight: 200;
  line-height: 6rem;
  color: var(--lj-bg-light);
  text-shadow: -1px -1px 0 var(--lj-font-primary-light),
    1px -1px 0 var(--lj-font-primary-light),
    -1px 1px 0 var(--lj-font-primary-light),
    1px 1px 0 var(--lj-font-primary-light);
}

.cards .cardFidelitate {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: var(--lj-font-regular);
  font-size: 1rem;
  color: var(--lj-gray-800);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  transform: translateY(-50%);
}

.cards .card .cardFidelitate img {
  height: 2rem;
  width: 2rem;
}

.cards .card.slideAddCard .container {
  border: 1px solid var(--lj-font-primary-light);
  background: none;
}

.cards .pending {
  opacity: 0.5;
}

.cards .image.pending {
  opacity: 0.5;
}

.actions .dropdown {
  background-color: var(--lj-cardbox-light);
  padding: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  transition: 0.15s;
  position: absolute;
  width: 175px;
  z-index: 100;
  top: 0;
  right: 25px;
  visibility: visible;
  opacity: 1;
  text-align: center;
}

/*.actions:hover .dropdown, .cards .carousel .actions:hover .dropdown{visibility:visible; opacity:1;}*/
.actions .dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.actions .dropdown li:not(.hide) ~ li:not(.hide) {
  border-top: solid 1px var(--lj-border-bottom-color);
}

.actions .dropdown a {
  color: var(--lj-font-primary-light);
  display: block;
  padding: 8px 10px;
}

.actions .dropdown li.hide {
  display: none;
}

.actions .dropdown li.grayText a {
  color: #b1b1b1;
}

.slick-list {
  overflow: visible !important;
}

.slick-slide {
  padding: 0 5px;
  margin: 0 auto;
  transition: all 0.5s;
  outline: none;
}

.slick-slide .image {
  transition: all 0.5s;
  transform: scale(1);
  opacity: 1;
}

.slick-slide .sold {
  opacity: 0;
  transition: all 0.5s;
}

.slick-slide .sold-error {
  max-height: 100px;
  opacity: 1;
  visibility: visible;
}

.slick-slide.slick-current .sold-error {
  width: 100%;
  text-align: justify;
  line-height: 1.1;
  font-size: 12px;
  position: absolute;
  left: 7%;
  top: 30%;
  z-index: 10;
}

.slick-slide.slick-current .sold-error::before {
  content: none;
  background-image: url(../images/icon-warning.svg);
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.slick-slide .sold-error.hidden {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
}

.slick-current {
  transform: translate(0, 0);
  transition: all 0.5s;
}

.slick-current .image {
  transition: all 0.5s;
  transform: scale(1);
  opacity: 1;
  -webkit-backface-visibility: hidden;
}

.slick-current .sold {
  opacity: 1;
  transition: all 0.5s;
}

.cards .bullets {
  text-align: center;
}

.cards .bullets .bullet {
  width: 9px;
  height: 9px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: var(--lj-white);
  border: solid 1px #707070;
  margin: 0 1px;
  display: inline-block;
}

.cards .bullets .bullet.active {
  background-color: var(--lj-primary);
  border: solid 1px var(--lj-primary);
}

.card2card {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: url(../images/icon-transfer-card2card.gif) center no-repeat;
  padding: 20px 0;
  background-size: 1.5rem;
}

.card2card .card {
  width: 46%;
}

.card2card .card .code {
  font-size: 13px;
  bottom: 50%;
  left: 15px;
  right: 0;
  text-align: left;
}

.card2card .card .exp {
  font-size: 13px;
  bottom: 38%;
  left: 15px;
  font-weight: 300;
}

.card2card .card .name,
.headUser .card2card .card .name {
  font-size: 12px;
  bottom: 12%;
  left: 15px;
  font-weight: 300;
  line-height: 15px;
}

.card2card .logo img {
  width: 25%;
  float: right;
}

.card2card .logo {
  position: absolute;
  top: 7%;
  right: 7%;
  left: 15px;
}

.singleCard .card {
  margin-bottom: 20px;
}

.singleCard .card .image .container {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  display: block;
  overflow: hidden;
  line-height: 0;
}

.singleCard .card .image img {
  width: 100%;
  height: auto;
}

.singleCard .card .image {
  display: block;
}

.singleCard .card .name {
  margin-top: 5px;
  color: var(--lj-gray-700);
  text-align: right;
  display: block;
}

.selectCard .card {
  width: 47%;
  text-align: center;
}

.selectCard .card .image .container {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: block;
  overflow: hidden;
  line-height: 0;
}

.selectCard .card .image img {
  width: 100%;
  height: auto;
}

.selectCard .card .name {
  margin-top: 5px;
  display: block;
}

/* CARDS end */

/* TABS */
.tabMenu a {
  color: inherit;
}

.tabMenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tabMenu .tabs {
  font-size: 18px;
  text-align: center;
}

.tabMenu .tabs ul {
  white-space: nowrap;
  padding: 0;
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.tabMenu .tabs li {
  display: inline-block;
  padding: 0 15px;
}

.tabMenu .tabs a {
  padding: 12px 3px;
  display: block;
}

.tabMenu .menu {
  padding: 10px 20px;
}

.tabMenu .menu a {
  display: block;
  padding: 18px 0;
  border-top: 1px solid var(--lj-border-bottom-color);
  background: none;
}
.tabMenu .menu li {
  background: var(--lj-arrow-right) right 0 center no-repeat;
  background-size: 25px auto;
}

.tabMenu.mesaje .menu a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--lj-border-bottom-color);
  background: none;
}

.tabMenu.mesaje .menu li {
  background: var(--lj-arrow-right) right 0 center no-repeat;
  background-size: 32px auto;
}

.tabMenu .menu .submenu:first-child a.extended {
  border-top: none;
  border-bottom: 1px solid var(--lj-border-bottom-color);
}

.tabMenu .menu .submenu ul li a {
  border-bottom: 1px solid var(--lj-border-bottom-color);
}

.tabMenu .menu .submenu .dropdown-menu li:last-child a {
  border: 0;
}

.tabMenu .menu li:first-child a {
  border-top: 0;
}

.tabMenu .menu li.no-link {
  background: none;
  border: none;
}

.tabMenu .menu .toggleOption {
  display: block;
  padding: 0;
  border-bottom: solid 1px #ccc;
  background: none;
  font-size: 15px;
  margin: 0;
}

.tabMenu .menu .toggleOption .icon {
  padding: 18px 0;
  padding-left: 40px;
  display: block;
  margin: 0;
}

.tabMenu .menu .toggleOption .switch {
  margin-top: -2px;
}

.tabMenu .tabList a::first-letter {
  text-transform: uppercase;
}

.tabMenu .tabList.addCardTab.hide {
  display: none;
}

.footer.issueCardButton {
  position: absolute;
  bottom: 70px;
  width: 100%;
}

.footer.issueCardButton a {
  width: 80%;
  margin: auto;
  color: var(--lj-white);
  padding: 10px 0;
}

.tabMenu .menuButtonLoader .slider.round,
.toggleTheme.menuButtonLoader label {
  display: none;
}

.tabMenu .menuButtonLoader::before,
.toggleTheme.menuButtonLoader::before {
  display: block;
  width: 21px;
  height: 21px;
  content: "";
  position: absolute;
  right: 0;
  z-index: 1;
  background: url(../svg/icon-loader.svg) no-repeat;
  background-size: contain;
  animation: round 1s linear infinite;
  filter: var(--lj-invert-icon);
}

.toggleTheme.menuButtonLoader::before {
  width: 24px;
  height: 24px;
  right: 6px;
}

.tabMenu .menu li:has(.menuButtonLoader) {
  background: none;
}

.tabMenu .menu .allowLoader.menuButtonLoader {
  position: relative;
}

.tabMenu .menu .expandable-menu {
  position: relative;
}

.tabMenu .menu .expandable-menu:after {
  content: "";
  background: var(--lj-arrow-right) right 0 center no-repeat;
  list-style: none;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  transform: rotate(90deg);
}

.tabMenu .menu .expandable-menu.extended:after {
  transform: rotate(-90deg);
}

.tabMenu .menu .submenu .dropdown-menu {
  padding-left: 40px;
  transition: all 0.3s ease-in-out;
}

.tabMenu .menu .submenu .dropdown-menu[expanded-zone="false"] {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.tabMenu .menu .submenu .dropdown-menu[expanded-zone="true"] {
  max-height: 300px;
  opacity: 1;
  visibility: visible;
  position: relative;
}

.tabMenu .menu .submenu .dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0px;
  left: 0px;
  bottom: 0;
  border-bottom: 2px solid var(--lj-cardbox-light);
}

.card span.label:has(.lucramLa) {
  bottom: -1rem;
  line-height: normal;
  height: 0;
}

@media screen and (max-width: 420px) {
  .cards .name {
    bottom: 54px;
    font-size: 14px;
  }
}

@media screen and (max-width: 375px) {
  .tabMenu .menu .submenu .dropdown-menu {
    padding-left: 10px;
  }

  .cards .name {
    bottom: 52px;
    font-size: 14px;
  }
  .card span.label:has(.lucramLa) {
    bottom: 0;
  }
}

@media screen and (max-width: 330px) {
  .tabMenu .menu .submenu .dropdown-menu {
    padding-left: 0;
  }
}

.tabMenu .icon-trimite {
  background: url(../svg/icon-trimite-bani.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-scaneaza {
  background: url(../svg/icon-scaneaza.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-factura {
  background: url(../svg/icon-factura.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-sim {
  background: url(../svg/icon-reincarca-sim.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-transfer {
  background: url(../svg/icon-transfer-carduri.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-cere {
  background: url(../svg/icon-cere-bani.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-imparte {
  background: url(../svg/icon-imparte-nota.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-limite {
  background: url(../svg/icon-limite.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-economii {
  background: url(../svg/icon-economii.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-card {
  background: url(../svg/icon-card.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-securitate {
  background: url(../svg/icon-securitate.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-sterge {
  background: url(../svg/icon-sterge-card.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-inactivare {
  background: url(../svg/icon-inactiveaza-card.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-blocare {
  background: url(../svg/icon-blocheaza-card.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-pin {
  background: url(../svg/icon-pin.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-adauga-bani {
  background: url(../svg/icon-adauga-bani.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-plata-online {
  background: url(../svg/icon-plata-online.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .icon-reemitere-card {
  background: url(../svg/icon-reemitere-card.svg) left no-repeat;
  background-size: 28px auto;
}

.tabMenu .tabs.left {
  width: 80%;
}

.tabMenu .dateSelector {
  width: 20%;
  box-sizing: border-box;
}

.tabMenu .dateSelector span {
  padding: 12px;
  font-size: 18px;
  color: var(--lj-blue);
  background: url(../images/icon-meniu-sageata-jos-albastru.png) right no-repeat;
  display: inline-block;
  padding-right: 15px;
  background-size: 12px auto;
}

/* TABS end */

/* FILTERS */
.filters {
  padding: 20px 10px;
  overflow-y: auto;
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.avanpostFilter .filters {
  padding: 0 10px 20px 10px;
}

.filters .filter {
  flex-grow: 1;
  flex-basis: 100%;
  position: relative;
}

.avanpostFilter .filters .filter {
  border-bottom: 1px solid var(--lj-bg-light);
  color: var(--lj-font-tertiary-light);
  margin: 0 5px;
  padding: 8px 20px 8px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: var(--lj-font-regular);
  display: block;
}

.transactionsList .filters .filter {
  border: 1px solid var(--lj-bg-light);
  color: var(--lj-font-tertiary-light);
  -webkit-border-radius: var(--lj-border-radius-lg);
  border-radius: var(--lj-border-radius-lg);
  margin: 0 5px;
  padding: 15px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: var(--lj-font-regular);
  text-align: center;
  display: block;
}

.filters .filter.selected {
  background-color: var(--lj-cardbox-light);
  color: var(--lj-font-primary-light);
}

.filters .filter.active {
  background-color: var(--lj-bg-light);
  color: var(--lj-font-primary-light);
}

.avanpostFilter .filters .filter.selected:after {
  background-image: url(../svg/icon-close.svg);
  background-size: 20px;
  background-position: center center;
}

.avanpostFilter .filters .filter:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' viewBox='0 0 8 7'%3E%3Cpath id='Polygon_3' data-name='Polygon 3' d='M4,0,8,7H0Z' transform='translate(8 7) rotate(180)' fill='%23ccc'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center 3px;
  background-size: 0.65rem auto;
  width: 16px;
  height: 16px;
  right: 0;
  bottom: 8px;
  filter: var(--lj-invert-icon);
}

.filters .number {
  width: 1rem;
  height: 1rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: #0080ff;
  color: var(--lj-white);
  text-align: center;
  display: inline-block;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1rem;
  position: absolute;
  top: -9px;
  right: 50%;
  margin-right: -9px;
}

.visualSelect .option {
  display: block;
  text-align: center;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #f0f0f0;
  width: auto;
  margin: 3px;
  overflow: hidden;
}

.visualSelect .option span {
  display: block;
  padding: 12px 5px;
  cursor: pointer;
}

.visualSelect .option input[type="radio"] {
  margin-bottom: 5px;
  width: auto;
}

.filters .filter input[type="radio"] {
  position: absolute;
  top: -20px;
  margin: 0;
}

.filters .filter input[type="radio"]:checked + .item {
  background-color: var(--lj-gray-700);
  color: var(--lj-white);
}

/* FILTERS end */

/* POP-UPS */
.overlay,
.overlayLoader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(84, 84, 84, 0.75);
  display: none;
  z-index: 1300;
  margin-top: 0;
  padding: 0;
}

.popup {
  position: fixed;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 10px;
  right: 10px;
  z-index: 3000;
  display: none;
  margin: 0;
  padding: 0;
  max-height: 100%;
  overflow-y: scroll;
}

.popup.bottom {
  bottom: 0;
  top: auto;
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.popup.overflowYHidden {
  overflow-y: hidden;
}

.popupBox {
  width: 100%;
  background-color: var(--lj-cardbox-light);
  margin: 10px auto;
  -webkit-border-radius: 8px;
  border-radius: var(--lj-border-radius-lg);
  min-height: 30px;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  font-size: 18px;
}

.popupBox .wrapper {
  padding: 0 20px;
}

.popupBox .container {
  padding: 2rem 0;
}

.popupBox .separator {
  border-bottom: solid 1px var(--lj-border-bottom);
  line-height: 0;
  height: 0;
}

.popupBox .separator:last-of-type {
  border: none;
}

.popupBox .cta a {
  display: block;
  padding: 15px 20px;
  color: var(--lj-font-primary-light);
  font-size: 1.2rem;
}

.popupBox .cta .wrapper {
  padding: 15px 20px;
}

.popupBox .link {
  padding: 10px 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: flex-end;
}

.popupBox .cta .copyLink {
  width: 1.2rem;
  height: 1.5rem;
  background: url(../svg/icon-libra-copy.svg) center no-repeat;
  background-size: 18px;
  display: inline-block;
  filter: var(--lj-icons-dark);
}

.popupBox .closeButton {
  position: absolute;
  top: 0;
  right: 0;
}

.popupBox .closeButton a {
  width: 50px;
  height: 50px;
  filter: none;
}

.popupBox.bgWhite {
  color: var(--lj-gray-800);
  background: var(--lj-white);
}

.popup .popupBox.bgWhite .closeButton {
  filter: invert(0.6);
  padding: 0;
}

.popup .popupBox.bgWhite input.buttonOk {
  background-color: var(--lj-gray-800);
  color: var(--lj-white);
}

/* POP-UPS end */

/* TRANSACTIONS LIST */
.transactionsList .title {
  font-size: 18px;
  font-weight: var(--lj-font-bold);
  padding: 10px 20px;
  margin-bottom: 10px;
  position: relative;
}

.transactionsList .item {
  padding: 0 1rem 0.75rem 1rem;
  overflow: hidden;
  cursor: pointer;
}

.transactionsList .item .icon {
  float: left;
  margin-right: 16px;
}

.transactionsList .item .info {
  float: left;
}

.transactionsList .item .name {
  font-weight: 400;
  line-height: 1.25rem;
}

.transactionsList .item .date {
  color: var(--lj-font-secondary-light);
  font-size: 14px;
}

.transactionsList .item .ammount {
  float: right;
}

.transactionsList .title .search,
#searchContact .search,
.headTitle .search {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  padding: 5px 15px;
  z-index: 10;
  display: none;
}

.headTitle .search {
  bottom: 0;
}

.searchList .title .search input[type="text"],
.transactionsList .title .search input[type="text"],
#searchContact .search input[type="text"],
.headTitle .search input[type="text"] {
  border: solid 1px var(--lj-border-bottom);
  -webkit-border-radius: var(--lj-border-radius-lg);
  border-radius: var(--lj-border-radius-lg);
}

.search input#friendsSearchInput {
  padding-left: 45px;
}

#searchContact .search input[type="text"] {
  margin-top: 2px;
  padding: 7px 15px;
}

.searchButton {
  width: 38px;
  height: 38px;
  background: url(../svg/icon-search.svg) center no-repeat;
  border: none 0;
  background-size: 24px;
  filter: var(--lj-icons-dark);
  opacity: 0.4;
}

.transactionsList .searchButton,
#searchContact .searchButton,
.headTitle .searchButton {
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -19px;
}

#hasTransactions .searchButton {
  left: auto;
  right: 20px;
}

.search .closeButton {
  background: url(../images/icon-close.png) center no-repeat;
  width: 38px;
  height: 38px;
  display: block;
  border: none 0;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -19px;
  filter: var(--lj-icons-dark);
}

.avatar {
  background-color: var(--lj-button-primary);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  position: relative;
  color: var(--lj-bg-light);
}

.avatar img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.colorPink,
.avatar.colorPink .tag {
  background-color: #ff005f;
  color: var(--lj-white);
}

.colorPurple,
.avatar.colorPurple .tag {
  background-color: #6500ff;
  color: var(--lj-white);
}

.colorGreen,
.avatar.colorGreen .tag {
  background-color: #299f7f;
  color: var(--lj-white);
}

.colorOrange,
.avatar.colorOrange .tag {
  background-color: #ff8800;
  color: var(--lj-white);
}

.colorRed,
.avatar.colorRed .tag {
  background-color: var(--lj-primary);
  color: var(--lj-white);
}

.colorBlue,
.avatar.colorBlue .tag {
  background-color: #0542bc;
  color: var(--lj-white);
}

.colorGray,
.avatar.colorGray .tag {
  color: var(--lj-font-tertiary-light);
}

.avatar .tag {
  width: 12px;
  height: 12px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-color: var(--lj-gray-800);
  color: var(--lj-white);
  border: solid 1px var(--lj-white);
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-size: 12px;
}

.icon-tag-trimite {
  background: url(../images/icon-tag-trimite.png) center no-repeat;
}

.icon-tag-primeste {
  background: url(../images/icon-tag-primeste.png) center no-repeat;
}

.icon-tag-imparte {
  background: url(../images/icon-tag-imparte.png) center no-repeat;
}

.icon-tag-asteptare {
  background: var(--lj-icon-tag-asteptare) center no-repeat;
  background-color: var(--lj-gray-800) !important;
}

.icon-tag-esuat {
  background: url(../images/icon-tag-esuat.png) center no-repeat;
}

.icon-tag-anulat {
  background: url(../images/icon-tag-anulat.png) center no-repeat;
}

.transactionsList .avatar {
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 40px;
  font-size: 1rem;
  font-weight: var(--lj-font-bold);
  display: inline-block;
}

/* TRANSACTIONS LIST end */

/* FRIENDS LIST SPLIT BILL */

#friendListSplitBill .item .info {
  max-width: 50%;
  overflow: hidden;
  overflow-x: hidden;
  position: relative;
}

#friendListSplitBill .item .info .name {
  width: 400px;
}

#friendListSplitBill .item .info .name .overname {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 25px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  background-image: -webkit-linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  /* For Chrome 25 and Safari 6, iOS 6.1, Android 4.3 */
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
  /* Standard syntax; must be last */
}

@media screen and (max-width: 750px) {
  #friendListSplitBill .item .info {
    max-width: 40%;
  }

  #friendListSplitBill .item .ammount input {
    width: 95px;
  }
}

/* FRIENDS LIST END */

/* DEVICES MANAGER */
.devicesList .item {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-color: var(--lj-tab-disabled);
  padding: 15px 30px 15px 15px;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.devicesList .item h3 {
  font-size: 17px;
  font-weight: var(--lj-font-bold);
  margin: 0;
  color: var(--lj-font-primary-light);
}

.devicesList .item.active {
  background-color: var(--lj-cardbox-secondary);
  color: var(--lj-white);
}

.devicesList .item.active .actions .button {
  background: url(../svg/icon-more-alb.svg) center no-repeat;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-size: 25px;
  filter: var(--lj-invert-icon);
}

.devicesList .info {
  overflow-wrap: break-word;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .25rem;
  text-align: left;
  vertical-align: middle;
  color: var(--lj-font-tertiary-light);
}

.devicesList .icon {
  width: 90px;
  margin-right: 15px;
  display: table-cell;
  vertical-align: middle;
}

.devicesList .item.active .icon span {
  opacity: 1;
}

.devicesList .icon span {
  display: block;
  width: 66px;
  height: 66px;
  opacity: 0.7;
}

.item.active .icon-device-mac,
.icon-device-mac {
  background: url(../images/icon-device-mac-white.png) center no-repeat;
  filter: var(--lj-invert-icon);
}

.item.active .icon-device-windows,
.icon-device-windows {
  background: url(../images/icon-device-windows-white.png) center no-repeat;
  filter: var(--lj-invert-icon);
}

.item.active .icon-device-ios,
.icon-device-ios {
  background: url(../images/icon-device-ios-white.png) center no-repeat;
  filter: var(--lj-invert-icon);
}

.item.active .icon-device-android,
.icon-device-android {
  background: url(../images/icon-device-android-white.png) center no-repeat;
  filter: var(--lj-invert-icon);
}

.noBorder {
  border: none 0 !important;
}

.devicesList .actions {
  position: absolute;
  top: 11px;
  right: 3px;
}

.devicesList .actions .button {
  background: url(../svg/icon-more-alb.svg) center no-repeat;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-size: 25px;
  filter: var(--lj-invert-icon);
}

.devicesList .inputName {
  position: relative;
  margin-bottom: 5px;
}

.devicesList .inputName input {
  -webkit-border-radius: var(--lj-border-radius-lg);
  border-radius: var(--lj-border-radius-lg);
  border: none 0;
  padding: 8px 45px 8px 15px;
}

.devicesList .inputName input[type="submit"] {
  background: url(../svg/icon-checkmark-alias.svg) center no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  width: 38px;
  height: 38px;
  padding: 10px;
  border: none 0;
  background-size: 24px;
  filter: var(--lj-invert-icon);
}

.devicesList .inputName input {
  border: solid 1px var(--lj-font-tertiary-light);
}

/* DEVICES MANAGER end */

/* TRANZACTII */
.filters.social .filter {
  padding: 0;
  background: none;
  margin: 0 2px;
}

.filters.social .filter a {
  display: block;
  padding: 9px 10px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: var(--lj-white);
  border: solid 1px #dcdcdc;
  font-size: 12px;
}

.icon-share-whatsapp {
  background: url(../svg/icon-share-wsapp.svg) left no-repeat;
  color: #47c468;
}

.icon-share-fb-messenger {
  background: url(../images/icon-share-fb-messenger.png) left no-repeat;
  color: #0008ff;
}

.icon-share {
  background: url(../svg/icon-share-icon.svg) left no-repeat;
  color: #0008ff;
}

.icon-share-email {
  background: url(../svg/icon-share-mail.svg) left no-repeat;
  color: #4f10ae;
}

.icon-share-sms {
  background: url(../svg/icon-share-sms.svg) left no-repeat;
  color: #ff8800;
}

.shareBox .shareIcons .icon {
  filter: var(--lj-icons-dark);
}

.filters.social .icon {
  background-size: 1rem auto;
  display: inline-block;
  padding: 2px 0 2px 20px;
}

.transactionsList .item.flag {
  background: url(../images/logo-libra-journey-medium.png) right 18px center
    no-repeat;
  background-size: auto 18px;
}

.grayMessage {
  color: #bcbaba;
}

.gray {
  background: #bcbaba;
}

/* TRANZACTII end */

/* SPLIT BILL */
.transactionsList .item.addUser {
  background: var(--lj-icon-add) right 15px center no-repeat;
  background-size: 25px;
}

.transactionsList .item.userAdded .avatar {
  font-size: 0;
  background-image: url(../images/icon-user-checked.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 1rem;
}

.transactionsList .item.userAdded .date {
  color: var(--lj-font-secondary-light);
}

.billInfo .title.info .left {
  width: 60%;
}

.billInfo .title.info .right {
  width: 30%;
  text-align: right;
  border-bottom: 1px solid #eee;
  color: var(--lj-gray-700);
}

.billInfo .title.info .right input {
  text-align: right;
  border: 0;
}

.billInfo .title.info input {
  border: none 0;
  font-weight: var(--lj-font-bold);
}

.billInfo .title.info input:focus {
  border-bottom: none 0;
}

.details.billInfo {
  border: none 0;
  margin: 0;
}

.transactionsList .item .right .ammount {
  float: left;
  padding: 0;
  margin-right: 10px;
}

.transactionsList .item .ammount input {
  width: 93px;
  text-align: right;
  padding: 6px 5px;
  font-weight: 400;
  border-color: #dcdcdc;
}

.transactionsList .item .ammount input::placeholder {
  font-weight: 400;
}

#searchContact {
  position: fixed;
  top: 60px;
  left: 0;
  width: 91%;
  z-index: 1;
  background-color: var(--lj-white);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  border-bottom: 0;
  font-size: 18px;
  font-weight: var(--lj-font-bold);
  padding: 10px 20px;
  margin-bottom: 10px;
}

.transactionsList .item .close {
  background: url(../svg/icon-close.svg) center no-repeat;
  width: 30px;
  height: 30px;
  display: block;
  border: none 0;
  float: right;
  margin-right: -5px;
  background-size: 25px;
  filter: var(--lj-invert-icon);
}

.transactionsList .item .right .ammount.set {
  font-weight: var(--lj-font-bold);
  padding-top: 8px;
  margin-right: 0;
}

.billInfo {
  border-top: solid 1px var(--lj-border-light);
  margin-top: 20px;
}

.billInfo .title {
  font-weight: var(--lj-font-bold);
  font-size: 18px;
}

.billInfo .title.error {
  padding-top: 0;
}

.billInfo .title .error {
  padding-top: 0;
  margin-bottom: 10px;
}

.billInfo .title.info .left {
  width: 50%;
}

.billInfo .title.info .right {
  width: 50%;
  text-align: right;
}

.billInfo .title.info .right input {
  text-align: right;
}

.billInfo .title.info input {
  border: none 0;
  font-weight: var(--lj-font-bold);
}

.billInfo .title.info input:focus {
  border-bottom: none 0;
}

.details.billInfo {
  border: none 0;
  margin: 0;
}

.billInfo .title.info textarea {
  border: none 0;
  font-weight: var(--lj-font-bold);
  resize: none;
  height: 90px;
}

#splitBillInfoDetailsLine {
  height: 1px !important;
  width: 150px;
}

/* SPLIT BILL end */

/* PAY BILL */
.cta .separator {
  padding: 10px 0;
}

.bill input[type="text"],
.bill input[type="number"] {
  font-weight: var(--lj-font-bold);
  border-bottom: solid 1px #ccc;
}

.bill .infoList .item {
  padding: 10px 0;
  padding-right: 35px;
}

.bill .infoList .editButton {
  top: 0;
  right: 0;
}

.bill .infoList .item .info {
  font-weight: 400;
}

.bill .billInfo {
  border: none 0;
  margin: 0;
}

.bill .billInfo .title {
  margin-bottom: 10px;
}

.bill .billInfo .title input {
  width: auto;
  border: none 0;
  text-align: right;
  padding: 0;
}

.bill .billInfo .title.border {
  border-top: solid 1px #ccc;
  padding-top: 10px;
}

.bill .provider {
  border-bottom: solid 1px #e5e5e5;
}

.bill .provider .avatar {
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.bill .provider .avatar img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.bill .provider .title {
  font-weight: var(--lj-font-bold);
  font-size: 20px;
  padding: 15px 20px;
}

.bill .provider .icon {
  padding-right: 20px;
  margin-top: 10px;
}

.bill .provider .name {
  display: inline-block;
  font-weight: var(--lj-font-bold);
  vertical-align: middle;
  margin-left: 10px;
}

.smallText .billInfo .title {
  font-size: 1rem;
  font-weight: 400;
}

.bill .provider .wrapper {
  padding: 0 20px 10px 20px;
}

.bill.smallText .provider .name {
  font-size: 18px;
}

.bill .floatingInput label {
  left: 0;
}

.detailsTable {
  border-collapse: collapse;
}

.detailsTable thead td {
  background-color: #e5e5e5;
}

.detailsTable td {
  padding: 10px 5px;
  border-bottom: solid 1px #e5e5e5;
}

.detailsTable td:first-child {
  padding-left: 20px;
}

.detailsTable td:last-child {
  padding-right: 20px;
}

.listMenu .title {
  font-size: 20px;
  font-weight: var(--lj-font-bold);
  color: var(--lj-primary);
}

.listMenu .menu {
  margin-bottom: 30px;
}

.listMenu .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.listMenu .menu li {
  background: var(--lj-arrow-right) right -7px center no-repeat;
  list-style: none;
  background-size: 25px;
}

.listMenu .menu a {
  display: block;
  padding: 18px 15px 18px 0;
  border-bottom: solid 1px var(--lj-border-bottom-color);
  color: inherit;
}

.autocomplete-suggestion {
  background: url(../images/autocomplete-arrow.png) var(--lj-white) no-repeat
    scroll right 8px center;
  background-size: 15px auto;
  padding: 5px 30px 5px 10px;
  border: 1px solid #e0e0e0;
  border-top: none 0;
}

.autocomplete-suggestion:active {
  background-color: #ebebeb;
}

.autocomplete-suggestions {
  border-width: 0 1px 1px;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--lj-white);
  position: relative !important;
  margin-top: -10px;
}

.autocomplete-suggestion .label {
  color: #999999;
  display: block;
  font-size: 13px;
}

.bill .transactionsList .provider {
  border: none 0;
  margin-bottom: 5px;
}

.bill .transactionsList .provider .name {
  font-size: 15px;
}

.bill .transactionsList .provider .icon {
  margin-top: 0;
}

.bill .box {
  padding: 20px;
  border-bottom: solid 1px #e5e5e5;
  position: relative;
}

.bill .box h1 {
  margin-bottom: 0;
}

.bill .box .edit {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-weight: 500;
  font-size: 13px;
}

.bill .box .delete {
  position: absolute;
  right: 15px;
  top: 20px;
  font-weight: 500;
  font-size: 13px;
  color: #bcbaba;
  background: url(../svg/icon-close.svg) right no-repeat;
  padding-right: 20px;
}

/* PAY BILL */

/* SCAN 2 PAY */
.scan2pay .image {
  width: 160px;
  height: auto;
  margin: 0 auto;
}

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

.scan2pay .title {
  font-size: 18px;
  font-weight: var(--lj-font-medium);
  margin-bottom: 16px;
  position: relative;
  padding-top: 3px;
}

.shareButton {
  width: 32px;
  height: 32px;
  background: url(../svg/icon-share.svg) center no-repeat;
  background-size: 20px;
  filter: var(--lj-invert-icon);
}

.scan2pay .title .shareButton {
  position: absolute;
  right: 0;
  top: 0;
}

.scan2pay .billInfo {
  border: none 0;
  margin: 0;
}

.scan2pay .billInfo .title {
  margin-bottom: 10px;
  border-bottom: solid 1px #898989;
}

.scan2pay .billInfo .title .left {
  width: 40%;
  padding: 10px 5px;
}

.scan2pay .billInfo .title .right {
  width: 50%;
}

.scan2pay .billInfo .title .right input {
  text-align: right;
  border: none 0;
}

.scan2pay input#barcode::placeholder {
  opacity: 1;
}
.scan2pay input#barcode {
  border: 1px solid var(--lj-border-bottom);
  border-radius: var(--lj-border-radius-lg);
  padding: 14px;
  text-align: center;
}

.scan2pay .codeScan {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.shareIcons .icon {
  width: 48px;
  height: 48px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  text-align: center;
  line-height: 60px;
  display: inline-block;
  margin: 0 1rem;
}

.shareIcons .icon a {
  display: block;
}

.shareIcons .icon img {
  max-width: 42px;
  max-height: 32px;
  filter: var(--lj-invert-icon);
  vertical-align: middle;
}

.shareIcons .iconFb a {
  background-color: #3c6dde;
  line-height: 64px;
}

.shareIcons .iconWhatsapp a {
  background-color: #0edc45;
  line-height: 61px;
}

.shareIcons .iconEmail a {
  background-color: #632e91;
  line-height: 56px;
}

.shareIcons .iconSMS a {
  background-color: #3c6dde;
  line-height: 65px;
}

/* SCAN 2 PAY end */

/* CARDURI FIDELITATE */
.carduriFidelitate .cardBig {
  margin: 0 auto;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  padding-bottom: 12px;
  background-color: #a4a4a4;
  min-height: 12rem;
  border: 2px solid var(--lj-bg-light);
  position: relative;
}

.carduriFidelitate.listing .cardBig {
  padding-bottom: 0;
  -webkit-border-radius: var(--lj-border-radius-lg);
  border-radius: var(--lj-border-radius-lg);
  margin-bottom: -9rem;
}

.carduriFidelitate .cardBig .top {
  overflow: hidden;
  display: table;
  width: 100%;
  color: var(--lj-white);
  box-sizing: border-box;
}

.carduriFidelitate form fieldset .error {
  color: #ff5757;
}

.carduriFidelitate.listing .cardBig .top a {
  color: var(--lj-white);
  display: block;
  padding: 0.75rem 1rem;
  overflow: hidden;
}

.carduriFidelitate .cardBig .top {
  padding: 0 15px;
}

.carduriFidelitate.listing .cardBig .top {
  padding: 0;
}

.carduriFidelitate .cardBig .title {
  line-height: 20px;
  font-weight: 500;
  color: var(--lj-white);
  margin: 0;
  display: inline-block;
  padding-top: 5px;
}

.carduriFidelitate .cardBig .deleteCard {
  position: absolute;
  right: 1rem;
  bottom: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
}

.carduriFidelitate .icon {
  float: left;
  margin-right: 15px;
}

.carduriFidelitate .avatar {
  width: 50px;
  height: 32px;
  text-align: center;
  line-height: 34px;
  font-size: 1rem;
  font-weight: var(--lj-font-bold);
  background-color: var(--lj-white);
  color: var(--lj-gray-700);
  border-radius: var(--lj-border-radius);
}

.carduriFidelitate.listing {
  padding: 15px 15px 0 15px;
  margin-bottom: 8rem;
}

.carduriFidelitate .listMenu .icon {
  display: inline-block;
  margin-right: 10px;
  float: none;
}

.carduriFidelitate .transactionsList.listMenu a {
  padding: 15px 0;
  overflow: hidden;
}

.carduriFidelitate .provider {
  margin-bottom: 1rem;
  padding: 16px;
  background-color: var(--lj-cardbox-light);
  border-radius: var(--lj-border-radius-lg);
}

.carduriFidelitate .provider .icon {
  display: inline-block;
  float: none;
}

.carduriFidelitate .provider .avatar {
  display: inline-block;
  margin-right: 10px;
}

.carduriFidelitate .provider .name {
  display: inline-block;
}

.carduriFidelitate .cardBig .barcode {
  padding: 10px;
  margin: 0;
  text-align: center;
  line-height: 0;
}

.carduriFidelitate .provider .barcode img,
.carduriFidelitate .cardBig .barcode img {
  width: 100%;
  height: auto;
  max-width: 240px;
}

.carduriFidelitate .cardBig .code,
.carduriFidelitate .provider .code {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: var(--lj-white);
  letter-spacing: 0.5px;
  margin: 0;
}

.carduriFidelitate .cardBig .top label {
  color: var(--lj-white);
  font-weight: 500;
  display: block;
  margin-top: -10px;
  margin-bottom: 2px;
}

.carduriFidelitate .cardBig .top input[type="text"] {
  padding: 6px;
  margin-bottom: -10px;
  color: var(--lj-white);
  border-color: var(--lj-white);
  border-radius: 0;
}

.carduriFidelitate .cardBig .top input[type="text"]::placeholder {
  color: var(--lj-color-light);
}

.carduriFidelitate .cardBig .top input[type="text"] + .inputCardEdit,
.carduriFidelitate .cardBig .top input[type="text"] + .inputCardSubmit {
  display: block;
  height: 24px;
  width: 24px;
  list-style: none;
  position: absolute;
  right: 0;
  bottom: 0;
}

.carduriFidelitate .cardBig .top input[type="text"] + .inputCardEdit {
  background: url("../svg/icon-alias-edit.svg") center no-repeat;
  background-size: 16px;
}
.carduriFidelitate .cardBig .top input[type="text"] + .inputCardSubmit {
  background: url("../svg/icon-checkmark-alias.svg") center no-repeat;
  background-size: 20px;
  filter: invert(0);
}

.carduriFidelitate .listMenu .menu a {
  border-color: var(--lj-border-bottom);
  color: var(--lj-font-tertiary-light);
}

.carduriFidelitate .link {
  font-weight: var(--lj-font-bold);
  margin: 30px 0;
}

.carduriFidelitate .infoList input {
  border-radius: var(--lj-border-radius-lg);
  padding: 4px;
  background-color: var(--lj-bg-light);
  color: var(--lj-button-primary);
  font-weight: var(--lj-font-medium);
  font-size: 18px;
  font-weight: inherit;
  border: 1px solid var(--lj-navbar-bg-light);
}

.carduriFidelitate .infoList input::placeholder {
  color: var(--lj-button-primary);
  opacity: 1;
}

.carduriFidelitate .provider hr {
  background-color: var(--lj-border-bottom-color);
}

.carduriFidelitate .infoAlert {
  font-size: 15px;
  background-color: var(--lj-button-secondary);
  line-height: 1.25rem;
}

.popupBox .text {
  font-size: 14px;
  line-height: normal;
}

/* CARDURI FIDELITATE end */

/* LOADERS */
.loaderImg {
  line-height: 0;
  padding: 15px;
  opacity: 0.7;
  text-align: center;
}

.loaderImg img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.overlay .loaderImg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1200;
  margin-left: -25px;
  margin-top: -40px;
}

/* LOADERS end */

@media screen and (max-width: 360px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 1rem;
  }

  section {
    padding-bottom: 50px;
  }

  .hasFooterMenu {
    padding-bottom: 50px;
  }

  .hasFooterMenu .snackbar {
    bottom: 50px;
  }

  #searchContact {
    position: fixed;
    top: 50px;
    left: 0;
  }

  .headTitle {
    font-size: 18px;
  }

  header .headTitle {
    font-size: 14px;
    line-height: inherit;
    box-sizing: border-box;
    gap: 8px;
  }

  .confirmation h2 {
    font-size: 1rem;
  }

  .buttonOk {
    font-size: 16px;
    padding: 12px;
  }

  .backButton a {
    height: 50px;
  }

  .closeButton a {
    height: 50px;
  }

  .pageContainer.confirmation .appLogo {
    margin-bottom: 0;
  }

  .pageContainer.confirmation h2 {
    margin-bottom: 20px;
  }

  .pageContainer.confirmation .pageIcon {
    margin-bottom: 20px;
  }

  .cta .link {
    margin: 0;
  }

  .hasFooterMenu .cta.bottom {
    bottom: 65px;
  }

  fieldset {
    margin-bottom: 10px;
  }

  input[type="text"],
  input[type="date"],
  input[type="password"],
  select,
  textarea {
    padding: 7px 0;
  }

  .floatingInput.active label {
    padding-top: 15px;
  }

  .floatingInput.active label {
    bottom: 30px;
  }

  .orderCardSteps .floatingInput.active label {
    padding-top: 0;
  }

  .pageContainer .pageIcon img {
    max-width: 50%;
  }

  .bottomMenu .icon {
    height: 50px;
  }

  .headUser {
    padding: 10px;
    font-size: 1rem;
  }

  .headUser .avatar {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .settings .title {
    padding: 15px 10px 5px 20px;
  }

  .infoList .item {
    padding: 10px;
    padding-right: 40px;
  }

  .infoList .editButton {
    top: 15px;
    right: 5px;
  }

  .cards .sold {
    font-size: 18px;
  }

  .cards .cta {
    padding: 5px 15px;
  }

  .tabMenu .tabs {
    font-size: 15px;
  }

  .tabMenu .tabs a {
    padding: 12px 15px;
  }

  .tabMenu .tabs .active a {
    padding-bottom: 8px;
  }

  .transactionsList .item {
    padding: 10px 15px;
  }

  .transactionsList .item .date {
    font-size: 13px;
  }

  .cards .code {
    font-size: 22px;
    bottom: 60px;
  }

  .cards .exp,
  .cards .cvv {
    font-size: 17px;
    left: 7%;
  }

  .cards .inputName input[type="submit"] {
    height: 35px;
  }

  .cards .logo img {
    max-height: 60px;
  }

  .transactionsList .title .search input[type="text"],
  #searchContact .search input[type="text"] {
    font-size: 15px;
  }

  .card2card .card .code {
    font-size: 11px;
  }

  .card2card .card .exp {
    font-size: 10px;
    left: 15px;
    font-weight: 300;
  }

  .card2card .card .name,
  .headUser .card2card .card .name {
    font-size: 9px;
    font-weight: 300;
  }

  .bill .provider .title {
    font-size: 18px;
    padding-left: 10px;
  }

  .bill .provider .icon {
    padding-right: 10px;
  }

  .closeButton a {
    width: 40px;
  }

  .bill .provider .wrapper {
    padding: 0 10px 10px 10px;
  }

  .smallText .billInfo .title {
    font-size: 14px;
  }

  .detailsTable td {
    padding: 5px;
    border-bottom: solid 1px #e5e5e5;
  }

  .detailsTable td:first-child {
    padding-left: 10px;
  }

  .detailsTable td:last-child {
    padding-right: 10px;
  }

  .bottomMenu .number {
    top: 9px;
  }

  .pageContainer.confirmation .appLogo img {
    width: 80px;
    height: auto;
  }

  .bill .box {
    padding: 10px;
  }

  .bill .box .delete {
    right: 5px;
    top: 10px;
  }

  .bill .box .edit {
    right: 10px;
    bottom: 10px;
  }

  .scan2pay .billInfo .title .left {
    padding: 7px 5px;
  }

  .scan2pay .billInfo .title .right input {
    font-size: 14px;
  }

  .popupBox {
    font-size: 15px;
  }

  .popupBox .link {
    font-size: 13px;
  }
}

@media screen and (min-width: 560px) {
  .pageContainer {
    min-height: 0;
  }

  .cta.bottom {
    max-width: 600px;
    margin: 0 auto;
  }
}

.avatar.avatarAuth {
  width: 105px;
  height: 105px;
  line-height: 105px;
}

.noBg {
  background: none !important;
}

.dontShow {
  display: none !important;
}

.cards .card {
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.carousel > div:not(:first-child) {
  display: none;
}

/*LOADER*/
.loader {
  font-size: 30px;
  text-indent: -9999em;
  overflow: hidden;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  margin: 0 auto;
  top: 50%;
  position: relative;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: round 1s linear infinite;
  animation: round 1s linear infinite;
  background-size: 100%;
  background-image: url(../svg/icon-loader.svg);
}

@-webkit-keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }

  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }

  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }

  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }

  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }

  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }

  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }

  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}

@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

.refreshButton {
  width: 38px;
  height: 38px;
  background: url(../svg/icon-refresh.svg) center no-repeat;
  border: none 0;
  background-size: 24px;
}

header .refreshButton {
  width: 60px;
  height: 60px;
}

.sold .refreshButton {
  width: 26px;
  height: 26px;
  background-size: 24px;
  display: block;
}

footer.actions {
  background-color: var(--lj-cardbox-light);
  padding: 10px 0;
  -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.15);
  width: 100%;
  box-sizing: border-box;
}

footer.actions h2 {
  padding: 0 10px;
}

footer.actions .filters {
  padding: 0 10px;
}

.card .label, .card .flag {
  line-height: normal;
  font-size: 	0.9rem;
  color: var(--lj-font-secondary-light);
  font-weight: 500;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.card .label .defaultCard {
  background: url(../svg/icon-checkmark-green.svg) left center no-repeat;
  background-size: 20px;
  display: inline-block;
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -0.5rem;
  left: -0.5rem;
  z-index: 999;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.card .flagsTop {
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  text-align: center;
  color: #828282;
}

.card .labelStatus {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
}

.card .labelStatus.secondLabel {
  bottom: -45px;
}

.card .label .icon {
  background: url(../images/icon-checkbox-green.png) left center no-repeat;
  background-size: 15px;
  display: inline-block;
  width: 15px;
  height: 13px;
  position: static;
}

.cards .actions .button {
  width: 32px;
  height: 32px;
  position: absolute;
  top: -35px;
  right: -24px;
  background-color: var(--lj-white);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background: url(../svg/icon-more-rosu.svg) var(--lj-white) center no-repeat;
  background-size: 20px;
  border: 1px solid var(--lj-bg-light);
  transform: rotate(90deg);
}

.actions .dropdown {
  top: -20px;
  right: -10px;
}

/* FIX 10.03.2020 */
.hasFooterMenu .cta.bottom {
  bottom: 60px;
}

@media screen and (max-width: 360px) {
  .hasFooterMenu .cta.bottom {
    bottom: 50px;
  }

  .pageContainer.confirmation .appLogo img {
    width: 70px;
  }

  .pageContainer.confirmation .pageIcon img {
    max-width: 55%;
  }
}

.card .sold .loaderSold img {
  width: 1rem;
  height: 1rem;
  display: inline;
  padding-left: 10px;
}

.filters .number {
  background-color: var(--lj-primary);
}

.icon-tag-trimite {
  background-color: #299f7f !important;
}

.icon-tag-primeste {
  background-color: #299f7f !important;
}

.icon-tag-imparte {
  background-color: #ff8800 !important;
}

.icon-tag-asteptare {
  background-color: var(--lj-button-primary) !important;
}

.icon-tag-esuat {
  background-color: var(--lj-primary) !important;
}

.icon-tag-anulat {
  background-color: #b8b8b8 !important;
}

#fixedHead {
  margin-bottom: 10px;
}

#fixedHead.sticky {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: var(--lj-white);
  z-index: 1100;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
}

#fixedHead .title {
  margin-bottom: 0;
}

.sticky + .list {
  padding-top: 190px;
}

@media screen and (max-width: 360px) {
  #fixedHead.sticky {
    top: 50px;
  }

  .sticky + .list {
    padding-top: 180px;
  }
}

input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  overflow: hidden;
}

select {
  background: var(--lj-arrow-down) right 6px center no-repeat;
  background-size: 24px;
  padding-right: 15px;
  color: var(--lj-font-secondary-light);
}

.transactionsList .item .ammount {
  line-height: 20px;
  text-align: right;
}

@media screen and (max-width: 360px) {
  .transactionsList .item .ammount {
    line-height: 18px;
  }

  .transactionsList .title {
    font-size: 1rem;
  }

  #searchContact {
    font-size: 1rem;
  }

  .tabMenu .tabs a {
    padding: 8px 3px;
  }

  .tabMenu .tabs .active a {
    padding-bottom: 5px;
  }

  .filters {
    padding: 12px 10px;
  }

  .transactionsList .item {
    padding: 0 15px 12px 15px;
  }

  .sticky + .list {
    padding-top: 154px;
  }
}

.loginPage.new .login .appLogo {
  margin-top: 30px;
}

/* .loginPage.new .cta.bottom {
    padding-bottom: 90px;
} */

.loginPage.new .cta .link.bottom {
  padding-top: 30px;
}

@media screen and (max-height: 736px) {
  .loginPage.new .login .appLogo {
    margin-top: 50px;
  }

  .loginPage.new .pageContainer.login .appLogo img {
    width: 90px;
    height: auto;
  }

  /* .loginPage.new .cta.bottom {
        padding: 1rem 0 0 0;
        position: static;
    } */

  .loginPage.new .cta .link.bottom {
    padding-top: 20px;
  }

  #LoginFormStepOne .floatingInput {
    padding-top: 0;
    margin-top: -10px;
  }
}

.smallText .headUser {
  font-size: 15px;
  font-weight: normal;
}

.headUser .box {
  padding: 0 0 10px 0;
  margin-bottom: 10px;
  border-bottom: solid 1px #ccc;
}

.headUser .transactionsList .title,
.headUser #searchContact {
  margin-bottom: 0;
  padding: 10px 0;
}

.headUser .transactionsList .item {
  padding: 10px 0;
}

.infoAlert {
  background-color: var(--lj-infobox);
  padding: 15px 20px;
  position: relative;
  font-size: 14px;
  line-height: 17px;
  line-height: 1.5;
  border-radius: var(--lj-border-radius-lg);
}

.infoAlert .close {
  width: 30px;
  height: 30px;
  border: none 0;
  float: right;
  background: url(../svg/icon-close.svg) center no-repeat;
  background-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 360px) {
  .infoAlert {
    padding: 15px;
    font-size: 11px;
    line-height: 15px;
  }

  .infoAlert .close {
    width: 26px;
    height: 26px;
  }
}

.downloadApp {
  background-color: #000000 !important;
  color: var(--lj-white) !important;
  display: inline-block;
  padding: 13px;
  margin: 0 5px;
  border: none 0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  min-width: 150px;
  margin-bottom: 20px;
}

.downloadApp.android {
  background: url(../images/icon-android-white.png) #000 left 10px center
    no-repeat;
  background-size: 22px;
  padding-left: 38px;
}

.downloadApp.ios {
  background: url(../images/icon-apple-white.png) #000 left 20px top 13px
    no-repeat;
  background-size: 22px;
  padding-left: 38px;
}

/*.carousel, body {
    -webkit-transition: 0s linear;
    -moz-transition: 0s linear;
    -ms-transition: 0s linear;
    -o-transition: 0s linear;
    transition: 0s linear;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -ms-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}*/

@media screen and (max-height: 736px) {
  .pageContainer.confirmation .appLogo {
    margin-bottom: 0;
  }

  .pageContainer.confirmation .appLogo img {
    width: 70px;
  }

  .pageContainer.confirmation .pageIcon {
    margin-bottom: 20px;
  }

  .pageContainer.confirmation .pageIcon img {
    max-width: 50%;
  }

  .confirmation h2 {
    font-size: 1rem;
  }

  .pageWrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.commission-box {
  background: #e1eaf5;
  padding: 15px 20px 7px 20px;
  font-size: 14px;
  color: #4a4a4a;
}

.commission-box p {
  margin-top: 10px;
}

.lockCardInfo {
  background: #e1eaf5;
  padding: 15px 20px 7px 20px;
  font-size: 14px;
  color: #4a4a4a;
}

.lockCardInfo p {
  font-size: 12px;
}

/* mobiscroll start */
.mbsc-fr-w {
  font-family: var(--lj-font-sans-serif);
}
.mbsc-fr-persp .mbsc-np-dsp {
  padding: 0.1em 1.75em 0.1em 0.5em;
  font-size: 1.5em;
}

.mbsc-fr-persp .mbsc-ios.mbsc-np .mbsc-fr-c,
.mbsc-fr-persp .mbsc-np-tbl {
  font-size: 1em;
}

.mbsc-fr-persp .mbsc-fr-btn {
  height: 2.5em;
  line-height: 2.5em;
  padding: 0 0.625em;
  font-size: 1.2em !important;
}

body .mbsc-ios .mbsc-fr-btn-s .mbsc-fr-btn {
  font-weight: normal;
  font-size: 14px !important;
}

body .mbsc-fr-overlay {
  background: rgb(0 0 0 / 0.4);
}

/* Set color blue to mobiscroll object by next themes: "", "" */
body .mbsc-mobiscroll .mbsc-np-del,
body .mbsc-mobiscroll .mbsc-fr-btn,
body .mbsc-material .mbsc-np-del,
body .mbsc-material .mbsc-fr-btn {
  color: var(--lj-gray-700);
  font-weight: normal;
}

/* Set color blue to mobiscroll object by next themes: "mobiscroll", "material" */
body .mbsc-mobiscroll .mbsc-fr-btn.mbsc-active,
body .mbsc-mobiscroll.mbsc-no-touch .mbsc-fr-btn-e:not(.mbsc-disabled):hover,
body .mbsc-material .mbsc-fr-btn.mbsc-active,
body .mbsc-material.mbsc-no-touch .mbsc-fr-btn-e:not(.mbsc-disabled):hover {
  background: rgba(141, 141, 141, 0.35);
}

/* Set color white to mobiscroll object by next themes: "mobiscroll-dark", "material-dark" */
body .mbsc-material-dark.mbsc-material .mbsc-np-del,
body .mbsc-material-dark.mbsc-material .mbsc-fr-btn,
body .mbsc-mobiscroll-dark.mbsc-mobiscroll .mbsc-np-del,
body .mbsc-mobiscroll-dark.mbsc-mobiscroll .mbsc-fr-btn {
  color: var(--lj-button-primary) !important;
  font-weight: var(--lj-font-medium);
}

/* Set color white to mobiscroll object by next themes: "mobiscroll-dark", "material-dark" */
body .mbsc-material-dark.mbsc-material .mbsc-fr-btn.mbsc-active,
body
  .mbsc-material-dark.mbsc-material.mbsc-no-touch
  .mbsc-fr-btn-e:not(.mbsc-disabled):hover,
body .mbsc-mobiscroll-dark.mbsc-mobiscroll .mbsc-fr-btn.mbsc-active,
body
  .mbsc-mobiscroll-dark.mbsc-mobiscroll.mbsc-no-touch
  .mbsc-fr-btn-e:not(.mbsc-disabled):hover {
  background: #494949;
}

.mbsc-material-dark .mbsc-fr-w,
.mbsc-material .mbsc-fr-w {
  background: var(--lj-keyboard-bg) !important;
  color: var(--lj-button-primary) !important;
  padding-top: 11px !important;
}

.mbsc-material .mbsc-fr-btn {
  text-transform: none !important;
}

.mbsc-material .mbsc-np-btn {
  font-weight: var(--lj-font-medium);
}

.mbsc-material.mbsc-fr-inline .mbsc-fr-w,
.mbsc-material.mbsc-fr-top .mbsc-fr-w,
.mbsc-material.mbsc-fr-bottom .mbsc-fr-w {
  border-radius: 10px 10px 0 0 !important;
}

.mbsc-material .mbsc-ltr .mbsc-fr-btn-cont {
  text-align: right !important;
}

.mbsc-fr-bottom .mbsc-fr-popup {
  bottom: 0;
  top: auto !important;
}

/* mobiscroll end */

.cards .slick-slide {
  z-index: 900;
  position: relative;
  opacity: 1;
  margin: 0 2rem;
}

.cards .slick-current {
  z-index: 1000;
  position: relative;
  opacity: 1;
}

@media screen and (max-width: 360px) {
  .billInfo #splitBillInfoDetails,
  .billInfo .right,
  .billInfo #splitBillInfoAmount {
    font-size: 14px !important;
  }
}

@media screen and (max-width: 330px) {
  .billInfo #splitBillInfoAmount {
    width: 90px !important;
  }
}

/*css for selected card at accept transaction */
.selectedCard {
  padding: 16px;
  background-color: var(--lj-cardbox-secondary);
  border-radius: var(--lj-border-radius-lg);
}

.selectedCard table {
  width: 100%;
  line-height: 1.2rem;
  border-collapse: collapse;
  color: var(--lj-font-tertiary-light);
}

.selectedCard .card {
  width: 33%;
  line-height: 0;
  position: relative;
  text-align: center;
}

.selectedCard .card img {
  width: 100px;
  max-width: 100px;
  height: auto;
  border-radius: 5px;
}

.selectedCard .card .logo {
  position: absolute;
  top: 12%;
  text-align: right;
}

.selectedCard .card .logo img {
  max-width: 25% !important;
  height: auto;
  margin-right: 4px;
}

.pageWrapper .selectedCard {
  margin: 10px 0 20px 0;
  color: var(--lj-font-tertiary-light);
}

.selectedCard .separator {
  border-top: solid 1px #ccc;
  height: 10px;
  margin-top: 10px;
  line-height: 0;
  padding: 0;
}

.selectedCard .checklist {
  line-height: 14px !important;
  margin-bottom: 3px;
}

.selectedCard .checklist .check {
  width: 24px;
  padding-right: 10px;
}

@media screen and (max-width: 360px) {
  .selectedCard {
    padding: 8px 10px;
  }

  .pageWrapper .selectedCard {
    margin: 10px 0 15px 0;
  }

  .selectedCard .separator {
    height: 5px;
    margin-bottom: 0;
  }
}

/*Transactions list alignment - BEGIN*/
.transactionsList .item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.transactionsList .item .icon {
  float: none;
  flex-direction: column;
}

.transactionsList .item .info {
  float: none;
  flex-direction: column;
  line-height: 1.4;
  min-width: 0;
}

.transactionsList .item .info .name i {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}

.transactionsList .item .ammount {
  float: none;
  flex: auto;
  white-space: nowrap;
}

.transactionsList .item.item-commission {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -10px;
}

.transactionsList .item.item-commission .commission-text {
  color: #bcbaba;
}

.transactionsList .item.item-commission .commission-value {
  float: right;
}

/*Transactions list alignment - END*/

.hide {
  display: none;
}

.contactsContainerList {
  position: relative;
}

#friendList .contactsLoader,
.contactsLoader.contactsList {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 450px;
  z-index: 100;
}

/* DISCOUNT-URI */

.discountButton {
  border-radius: var(--lj-border-radius);
  border: 1px solid var(--lj-border-cashback-color);
  text-align: center;
  margin: 0 2.2rem 1rem 2.2rem;
  padding: 4px 0;
  font-size: 1rem;
  cursor: pointer;
  display: none;
  color: var(--lj-font-primary-light);
}

.discountButton.visible {
  display: block;
}

.cardsCarousel {
  position: relative;
  z-index: 2;
}

.cardsContainer {
  position: relative;
}

.discountButton.active {
  padding-right: 30px;
  background-color: var(--lj-primary);
  -webkit-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
  z-index: 1;
  mix-blend-mode: normal;
  cursor: auto;
  position: relative;
  z-index: 1;
}

.discountButton .close {
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../images/icon-close-alb.svg) center no-repeat;
  background-size: 25px;
  width: 40px;
  height: 25px;
  border: none 0;
  margin-top: -13px;
  cursor: pointer;
}

.discountButton.active.mt-20 {
  margin-top: -20px;
}

.discountButton.active.frontground {
  z-index: 3;
}

.tabMenu.discounts {
  -webkit-border-radius: 12px 12px 0 0;
  border-radius: 12px 12px 0 0;
  background: -moz-linear-gradient(
    top,
    rgba(239, 66, 211, 0.15),
    rgba(239, 66, 211, 0) 10%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(239, 66, 211, 0.15),
    rgba(239, 66, 211, 0) 10%
  );
  background: linear-gradient(
    to bottom,
    rgba(239, 66, 211, 0.15),
    rgba(239, 66, 211, 0) 10%
  );
  background-image: -o-linear-gradient(
    top,
    rgba(239, 66, 211, 0.15),
    rgba(239, 66, 211, 0) 10%
  );
  background-image: -ms-linear-gradient(
    top,
    rgba(239, 66, 211, 0.15),
    rgba(239, 66, 211, 0) 10%
  );
}

.monthDiscount {
  display: flex;
  justify-content: space-between;
  font-weight: var(--lj-font-bold);
  font-size: 18px;
  padding: 10px 20px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
}

.monthDiscount div {
  flex-direction: column;
}

@media screen and (max-width: 360px) {
  .discountButton {
    padding: 8px 15px;
  }
}

/* DISCOUNT-URI end */

.tabMenu {
  position: relative;
}

.tabMenu .transactionsListLoader {
  position: absolute;
  top: 0;
  width: 100%;
  bottom: 0;
  background: var(--lj-white);
}

/* CURS VALUTAR */
.exchange .rates {
  padding: 15px;
  padding-bottom: 10px;
  background-color: transparent;
  margin-bottom: 15px;
}

.exchange .rates .grayMessage {
  color: #a6a6a6;
}

.exchange .infoList {
  padding: 0 15px;
}

.exchange .infoList select {
  padding: 13px 15px;
  min-width: 100px;
}

.exchange .infoList td {
  padding-right: 10px;
}

.exchange .infoList td:last-child {
  padding-right: 0;
}

.exchange .wrapper {
  padding: 0 15px;
}

.exchange .separator {
  border-bottom: solid 1px #ccc;
  height: 15px;
  margin-bottom: 25px;
}

.exchange .results {
  background-color: #e1eaf5;
  padding: 15px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-top: 15px;
}

@media screen and (max-width: 360px) {
  .exchange .infoList select {
    padding: 11px 15px;
  }
}

/* CURS VALUTAR end */

/* 16 FEB 2021 */
.icon-curs-valutar {
  background: url(../svg/icon-curs-valutar.svg) left no-repeat;
  background-size: 28px auto;
}

.icon-blocheaza-card {
  background: url(../svg/icon-blocheaza-card.svg) left no-repeat;
  background-size: 28px auto;
}

/* 3 MAR 2021 */
.exchange .rates .box {
  background-color: var(--lj-cardbox-secondary);
  -webkit-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 40px;
  padding: 7px 20px;
  position: relative;
}

.exchange .rates .box select {
  background-color: transparent;
  background: none;
  width: 70px;
  border: none 0;
  font-weight: var(--lj-font-bold);
  font-size: 18px;
  padding: 9px 15px 9px 0;
  color: var(--lj-font-primary-light);
}

.exchange .rates .box input {
  background: none;
  width: 175px;
  border: none 0;
  text-align: right;
  font-size: 22px;
  margin: 6px 0;
  border-bottom: 1px solid var(--lj-border-bottom-color);
  border-radius: 0;
}

.exchange .rates .box .smallText {
  color: #808080;
  font-size: 13px;
  margin-top: -5px;
}

.exchange .rates .grayMessage {
  color: var(--lj-font-secondary-light);
  font-size: 13px;
}

.exchange .rates .switch {
  width: 40px;
  height: 40px;
  min-width: 0;
  background: var(--lj-icon-forward) center no-repeat;
  background-size: 30px auto;
  transform: rotate(90deg);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: none;
  position: absolute;
  left: 50%;
  margin-left: -21px;
  bottom: -40px;
  z-index: 10;
  filter: var(--lj-invert-icon);
}

/* 24 FEB 2021 */
.promoBox {
  position: relative;
  text-align: left;
  background-color: var(--lj-cardbox-light);
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: -20px;
  transition: all 0.5s ease-in-out;
  height: 85px;
  opacity: 1;
  color: var(--lj-white);
}

.promoBox.promoboxTransition {
  opacity: 0;
  height: 0;
  transition: all 0.5s ease-in-out;
  margin-bottom: 0;
}

.promoBox a {
  color: inherit;
  padding: 4px 10px;
  display: block;
}

.promoBox .closeButton {
  margin: 0;
  padding: 12px;
  width: auto;
  height: auto;
  float: right;
  border: none 0;
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  min-width: 0;
  background: url(../svg/icon-close.svg) center no-repeat;
  background-size: 24px;
}

.promoBox .image {
  height: 60px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}

.promoBox .image img {
  height: 100%;
  width: auto;
}

.promoBox .title {
  font-weight: var(--lj-font-bold);
  font-size: 18px;
  display: block;
}

.promoSlider .slick-slider {
  overflow: hidden;
}

.promoSlider .slick-dots li {
  display: inline-block;
  margin: 0;
}

.promoSlider .slick-dots li:only-child {
  display: none;
}

.promoSlider .slick-dots li.slick-active button:before {
  content: "●";
  color: var(--lj-white);
  opacity: 1;
}

.promoSlider .slick-dots li button:before {
  content: "○";
  color: var(--lj-white);
  opacity: 1;
  font-size: 16px;
}

.promoBox .cta {
  padding: 0 20px 0 0;
  background: url(../svg/icon-meniu-sageata-dreapta.svg) right center no-repeat;
  background-size: 20px auto;
}

@media screen and (max-width: 360px) {
  .promoBox {
    margin-bottom: -10px;
  }

  .promoBox .image {
    height: 50px;
    margin: 0;
  }

  .promoBox .title {
    font-size: 14px;
  }

  .discountButton {
    padding: 5px 15px;
    font-size: 12px;
  }

  .exchange .left,
  .exchange .right {
    width: 50%;
    text-align: left;
  }

  .exchange .rates .box input {
    text-align: right;
    width: 100%;
  }
}

/* APPLE WALLET */
.applePay {
  display: flex;
  align-items: center;
}

.applePay img {
  height: 43px;
}

.google-logo {
  width: 22px;
  height: 22px;
  margin: 0 4px;
}

.googlePay {
  background: #030303;
  color: white;
  display: flex;
  align-items: center;
  font-size: 12px;
  min-width: 153px;
  padding: 8px 16px;
  border-radius: 20px;
  justify-content: center;
}

.addToDeviceWallet {
  transition: all 0.5s ease-in-out;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.addToDeviceWallet.addToDeviceWalletTransition {
  opacity: 0;
  height: 0;
  transition: all 0.5s ease-in-out;
}

.addToDeviceWallet button.add {
  -webkit-border-radius: 25px;
  border-radius: 25px;
  font-family: inherit;
  font-size: 14px;
  background-size: 25px auto;
  box-sizing: border-box;
  position: relative;
  border: none 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.addToDeviceWallet button.add .applePay {
  display: none;
}

.addToDeviceWallet button.add .googlePay {
  display: none;
}

.addToDeviceWallet.applewallet button.add .applePay {
  display: block;
}

.addToDeviceWallet.googlepay button.add {
  padding: 0 !important;
}

.addToDeviceWallet.googlepay button.add .googlePay {
  display: flex;
}

.cards .addToDeviceWallet.active {
  color: #737373;
  font-size: 12px;
  padding: 10px;
}

@media screen and (max-width: 360px) {
  .addToDeviceWallet button.add {
    font-size: 13px;
  }
}

.addToDeviceWallet button.add {
  background: none;
}

/* APPLE WALLET end*/

.max-witdth-fit-content {
  max-width: fit-content;
}

/* SNACKBAR CSS */

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 100%;
  /* Set a default minimum width */
  margin-left: -50%;
  /* Divide value of min-width by 2 */
  background-color: #333;
  /* Black background color */
  color: var(--lj-white);
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 1rem;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  bottom: 60px;
  /* 60px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 60px;
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }

  to {
    bottom: 60px;
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  from {
    bottom: 60px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

@keyframes fadeout {
  from {
    bottom: 60px;
    opacity: 1;
  }

  to {
    bottom: 0;
    opacity: 0;
  }
}

/* SNACKBAR END */

.permanentLockCard .formLoader {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.permanentLockCard .formLoader .loader {
  z-index: 2;
}

.permanentLockCard .formLoader .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* p.permanentLockCard {
    font-size: 1rem;
    text-align: center;
} */

/* #permanentLockCardForm .selectForm {
    font-size: 14px;
}

#permanentLockCardForm .title {
    font-size: 1rem;
} */

.addCardTopButton.active.activated {
  z-index: 1301;
}

.popup.addCardPopup {
  transform: none;
  top: 2.5rem;
}

.popup.addCardPopup .popupBox {
  background: transparent;
}

.popup.addCardPopup .item {
  background: var(--lj-white);
  padding: 12px;
  border-radius: var(--lj-border-radius-lg);
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  align-items: center;
}

.popup.addCardPopup .itemAnchor {
  color: #000000;
  font-weight: 500;
}

.popup.addCardPopup .item .button-icon:before {
  content: "";
  width: 25px;
  height: 20px;
  display: flex;
  background-size: contain;
  margin: 2px 10px 0 10px;
  background-repeat: no-repeat;
}

.popup.addCardPopup .item:nth-child(1) .button-icon:before {
  background-image: url(../svg/icon-card-gray.svg);
}

.popup.addCardPopup .item:nth-child(2) .button-icon:before {
  background-image: url(../svg/icon-p2p-gray.svg);
}

body.overflowYHidden {
  overflow-y: hidden;
}

/* COMANDA CARD */

.cards .slick-dots li {
  width: 12px !important;
  margin: 0 4px;
}

.cards .slick-dots li button {
  min-width: 0;
  padding: 2px !important;
  width: 12px !important;
}

.cards .slick-dots .slick-active button:before {
  color: var(--lj-font-primary-light) !important;
  opacity: 1 !important;
}

.cards .slick-dots li button::before {
  color: var(--lj-font-secondary-light) !important;
  font-size: 12px !important;
  opacity: 1 !important;
  width: 12px;
  height: 12px;
}

.welcome-widget-container .slick-dots li button::before {
  color: var(--lj-font-secondary-light);
  opacity: 1;
}

.orderCard .cards {
  position: fixed;
  left: 0;
  right: 0;
  top: 60px;
  background: var(--lj-white);
  padding: 0;
  padding-top: 20px;
  background-color: var(--lj-white);
}

.orderCard header {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.cardDetails .icon-card {
  background: url(../svg/cards/issuer/icon-card-red.svg) center no-repeat;
}

.cardDetails .icon-check {
  background: url(../svg/cards/issuer/icon-check-red.svg) center no-repeat;
}

.cardDetails .icon-coins {
  background: url(../svg/cards/issuer/icon-coins-red.svg) center no-repeat;
}

.cardDetails .icon-discount {
  background: url(../svg/cards/issuer/icon-discount-red.svg) center no-repeat;
}

.cardDetails .icon-money {
  background: url(../svg/cards/issuer/icon-money-red.svg) center no-repeat;
}

.cardDetails .icon-phone {
  background: url(../svg/cards/issuer/icon-phone-app-red.svg) center no-repeat;
}

.cardDetails .icon-school {
  background: url(../svg/cards/issuer/icon-school-red.svg) center no-repeat;
}

.cardDetails .icon-wallet {
  background: url(../svg/cards/issuer/icon-wallet-red.svg) center no-repeat;
}

.cardDetails .icon-atm {
  background: url(../svg/cards/issuer/icon-atm-red.svg) center no-repeat;
}

.cardDetails .icon {
  width: 25px;
  height: 1rem;
  background-size: 1rem;
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
  margin-right: 10px;
}

.cardDetails {
  padding: 0 3.4rem;
  /* margin-bottom: 120px; */
}

.cardDetails .cardTitle {
  font-size: 1rem;
}

.cardDetails h2 {
  margin: 0 0 15px 0;
}

.cardDetails ul {
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0 0 0 40px;
}

.cardDetails ul li {
  margin: 0;
}

.cardDetails h3 {
  font-weight: var(--lj-font-bold);
  font-size: 14px;
  color: #c7181e;
  margin: 0 0 5px 0;
}

.cardDetails .item {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}

.cardDetails .item > .icon {
  width: 40px;
  flex: 0 0 40px;
  display: block;
  text-align: left;
  height: auto;
  margin: 0;
  align-self: center;
}

.cardDetails .item .icon .icon {
  margin: 0;
  width: 25px;
  height: 25px;
}

.cardDetails .item .info h3 {
  color: inherit;
  margin-bottom: 0;
  font-size: inherit;
}

.cardDetails .item .info ul {
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.cardDetails .item .info a {
  border-bottom: dashed 1px #333333;
  color: inherit;
}

.cardDetails .item .icon .icon {
  margin: 0;
  background-size: 20px;
}

.orderCardSteps .selectedCard .card {
  width: 80px;
}

.orderCardSteps .selectedCard .card img {
  max-width: 80px;
}

.orderCardSteps .box {
  background-color: var(--lj-cardbox-light);
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.orderCardSteps .box .wrapper {
  padding: 18px 12px;
}

.orderCardSteps .box.main {
  background-color: var(--lj-button-primary);
  color: var(--lj-button-secondary);
}

.orderCardSteps .box table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
}

.orderCardSteps .box table label {
  padding-right: 15px;
  display: flex;
}

.orderCardSteps .menu {
  padding-left: 0;
}

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

.orderCardSteps .menu td {
  padding: 10px 0;
  vertical-align: top;
}

.orderCardSteps .menu td:first-child {
  width: 32px;
}

/* 
.orderCardSteps .menu table label {
  margin-right: 15px;
} 
*/

.orderCardSteps .menu .wrapper {
  padding: 5px 12px;
}

.orderCardSteps .radioButton {
  margin: 0 2px;
}

.orderCardSteps select {
  padding-left: 0;
  color: var(--lj-font-tertiary-light);
}

.orderCardSteps .formTemplate {
  padding: 0 5px;
}

.orderCardSteps .grayText {
  color: #828282;
  line-height: normal;
  display: inline-block;
}

.orderCardSteps .cardImg {
  margin-bottom: 10px;
}

.orderCardSteps .cardImg img {
  width: 150px;
  height: auto;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}

.orderCardSteps .box .icon {
  width: 40px !important;
  padding-right: 10px;
  vertical-align: middle;
  text-align: center;
  line-height: 0;
}

.orderCardSteps .box .wrapper.button {
  cursor: pointer;
  background: var(--lj-arrow-right) right 7px center no-repeat;
  background-size: 25px auto;
}

.orderCardSteps .box.noBorder {
  box-shadow: none;
}

.orderCardSteps .box .button {
  color: inherit;
}

.orderCardSteps div.error {
  font-size: inherit;
}

.orderCardSteps div.error select,
.orderCardSteps div.error input {
  border-color: #970b0b;
  color: #970b0b;
}

.orderCardSteps .floatingInput.error label {
  left: 0;
  top: 0;
  transition: 0.1s;
  height: 25px;
}

.cardBox .cardImg {
  margin: 5px;
}

.cardBox .timeline {
  position: relative;
  font-size: 14px;
}

.cardBox .timeline::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  background-color: var(--lj-font-primary-light);
  z-index: 9;
  opacity: 0.6;
}

.cardBox .timeline .item {
  display: table;
  width: 100%;
  padding: 0.75rem 0;
}

.cardBox .timeline .icon {
  display: table-cell;
  vertical-align: middle;
  width: 42px;
}

.cardBox .timeline .icon span {
  border: solid 1px #707070;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 54px;
  background-color: var(--lj-bg-light);
  position: relative;
  z-index: 10;
  display: block;
  box-sizing: border-box;
}

.cardBox .timeline .icon img {
  height: 22px;
  width: auto;
  opacity: 0.85;
}

.cardBox .timeline .text {
  display: table-cell;
  padding: 0 0 0 20px !important;
  vertical-align: middle !important;
}

.cardBox .timeline table {
  width: 100%;
}

.cardBox .timeline a.text {
  display: block;
  color: inherit;
  background: url(../images/icon-arrow-right.png) right center no-repeat;
  background-size: 8px auto;
}

.cardBox .timeline .item:not(.completed, .active) .icon img {
  opacity: 0.4;
  filter: var(--lj-invert-icon);
}

.cardBox .timeline .item span {
  border: solid 1px #b3b3b3;
}

.cardBox .timeline .item .text {
  opacity: 0.5;
}

.cardBox .timeline .item.active .icon img {
  opacity: 1;
  filter: var(--lj-invert-icon);
}

.cardBox .timeline .item.active span {
  border: solid 1px var(--lj-font-primary-light);
}

.cardBox .timeline .item.active .text {
  opacity: 1;
}

.cardBox .timeline .item.completed .icon img {
  opacity: 1;
  width: 20px;
  height: 18px;
}

.cardBox .timeline .item.completed span {
  line-height: 52px;
  border: solid 1px var(--lj-green);
}

.cardBox .timeline .item.completed.gray span {
  border-color: #8c8c8c;
}

.cardBox .timeline .item.completed .text {
  opacity: 1;
}

.cardBox .timeline .more a {
  font-weight: var(--lj-font-bold);
  text-decoration: underline;
  display: inline-block;
  padding: 5px 0;
}

.cardBox .timeline .item .text span {
  border: none 0;
  line-height: normal;
}

.cardBox .timeline .item .text .more {
  color: #1e61af;
  font-weight: var(--lj-font-bold);
  text-decoration: underline;
}

.confirmation .cardBox .timeline .item .icon img {
  opacity: 1;
}

.confirmation .cardBox .timeline .item .text {
  opacity: 1;
}

.cardsDetailsContainer .cardBox {
  padding: 15px 30px 0 30px;
  margin-bottom: 0 !important;
  background: none;
  border-top: 1px solid var(--lj-border-bottom);
  border-radius: 0 !important;
  position: relative;
}

.cards .newCard {
  color: #737373;
  margin-bottom: 20px;
  font-size: 12px;
}

.orderCardSteps header .closeButton {
  float: left;
  margin-right: -10px;
}

.cta .link label a {
  font-weight: inherit;
  display: inherit;
}

.cta .link .checkbox {
  margin: 0 5px 2px 0;
  vertical-align: middle;
}

.orderCardSteps .box table.edit {
  width: 100%;
}

.orderCardSteps .box table.edit td {
  width: auto;
  vertical-align: middle;
}

.orderCardSteps .box table.edit .button {
  width: 30px;
  text-align: right;
  padding-left: 10px;
}

.orderCardSteps .box table.edit button {
  border: none 0;
}

.orderCardSteps .box.floating {
  margin-top: -35px;
}

@media screen and (max-width: 360px) {
  .orderCardSteps .box.floating {
    margin-top: -25px;
  }
}

@media screen and (max-width: 360px) {
  .cardDetails .item > .icon {
    width: 35px;
    flex: 0 0 35px;
  }

  .orderCard .cards {
    top: 50px;
  }

  .cardsDetailsContainer .cardBox {
    padding: 15px 30px 0 30px;
  }

  .cardBox .timeline {
    font-size: 13px;
  }
}

@media screen and (max-width: 320px) {
  .orderCard .cards {
    top: 45px;
  }

  .cta.bottom {
    padding: 15px;
  }
}

@media screen and (min-width: 420px) {
  .orderCard .cards {
    position: static;
  }
}

header .headTitle .toolbar {
  display: flex;
  position: absolute;
  right: 12px;
  align-self: center;
  align-items: center;
  gap: 8px;
}

header .headTitle a {
  display: contents;
}

header .headTitle .toolbar .addCardButton,
header .headTitle .toolbar .shareButton,
header .headTitle .toolbar .alertsButton,
header .headTitle .toolbar .deleteButton,
.addCardPopup .addCardButton {
  position: relative;
  margin: 6px;
  display: inline-block;
  right: 0;
  transition: all 0.2s ease-in-out;
}

header .headTitle .toolbar .addCardButton.close,
.cardsMenu .addCardButton.close {
  transition: 0.3s;
  z-index: 1600;
}

.overlay.addCardPopup .addCardButton.close {
  background: url(../svg/icon-plus-white.svg) #0a0a0a center no-repeat;
  outline: none;
  top: 4px;
  right: 70px;
  margin-right: 0;
  transform: rotate(45deg);
}

.cardsMenu .addCardButton.close {
  position: absolute;
  margin: 0;
  top: -8px;
  right: 0;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}

.cardsMenu {
  z-index: 2000;
  position: fixed;
  top: 20px;
  left: 15px;
  right: 15px;
  padding-top: 60px;
}

.cardsMenu .item {
  background-color: var(--lj-white);
  -webkit-border-radius: 100px;
  border-radius: 100px;
  margin-bottom: 20px;
  padding: 13px;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
}

.cardsMenu .item.new {
  background: url(../svg/icon-card-gray.svg) var(--lj-white) left 25px center
    no-repeat;
  background-size: 22px;
  padding-left: 65px;
}

.cardsMenu .item.existing {
  background: url(../svg/icon-p2p-gray.svg) var(--lj-white) left 25px center
    no-repeat;
  background-size: 22px;
  padding-left: 65px;
}

.slick-slide.card .newPendingCard {
  font-weight: initial;
  font-size: inherit;
  color: var(--lj-font-primary-light);
}

.cardBox .closeCardFooterDetails {
  display: inline-block;
  margin-top: 20px;
  color: var(--lj-blue);
  font-size: 1rem;
  font-weight: bold;
}

/* COMANDA CARD end */

/* SPA Module begin */
.spa-module {
  background: var(--lj-white);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1301;
  overflow-y: scroll;
}

.spa-module .cta.bottom {
  bottom: 0;
}

.spa-module .headTitle {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--lj-white);
  z-index: 1301;
}

.spa-module .headTitle .button {
  margin: 10px 0;
  display: inline-block;
}

.spa-module .headTitle .button a {
  display: flex;
  font-size: 20px;
  line-height: 20px;
  font-weight: var(--lj-font-bold);
  color: var(--lj-font-secondary-light);
  width: auto;
  background: none;
  height: auto;
}

.spa-module .headTitle .button a:before {
  content: " ";
  width: 24px;
  height: 20px;
  display: inline-block;
  background-size: cover;
  margin-right: 20px;
}

.spa-module .headTitle .button.backButton a:before {
  background: url(../svg/icon-back.svg) center no-repeat;
}

.spa-module .headTitle .button.closeButton {
  float: right;
}

.spa-module .headTitle .button.closeButton a:before {
  background: url(../svg/icon-close.svg) center no-repeat;
}

.spa-module.shadow {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: 0.15s;
}

.spa-module .loaderContainer {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1301;
}

/* SPA Module end */

/* 22 MAR 2021 */
.cardLimits h3 {
  margin-bottom: 5px;
  font-size: 15px;
}

.cardLimits .leftColumn {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding-right: 7px;
  padding-top: 6px;
  color: var(--lj-bg-secondary);
}

.cardLimits .rightColumn {
  width: 50%;
  float: right;
  box-sizing: border-box;
  padding-left: 7px;
  text-align: right;
}

.cardLimits .leftColumn fieldset,
.cardLimits .rightColumn fieldset {
  margin-bottom: 0;
  position: relative;
}

.cardLimits .floatingInput.active label {
  opacity: 0.6;
}

.cardLimits .icon {
  width: auto;
  height: 18px;
  vertical-align: middle;
}

.orderCardSteps .box input[type="text"],
.orderCardSteps .box select,
.cardLimits .content input[type="text"] {
  border-color: var(--lj-border-bottom-color);
}

.selectedCard table {
  max-width: 560px;
  margin: 0 auto;
}

.selectedCard .bigCard img {
  width: 100%;
  height: auto;
}

.selectedCard .bigCard .name {
  position: absolute;
  left: 15px;
  bottom: 55px;
  color: var(--lj-white);
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: var(--lj-font-bold);
}

@media screen and (max-width: 360px) {
  .cardLimits h3 {
    font-size: 13px;
  }

  .cardLimits .icon {
    height: 1rem;
  }
}

.pageWrapper.cardLimits {
  padding-top: 5px;
}

.pageContainer.pb-0 .pageWrapper {
  padding-top: 0;
}

.cardLimits .infoAlert.red a {
  color: inherit;
  text-decoration: underline;
}

.cardLimits .box .head.open {
  background: var(--lj-arrow-up) right 10px center no-repeat;
  background-size: 32px auto;
}

.cardLimits .box .head.closed {
  background: var(--lj-arrow-down) right 10px center no-repeat;
  background-size: 32px auto;
}

form label.loadingField:after {
  content: "";
  background-image: url(../images/loader-01.gif);
  width: 10px;
  height: 10px;
  display: inline-block;
  background-size: cover;
  margin-left: 10px;
}

form fieldset .error,
form fieldset.error,
form fieldset.active.error .currency {
  color: var(--lj-red);
}

.fullPagePopup {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1301;
  background: var(--lj-white);
}

.fullPagePopup .closeButton {
  position: absolute;
  top: 0;
  left: 0;
}

/* Card secrets */
.slick-slide[virtual="1"] .sold {
  text-align: center;
}

.cards .actions .button {
  z-index: 101;
}

.cards .buttonDetails {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #f0f0f0;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.25);
  background: url(../svg/icon-libra-eye-show.svg) #f0f0f0 center no-repeat;
  background-size: 18px;
  z-index: 10;
}

.cards .buttonDetails.close {
  background: url(../svg/icon-libra-eye-hide.svg) #f0f0f0 center no-repeat;
  background-size: 18px;
}

.cards .timer {
  width: 50px;
  height: 20px;
  position: absolute;
  top: -24px;
  left: 50%;
  translate: -50%;
  text-align: center;
  z-index: 9;
  color: var(--lj-font-primary-light);
}

.slick-slider .code.secrets {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.slick-slider .code.iban.secrets {
  -moz-user-select: text;
  -khtml-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
  left: 0;
  width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  translate: 0 50%;
  gap: 0;
}

.slick-slider .name.secrets {
  translate: 0 20px;
}

.cards .slick-slide .buttonDetails,
.cards .slick-slide .button,
.cards .slick-slide .posesorTag,
.cards .slick-slide .cardFlip {
  opacity: 0;
  transition: all 0.5s;
}

.cards .slick-current .buttonDetails,
.cards .slick-current .button,
.cards .slick-current .posesorTag,
.cards .slick-current .cardFlip {
  opacity: 1;
}

.cards .exp small {
  font-size: 11px;
}

.cards .cvv {
  margin-left: 10px;
}

.cards .logo,
.cards .name,
.cards .code,
.cards .exp,
.cards .cvv,
.cards .alias {
  z-index: 10;
}

.cards .card.details .code,
.cards .card.details .exp,
.cards .card.details .cvv,
.cards .card.details .name {
  color: var(--lj-white);
  line-height: normal;
  z-index: 5;
}

.popupBox .cta a.icon-details::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../svg/icon-libra-eye-show.svg) center no-repeat;
  background-size: 20px;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}

.popupBox .cta a.icon-copy::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../svg/icon-libra-copy.svg) center no-repeat;
  background-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}

.card .label .icon-virtual {
  background: url(../svg/icon-libra-cloud.svg) left center no-repeat;
  background-size: 14px;
  display: inline-block;
  width: 15px;
  height: 10px;
  position: static;
  margin-left: 5px;
}

@media screen and (max-width: 360px) {
  .cards .card.details .name {
    line-height: 8px;
  }
}

/* Card secrets end */

/* Card info flags */
.cards .exp.infoRed {
  color: var(--lj-white) !important;
  line-height: 22px;
  left: 0;
  padding: 0 28px 0 7%;
  border-radius: 0 6px 6px 0;
  text-shadow: none;
  background: url(../images/icon-alert-white.png) var(--lj-primary) right 8px
    center no-repeat;
  background-size: 14px;
  translate: 0 50%;
}

.cards .exp.infoRed .text {
  font-weight: var(--lj-font-bold);
  opacity: 0.85;
  padding-left: 5px;
  font-size: 11px;
  display: inline-block;
  text-align: left;
}

.cards .exp.infoOrange {
  color: var(--lj-white) !important;
  line-height: 22px;
  left: 0;
  padding: 0 28px 0 7%;
  border-radius: 0 6px 6px 0;
  text-shadow: none;
  background: url(../images/icon-alert-white.png) #ffaa00 right 8px center
    no-repeat;
  background-size: 15px;
  translate: 0 50%;
}

.cards .exp.infoOrange .text {
  font-weight: var(--lj-font-bold);
  opacity: 0.85;
  padding-left: 5px;
  font-size: 9px;
  line-height: 9px;
  display: inline-block;
  position: relative;
  top: -1px;
  text-align: left;
}

/* Card info flags end */

/** sweetalert2 POPUP BEGIN */
body .swal2-container.swal2-grow-fullscreen {
  background: var(--lj-white);
}

body .swal2-container.swal2-grow-fullscreen > .swal2-popup {
  align-items: self-end;
}

.swal2-container .swal2-actions button {
  border-radius: var(--lj-border-radius-lg);
  flex-shrink: 0;
  flex-grow: 1;
  font-size: 1rem;
  padding: 14px 0;
  font-weight: var(--lj-font-medium);
}

.swal2-container .swal2-actions {
  width: 100%;
  justify-content: space-around;
  flex-direction: row;
  align-content: flex-end;
}

.swal2-close:hover,
.swal2-close {
  color: var(--lj-font-primary-light) !important;
  background: none !important;
  filter: none !important;
}

.swal2-container.swal2-top-end.swal2-grow-fullscreen.swal2-backdrop-show {
  padding: 10px !important;
}

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0.6);
}

/* Full screen grow */
body .swal2-container.swal2-backdrop-show.swal2-grow-fullscreen {
  background: rgba(0, 0, 0, 0.6);
}

/* Buttons BEGIN */
.swal2-container .swal2-actions button,
.swal2-container .swal2-footer .button {
  border-radius: var(--lj-border-radius-lg);
  flex-shrink: 0;
  flex-grow: 1;
  font-size: 1rem;
  padding: 14px 0;
  font-weight: var(--lj-font-medium);
}

.swal2-container .swal2-actions button.sample-button,
.swal2-container .swal2-footer .button.sample-button {
  flex-shrink: 0;
  flex-grow: 1;
  font-size: 1rem;
  padding: 0;
  font-weight: var(--lj-font-regular);
  background-color: transparent;
  color: var(--lj-font-primary-light);
}

.swal2-container .swal2-footer .button.sample-button {
  font-weight: 500;
}

.swal2-container
  .swal2-actions:not(.swal2-loading)
  .not-styled.swal2-styled:hover {
  background-image: none;
}

.swal2-container .swal2-actions {
  width: 100%;
  justify-content: space-around;
  flex-direction: row;
}

.swal2-container .swal2-actions.single-line-button {
  flex-direction: column;
}

.swal2-container .swal2-deny,
.swal2-container .swal2-cancel,
.swal2-container .swal2-deny.swal2-styled,
.swal2-container .swal2-cancel.swal2-styled {
  background-color: var(--lj-cardbox-secondary);
  border-color: #bcbaba;
}

button.swal2-deny.buttonOk.inverted.swal2-styled {
  background-color: var(--lj-button-secondary);
}

.swal2-container .swal2-deny:focus,
.swal2-container .swal2-cancel:focus,
.swal2-container .swal2-deny.swal2-styled:focus,
.swal2-container .swal2-cancel.swal2-styled:focus {
  box-shadow: none;
}

.swal2-container .swal2-confirm,
.swal2-container .swal2-confirm.swal2-styled,
.swal2-container .swal2-cancel.swal2-styled.inverted-bg{
  background-color: var(--lj-button-primary);
  border-color: var(--lj-button-primary);
  color: var(--lj-bg-light);
}

.swal2-container .swal2-confirm:focus,
.swal2-container .swal2-confirm.swal2-styled:focus {
  box-shadow: none;
}

.swal2-container .popupCloseButton {
  background: url(../svg/icon-close.svg) center no-repeat;
  background-size: 24px auto;
  font-size: 24px;
  color: transparent;
}

.swal2-container .popupCloseButton:hover {
  color: inherit;
}

.swal2-container .popupCloseButton:focus {
  box-shadow: none;
}

.swal2-container .swal2-actions button.link-button {
  color: var(--lj-font-tertiary-light);
  background: transparent;
  padding: 0;
}

.swal2-container .swal2-actions button.fullwidth-button {
  width: 100%;
}

.swal2-container .swal2-actions button.noGradient {
  background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%));
}

.swal2-container .swal2-actions button.grayButton {
  background-color: #bcbaba;
  border-color: #bcbaba;
}

.swal2-container .swal2-actions button.redButton {
  background-color: var(--lj-primary);
  border-color: var(--lj-primary);
}

.swal2-container .swal2-actions button.secondary {
  background-color: var(--lj-gray-700);
  border: 1px solid var(--lj-gray-700);
  color: var(--lj-white);
  border-radius: var(--lj-border-radius-xl);
}
.swal2-container .swal2-actions button.secondary.outline {
  background-color: transparent;
  border: 1px solid var(--lj-gray-400);
  color: var(--lj-gray-700);
}

/* Buttons END */

.swal2-container .popupTitle {
  font-size: 18px;
}

.swal2-container .popupTitle.no-bold {
  font-weight: 300;
}

.swal2-container .popupTitle.left {
  text-align: left;
}

.swal2-container .popupTitle.right {
  text-align: right;
}

.swal2-container .customHtmlContainer {
  font-size: 15px;
  color: var(--lj-font-primary-light);
}

.swal2-container .customHtmlContainer.left {
  text-align: left;
}

.swal2-container .customHtmlContainer.right {
  text-align: right;
}

.swal2-container .appLogo {
  width: 92px;
  margin-top: 0;
  margin-bottom: 0;
}

.swal2-container .pageIcon {
  margin: auto;
}

.swal2-container .pageIcon img {
  max-width: 70%;
}

.swal2-html-container {
  margin: 0 !important;
}

.swal2-html-container .pageWrapper {
  padding: 0 !important;
}

.swal2-footer {
  border-top: 0 !important;
}

.swal2-popup {
  color: inherit !important;
  border-radius: var(--lj-border-radius-lg) !important;
  padding: 10px !important;
}

.swal2-title {
  padding: 0 !important;
}

.defaultCardInfoPopup .swal2-title,
.defaultCardInfoPopup .swal2-html-container {
  color: var(--lj-gray-800);
}

.defaultCardInfoPopup .swal2-popup .swal2-close:hover,
.defaultCardInfoPopup .swal2-popup .swal2-close {
  color: var(--lj-black) !important;
}
.defaultCardInfoPopup .swal2-popup {
  background: var(--lj-white) !important;
}

/** sweetalert2 POPUP END */

/* MODIFICARI IAN 2022 */
.tabMenu .tabs {
  font-weight: 600;
  font-size: 17px;
  color: #757575;
}

.tabMenu .tabs li {
  padding: 0;
  background: var(--lj-cardbox-light);
  border-radius: 10px;
  flex: auto;
  text-align: center;
  list-style: none;
}

.tabMenu .tabs a {
  color: var(--lj-font-primary-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: var(--lj-font-regular);
}

.tabMenu .menu {
  padding: 0 20px;
  background-color: var(--lj-cardbox-light);
  border-radius: 0 0 10px 10px;
  position: relative;
}

.tabMenu .menu::before {
  content: "";
  position: absolute;
  right: 0px;
  left: 0px;
  border-top: 2px solid var(--lj-cardbox-light);
}

.tabMenu .menu li:last-child a {
  border-bottom: none 0;
}

@media screen and (max-width: 360px) {
  .tabMenu .tabs {
    font-size: 15px;
  }

  .tabMenu .tabs a {
    padding: 12px 14px;
  }

  .tabMenu .tabs a.creditCardTab {
    padding: 12px 6px;
  }

  .tabMenu .tabs .active a {
    padding-bottom: 9px;
  }
}

.selectedCard .bigCard {
  width: 240px;
  margin: 0 auto;
  line-height: 0;
  position: relative;
}

.selectedCard .bigCard img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.selectedCard .bigCard .name {
  position: absolute;
  left: 15px;
  bottom: 20px;
  color: var(--lj-white);
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  font-size: 12px;
  text-transform: uppercase;
}

.orderCardSteps .box .icon {
  width: 40px !important;
  padding-right: 10px;
  vertical-align: middle;
  text-align: center;
  line-height: 0;
}

.orderCardSteps .box .wrapper.button {
  cursor: pointer;
  background: var(--lj-arrow-right) right 7px center no-repeat;
  background-size: 25px auto;
}

.orderCardSteps .box.noBorder {
  box-shadow: none;
}

.tabMenu.shadow .tabs {
  margin-bottom: 20px;
}

.tabMenu.shadow .menu {
  background: none;
  border: none 0;
}

.tabMenu.shadow .menu a {
  border: none 0;
  background-color: var(--lj-white);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  padding-left: 50px;
  background-position: left 10px center;
}

.tabMenu.shadow .menu a:after {
  right: 5px;
}

@media screen and (max-width: 360px) {
  .tabMenu.shadow .tabs {
    margin-bottom: 10px;
  }

  .tabMenu.shadow .menu {
    padding: 0 10px;
  }

  .tabMenu.shadow .menu a {
    margin-bottom: 10px;
  }
}

.orderCardSteps .box table .address,
.orderCardSteps .menu table .address {
  font-size: 13px;
  line-height: 1rem;
}

@media screen and (max-width: 340px) {
  .orderCardSteps .box table .address,
  .orderCardSteps .menu table .address {
    font-size: 12px;
    line-height: 14px;
  }

  .orderCardSteps .box .wrapper {
    padding: 10px;
  }

  .orderCardSteps .menu .wrapper {
    padding: 10px;
  }
}

.cardDetails h2 small {
  font-weight: 500;
  font-size: inherit;
}

@media screen and (max-width: 360px) {
  .cardDetails .item .info ul {
    font-size: 12px;
  }
}

.termsBox .selector {
  padding-right: 10px;
  vertical-align: top;
}

.termsBox {
  font-size: 12px;
}

.box .switch.left {
  margin-right: 10px;
}

.orderCardSteps .box td small {
  line-height: normal;
  display: inline-block;
}

@media screen and (max-width: 360px) {
  .cards .code {
    bottom: 100px;
  }
}

@media screen and (max-width: 340px) {
  h1 {
    font-size: 1rem;
    line-height: 20px;
  }
}

/* MAR 2022 */

.headTitle .addCardButton,
.cardsMenu .addCardButton,
.addCardPopup .addCardButton {
  background-image: url(../svg/icon-plus-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  background-size: 12px;
  width: 32px;
  height: 32px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  transform: translateZ(0);
}

.addCardPopup .addCardButton {
  margin-top: 10px;
  position: absolute;
}

.cardsMenu .addCardButton.close,
.addCardPopup .addCardButton.close {
  background: url(../svg/icon-close.svg) #f0f0f0 center no-repeat;
  background-size: 24px;
  transform: none;
  top: -10px;
  right: -3px;
}

.actions .dropdown li.hide {
  display: none;
}

.actions .dropdown li {
  border: none 0;
}

.orderCardSteps .box.floating {
  margin-top: -35px;
}

@media screen and (max-width: 360px) {
  .orderCardSteps .box.floating {
    margin-top: -25px;
  }
}

@media screen and (max-width: 360px) {
  .pageContainer.confirmation .appLogo {
    margin-bottom: 10px;
  }

  .pageContainer.confirmation .appLogo img {
    width: 80px;
  }
}

@media screen and (max-width: 320px) {
  .pageContainer.confirmation .appLogo img {
    width: 70px;
  }
}

.cards .cardBox {
  position: relative;
  border-radius: 15px;
  margin-top: 25px;
  padding-bottom: 0;
}

.popup .popupBox .closeButton,
.cardsDetailsContainer .cardBox .closeButton,
.cards .cardBox .closeButton {
  margin: 0;
  padding: 12px;
  width: auto;
  height: auto;
  border: none 0;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 0;
  background: url(../svg/icon-close.svg) center no-repeat;
  background-size: 28px;
  filter: var(--lj-invert-icon);
}

.popup .popupBox .closeButton {
  padding: 0;
  top: 0;
  right: 0;
}

.avanpostFilter .popup.poupBar .popupBox .closeButton {
  padding: 12px;
  position: relative;
  top: -4px;
  right: -10px;
}

.card .multiple {
  bottom: -40px;
}

/** Welcome popup BEGIN*/
.welcome-widget-container {
  height: 100%;
  overflow: hidden;
}

.welcome-widget-container .popupContainer {
  height: 100%;
}

.welcome-widget-container .widget-tabs {
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
}

.welcome-widget-container .widget-tabs.carousel .slick-list {
  display: block;
}

.welcome-widget-container .widget-tabs.carousel .slick-slide {
  padding: 60px 0 0 0;
  margin: 0;
  transform: none;
  overflow-y: auto;
}

.welcome-widget-container .widget-tabs.carousel .slick-dots {
  position: relative;
  bottom: 0;
}

.welcome-widget-container .notification-title {
  margin-top: 30px;
}

.welcome-widget-container .notification-container {
  overflow-y: scroll;
}

.notification-container h1 {
  font-size: 1.3rem;
}

.notification-container .pageIcon img {
  max-width: 50%;
}

.welcome-widget-container {
  height: 100%;
  box-sizing: border-box;
  max-height: 900px;
}

.welcome-widget-container .popupBox {
  height: calc(100% - 20px);
  margin-bottom: 0;
  font-size: 15px;
}

.welcome-widget-container .cta.bottom {
  background: none;
  bottom: 10px;
}

.welcome-widget-container .carousel {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.welcome-widget-container .slick-list {
  padding: 0 !important;
  height: 100% !important;
}

.welcome-widget-container .slick-list.draggable {
  overflow: hidden !important;
}

.welcome-widget-container .slick-track {
  height: 100%;
}

.welcome-widget-container .slick-slide {
  transform: none;
}

.welcome-widget-container .slick-slide img {
  display: inline-block;
}

.welcome-widget-container .slick-dots {
  position: fixed;
  bottom: 90px;
}

.welcome-widget-container .slick-dots li {
  margin: 0 2px;
}

.welcome-widget-container .slick-dots li button:before {
  font-size: 10px;
}

.welcome-widget-container .slick-dots li.slick-active button:before {
  color: var(--lj-primary);
}

.welcomeWidgetPopup {
  margin: 0;
  grid-template-rows: auto 1fr auto;
  overflow-y: hidden;
  max-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.swal2-popup.welcomeWidgetPopup {
  position: absolute;
  background-color: var(--lj-bg-light) !important;
}

.welcomeWidgetPopup .swal2-footer {
  padding: 1em;
}

.swal2-container .welcomeWidgetPopup .popupCloseButton {
  font-size: 35px;
  filter: var(--lj-invert-icon) !important;
}

/** Welcome popup END*/

/** sweetalert2 POPUP END */

/* MESAJE IN APP */
/* .welcome-widget-container .message{padding:50px 15px; height:100%; overflow-y:scroll; overflow-x:hidden;} */
.message .pageIcon {
  margin-bottom: 30px;
}

.message .pageIcon img {
  max-width: 60%;
}

header .headTitle .toolbar .plusButton,
header .headTitle .toolbar .shareButton,
header .headTitle .toolbar .alertsButton,
header .headTitle .toolbar .deleteButton {
  position: relative;
  margin: 0 0 0 5px;
  display: inline-block;
  right: 0;
}

.alertsButton {
  width: 24px;
  height: 24px;
  background: url(../svg/icon-alerte-red.svg) center no-repeat;
  background-size: 28px;
  position: relative;
  margin-right: 4px;
}

.alertsButton .alertIcon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  right: 50%;
  translate: 50% -50%;
  color: var(--lj-white);
  font-weight: 400;
  text-align: center;
  display: block;
  font-family: inherit;
  font-size: 13px;
  padding: 0 4px;
  line-height: 1.5rem;
}

.alertsButton .alertIcon.loading {
  display: none;
}

.deleteButton {
  width: 40px;
  height: 40px;
  background: url(../svg/icon-delete-card.svg) center no-repeat;
  background-size: 21px;
  border-radius: 100%;
}

.userNotificationsListing .tabMenu .menu {
  padding: 0;
}

.tabMenu.mesaje .menu {
  border-bottom: none 0;
  background: none;
  outline: none;
}

.tabMenu.mesaje .menu li {
  position: relative;
  margin-bottom: 16px;
  background-color: var(--lj-cardbox-secondary);
  border-radius: var(--lj-border-radius-lg);
  font-weight: 300;
}

.tabMenu.mesaje .menu a {
  padding-left: 0;
  opacity: 0.65;
  border: none 0;
}

.tabMenu.mesaje .menu a.icon {
  padding-left: 55px;
  padding-right: 1.5rem;
}

.tabMenu.mesaje .menu a.icon:before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: absolute;
  left: 8px;
  top: 50%;
  margin-top: -20px;
}
.tabMenu.mesaje .menu a.icon-mesaj.necitit:before {
  background: url(../svg/icon-mesaj.svg) center no-repeat;
}
.tabMenu.mesaje .menu a.icon-mesaj:before {
  background: url(../svg/icon-mesaj-deschis.svg) center no-repeat;
  background-size: 24px auto;
  filter: var(--lj-icons-dark);
}

.tabMenu.mesaje .menu a.icon-alerta:before {
  background: url(../svg/icon-alerta-rosu.svg) center no-repeat;
  background-size: 20px auto;
  filter: var(--lj-icons-dark);
}

.tabMenu.mesaje .menu a.necitit {
  opacity: 1;
}

.tabMenu.mesaje small {
  display: block;
  color: inherit;
}

/* MESAJE IN APP end */

/* Remove card popup */
.swal2-container.cardActionsPopup .popupTitle {
  font-weight: var(--lj-font-regular);
  padding-top: 1em;
  margin-top: 1rem;
}

.swal2-container.cardActionsPopup .swal2-actions {
  border-top: 1px solid var(--lj-border-bottom);
  max-width: 95%;
  padding-top: 5px;
}

.swal2-container.cardActionsPopup .swal2-actions button {
  padding: 10px 0;
}

.swal2-container.cardActionsPopup .swal2-popup.swal2-modal {
  bottom: 60px;
  padding-bottom: 5px;
  width: 95%;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: none !important;
}

.swal2-container.cardActionsPopup .swal2-footer {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  padding: 0;
  border-radius: 5px;
  background: var(--lj-cardbox-light);
  margin-top: 0;
  border-radius: var(--lj-border-radius-lg);
}

.swal2-container.cardActionsPopup .swal2-footer .button {
  padding: 13px;
  background: transparent;
  font-weight: var(--lj-font-regular);
}

/* Default card popup */
.swal2-container.defaultCardInfoPopup .popupTitle {
  margin: 15px 0;
}

.afterDeleteCardPopup .swal2-actions {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  align-content: center;
}

.afterDeleteCardPopup .swal2-actions button {
  padding: 14px;
  width: 80%;
}

.swal2-container.defaultCardInfoPopup .popupTitle.swal2-title {
  margin: 3rem 0 1rem 0;
}

/** sweetalert2 POPUP END */

/** CULORI CARDURI */
.card.light .code,
.card.light .exp,
.card.light .sold,
.card.light .sold-error,
.card.light .alias,
.card.light .cvv,
.card.light .name,
.bigCard.light .code,
.bigCard.light .exp,
.bigCard.light .sold,
.bigCard.light .sold-error,
.bigCard.light .alias,
.bigCard.light .cvv,
.bigCard.light .name {
  color: #333;
  text-shadow: none;
}

.card.dark .code,
.card.dark .exp,
.card.dark .sold,
.card.dark .sold-error,
.card.dark .name,
.bigCard.dark .code,
.bigCard.dark .exp,
.bigCard.dark .sold,
.bigCard.dark .sold-error,
.bigCard.dark .name {
  color: #fff;
}

.cards .card.dark .copyButton {
  filter: brightness(0) invert(1);
}

.card.free .code,
.card.free .exp,
.card.free .name,
.card.free .alias,
.card.free .sold,
.card.free .sold-error,
.card.free .cvv,
.bigCard.free .code,
.bigCard.free .exp,
.bigCard.free .name,
.bigCard.free .alias,
.bigCard.free .sold,
.bigCard.free .sold-error,
.bigCard.free .cvv {
  color: #333;
  text-shadow: none;
}

.card.black .code,
.card.black .exp,
.card.black .name,
.card.black .sold,
.card.black .sold-error,
.bigCard.black .code,
.bigCard.black .exp,
.bigCard.black .name,
.bigCard.black .sold,
.bigCard.black .sold-error {
  color: #fff;
}

.card.default .code,
.card.default .exp,
.card.default .sold,
.card.default .sold-error,
.card.default .alias,
.card.default .name,
.bigCard.default .code,
.bigCard.default .exp,
.bigCard.default .sold,
.bigCard.default .sold-error,
.bigCard.default .alias,
.bigCard.default .name {
  color: inherit;
}

.card .container,
.card.default .container {
  background-color: inherit;
}

/** CULORI CARDURI end */

.card2card {
  padding: 20px 10px;
  margin-left: -10px;
  margin-right: -10px;
}

/* Cards limits */
.cardLimits h3 {
  margin-bottom: 5px;
  font-size: 15px;
  color: var(--lj-font-tertiary-light);
}

.cardLimits .floatingInput {
  margin: 0;
  padding: 0;
}

.cardLimits .floatingInput.active label {
  opacity: 0.6;
}

.cardLimits .icon {
  width: auto;
  height: 18px;
  vertical-align: middle;
}

.cardLimits .item-fields {
  display: flex;
  justify-content: space-between;
}

.cardLimitsContainer #resetFormCardLimits {
  width: auto;
  margin: auto;
  display: inline-block;
}

.cardLimitsContainer #resetFormCardLimits.inactive {
  opacity: 0.5;
}

.selectedCard table {
  max-width: 560px;
  margin: 0 auto;
}

@media screen and (max-width: 360px) {
  .cardLimits h3,
  .cardLimits div.error {
    font-size: 13px;
  }

  .cardLimits .icon {
    height: 1rem;
  }
}

@media screen and (max-width: 320px) {
  .cardLimits h3,
  .cardLimits div.error,
  .cardLimits input,
  .cardLimits .floatingInput {
    font-size: 12px;
  }

  .cardLimits .icon {
    height: 1rem;
  }
}

.cardLimits .grayText {
  color: #828282;
}

.cardLimits .infoAlert.red {
  background-color: var(--lj-red-alert);
  margin-bottom: 15px;
}

.cardLimits .infoAlert.red a {
  color: inherit;
  text-decoration: underline;
}

.cardLimits .box {
  background-color: var(--lj-cardbox-secondary);
  -webkit-border-radius: var(--lj-border-radius-lg);
  border-radius: var(--lj-border-radius-lg);
  margin-bottom: 15px;
}

.cardLimits .box .head {
  display: table;
  width: 100%;
}

.cardLimits .box .head .icon {
  width: 24px;
  padding: 10px;
  display: table-cell;
  vertical-align: middle;
  line-height: 0;
}

.cardLimits .box .head .icon img {
  width: 100%;
  height: auto;
}

.cardLimits .box .head .text {
  padding: 16px;
  display: table-cell;
  vertical-align: middle;
}

.cardLimits .box .head {
  background: var(--lj-arrow-right) right 10px center no-repeat;
  background-size: 32px auto;
}

.cardLimits .box.active .head {
  background: var(--lj-arrow-up) right 10px center no-repeat;
  background-size: 32px auto;
}

.cardLimits .box .content {
  padding: 0 0 15px 0;
  margin: 0 16px;
  border-top: solid 1px var(--lj-border-bottom-color);
}

/* Cards limits */

.tabs .tab .content {
  display: none;
}

.tabs .tab.active .content {
  display: block;
}

.mt-0 {
  margin-bottom: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.m-0 {
  margin: 0 !important;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

form label.loadingField:after {
  content: "";
  background-image: url(../images/loader-01.gif);
  width: 10px;
  height: 10px;
  display: inline-block;
  background-size: cover;
  margin-left: 10px;
}

.deliveryAddressForm .floatingInput.error label {
  bottom: auto;
  top: 0;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.promoBox.black .title {
  color: var(--lj-gray-700);
}

.promoBox.black .cta {
  color: #1e61af;
  background: url(../svg/icon-meniu-sageata-dreapta-albastru.svg) right center
    no-repeat;
  background-size: 20px auto;
}

.promoBox.black table {
  margin: 0 auto;
}

.promoBox.black table td:last-child {
  padding-right: 20px;
}

.orderCardSteps .box {
  background-color: var(--lj-cardbox-secondary);
  -webkit-border-radius: var(--lj-border-radius-lg);
  border-radius: var(--lj-border-radius-lg);
  margin-bottom: 20px;
}

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

.orderCardSteps .box table tr {
  display: flex;
  align-items: center;
  gap: 8px;
}

.orderCardSteps .box td {
  vertical-align: middle;
}

.orderCardSteps .box td:first-child {
  width: 40px;
}

.orderCardSteps .box.card table td {
  vertical-align: middle;
}

.orderCardSteps .box.card .option {
  width: 20px;
  padding-right: 20px;
}

.orderCardSteps .box.card .image {
  line-height: 0;
  width: 90px;
  padding-right: 15px;
}

.orderCardSteps .box.card .image img {
  width: 90px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.orderCardSteps .box.card .description {
  font-size: 13px;
  line-height: 1rem;
  padding-top: 13px;
  margin-top: 1rem;
  border-top: solid 1px #e0e0e0;
}

.orderCardSteps .box.card .description ul {
  margin: 0;
  padding: 0 0 0 15px;
}

.orderCardSteps .cta .link {
  padding-top: 15px;
}

.loadTermsAndPolicy {
  width: 87%;
  float: right;
}

.scan2pay .cta a,
.loadTermsAndPolicy a,
.termsBox a {
  text-decoration: underline;
}

.orderCardSteps .box .wrapper.button {
  cursor: pointer;
  background: var(--lj-arrow-right) right 7px center no-repeat;
  background-size: 25px auto;
}

.orderCardSteps .box.card .description.noBorder {
  padding-top: 0;
  color: #6c6c6c;
}

.orderCardSteps .box a.wrapper {
  display: block;
  background: var(--lj-arrow-right) right center no-repeat;
  background-size: 25px auto;
  padding-right: 25px;
  color: inherit;
}

.orderCardSteps .box .colorPick {
  border-radius: 100%;
  background-color: #f2f2f2;
  width: 40px;
  height: 40px;
  float: right;
}

p .icon {
  width: 1rem;
  height: 1rem;
  line-height: 0;
  background-size: 1rem;
  display: inline-block;
}

header .headTitle .toolbar .recommendButton {
  position: relative;
  margin: 0 0 0 5px;
  display: inline-block;
  right: 0;
  width: 40px;
  height: 40px;
  background: url(../svg/icon-recomandari.svg) top 8px center no-repeat;
  background-size: 20px;
}

/* RECOMANDARE APP */

.promoBox.recommend > a {
  padding-right: 40px;
}

.promoBox.recommend table {
  margin: 0 auto;
}

.promoBox.recommend .title {
  color: inherit;
}

.promoBox.recommend .cta {
  color: #1e61af;
  background: url(../svg/icon-meniu-sageata-dreapta-albastru.svg) right center
    no-repeat;
  background-size: 20px auto;
}

.actions button .mbsc-ic-ion-plus {
  font-size: 14px;
  line-height: 0;
}

.actions button .mbsc-ic-share {
  font-size: 14px;
  line-height: 0;
}

.recommendations.pageWrapper {
  padding: 10px;
}

.recommendations .cardBox {
  margin-bottom: 10px !important;
}

.recommendations .cardBox .wrapper {
  padding: 12px 15px;
}

.recommendations .heading {
  margin-top: 2rem;
  padding: 3rem 1rem 1rem 1rem;
  background-color: #a80000;
  border-radius: var(--lj-border-radius);
  position: relative;
  color: var(--lj-white);
}

.recommendations .heading h2 {
  color: var(--lj-white);
  font-weight: var(--lj-font-regular);
  font-size: 18px;
  margin: 0 0 1rem 0;
}

.recommendations .heading .cta .buttonOk {
  color: #a80000;
  padding: 6px;
  width: 50%;
  margin: 0 auto;
  text-decoration: none;
  background: var(--lj-white);
}

.recommendations .popupBox .cta a {
  color: var(--lj-button-secondary);
  padding: 8px 0;
  font-size: 1rem;
}

.recommendations .heading .bigTitle {
  font-size: 18px;
  font-weight: var(--lj-font-bold);
}

.recommendations .heading .bigTitle img {
  position: absolute;
  right: 50%;
  top: -3rem;
  translate: 50%;
  border: 3px solid var(--lj-bg-light);
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.recommendations .heading .bigTitle strong {
  font-size: 30px;
}

.recommendations .cardBox h2 {
  margin: 3px 0 5px 0;
  font-size: 1rem;
  color: var(--lj-font-tertiary-light);
  font-weight: var(--lj-font-regular);
}

.recommendations .infoList {
  font-size: 0.9em;
}

.recommendations .infoList td {
  padding: 2px 0;
  vertical-align: middle;
  color: var(--lj-font-tertiary-light);
}

.recommendations .infoList .number {
  padding-right: 12px;
  text-align: center;
}

.recommendations .cta .actions button {
  background-color: #1e61af;
  color: var(--lj-white);
  font-weight: 500;
  font-size: inherit;
  padding: 10px 12px;
  min-width: 0;
  margin: 0 3px;
}

.recommendations .userList tr:not(.completed) .icon img {
  filter: var(--lj-invert-icon);
}

.recommendations .cta.link a {
  text-decoration: underline;
  color: var(--lj-font-secondary-light);
}

.recommendations .cta .actions.fullWidth button {
  width: 100%;
}

.recommendations .cta .actions button .mbsc-ic {
  line-height: 0;
  margin-right: 5px;
}

.recommendations {
  background: var(--lj-bg-pattern) top center repeat;
}

.recommendations .statsHead {
  color: var(--lj-font-tertiary-light);
  margin-bottom: 5px;
  font-size: 0.9em;
}

.recommendations .statsHead .colorGreen {
  color: #3cb200;
}

.recommendations .userList {
  width: 100%;
}

.recommendations .userList .icon {
  width: 25px;
  line-height: 0;
}

.recommendations .userList .icon img {
  width: auto;
  height: 1rem;
}

.recommendations .userList td {
  padding: 5px 0;
}

.recommendations .userList .avatar {
  background-color: #f2f2f2;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.recommendations .userList .avatar img {
  width: auto;
  height: 100%;
}

.recommendations .userList .user {
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 6px;
}

.recommendations .userList .completed .user {
  opacity: 1;
}

.recommendations .userList .icon .info {
  height: 18px;
}

.recommendations .cardBox.faded {
  box-shadow: none;
  background-color: #fafafa;
}

.recommendations .checkList {
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  font-size: 1rem;
  padding: 0.75rem 0;
}

.recommendations .checkList.likeIcon {
  background: url(../images/icon-like-gray.png) right center no-repeat;
  background-size: 30px auto;
  padding-right: 50px;
  font-size: 0.9em;
}

.recommendations .checkList .icon {
  padding-right: 5px;
  width: 25px;
  line-height: 0;
}

.recommendations .checkList .icon img {
  width: auto;
  height: 18px;
}

.recommendations .checkList .icon .info {
  height: 18px;
}

.bottomDrawer {
  background-color: var(--lj-white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  width: 100%;
  border-radius: 10px 10px 0 0;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  padding-bottom: 0 !important;
  padding-top: 0;
}

.bottomDrawer button.close {
  width: 34px;
  height: 34px;
  border: none 0;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0;
  background: url(../svg/icon-close.svg) center no-repeat;
  background-size: 24px;
  min-width: 0;
}

.bottomDrawer .title {
  padding: 3px 0;
  margin-bottom: 15px;
}

.bottomDrawer .title h2 {
  margin: 0;
}

.bottomDrawer .wrapper {
  padding: 15px;
}

.bottomDrawer .buttons {
  text-align: center;
  padding: 5px 0;
  display: flex;
  width: 100%;
}

.bottomDrawer .buttons button {
  display: inline-block;
  color: inherit;
  min-width: 0;
  background: none;
  text-align: center;
  font-size: 13px;
  padding: 0;
  flex-grow: 1;
  border: none 0;
}

.bottomDrawer .buttons .icon {
  text-align: center;
  line-height: 60px;
  width: 60px;
  height: 60px;
  padding: 10px;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 12px;
}

.bottomDrawer .buttons .icon img {
  width: 28px;
  height: 28px;
}

.recommendations .colorGreen {
  background: none;
  color: #7de352 !important;
  font-weight: var(--lj-font-bold);
}

.recommendations .popupBox .container {
  padding: 20px 0 15px 0;
}

.recommendations .popupBox .wrapper {
  padding: 0 15px;
}

.recommendations .popupBox .title {
  margin-bottom: 10px;
}

.recommendations .buttonWhite {
  background-color: var(--lj-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  color: inherit;
  padding: 10px 20px;
  background: url(../svg/icon-arrow-right-gray.svg) right 5px center no-repeat;
  background-size: 20px;
  padding-right: 30px;
  display: inline-block;
}

.recommendations .bottomDrawer .cta {
  margin-bottom: 5px;
}

.recommendations .checkList .grayText {
  opacity: 0.6;
}

.recommendations .popupBox .userList {
  font-size: 0.8em;
}

/* RECOMANDARE APP end */

.grayBackground {
  height: auto;
  min-height: 100vh;
  background-color: var(--lj-bg-light, #545454);
}

.grayBackground header {
  background-color: var(--lj-navbar-bg-light, #545454);
  color: var(--lj-font-primary-white);
}

.separator10 {
  height: 10px;
  line-height: 0;
}

.separator20 {
  height: 20px;
  line-height: 0;
}

.buttonOk .share {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  line-height: 0;
  position: relative;
}

.buttonOk .share::before {
  content: "";
  width: 1rem;
  height: 17px;
  background: url(../svg/icon-share-white.svg) center no-repeat;
  background-size: 1rem;
  position: absolute;
  left: -4px;
  top: 1px;
}

.cardDetails h2 .tag {
  display: flex;
  background-color: var(--lj-snackbar-red);
  border-radius: 5px;
  line-height: 1.1em;
  padding: 3px 5px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  justify-content: center;
}

/* .cardDetails h2 .tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #e1eaf5;
    transform: rotate(45deg);
    position: absolute;
    left: -3px;
    top: 50%;
    margin-top: -2.5px;
} */

.cardDetails h2 .tag a {
  color: var(--lj-white);
  display: block;
}

@media screen and (max-width: 360px) {
  .cardDetails h2 .tag {
    font-size: 10px;
  }
}

@media screen and (max-width: 340px) {
  .cardDetails h2 .tag {
    font-size: 8.5px;
    margin-left: 3px;
  }
}

/* APP FEEDBACK */
.feedbackInput {
  border: none;
  border-radius: 8px;
  padding: 1rem 20px;
  max-width: 100%;
  min-width: 100%;
  resize: none;
  background: var(--lj-cardbox-secondary);
}

.requiredText,
.requiredText:focus {
  border: 2px solid #970b0b;
}

.requiredText::placeholder {
  color: #970b0b;
}

.rating .stars {
  text-align: center;
  padding: 12px 0;
}

.rating input[type="radio"] {
  visibility: visible;
}

.rating .star {
  width: 48px;
  height: 48px;
  background: url(../svg/rating-star-empty.svg) top no-repeat;
  background-size: 48px;
  display: inline-block;
  margin: 0 6px;
  filter: var(--lj-invert-icon);
}

.rating .star:hover,
.rating .star.selected {
  background: url(../svg/rating-star-full.svg) top no-repeat;
  background-size: 48px;
}

.infoList .buttonRate {
  border: solid 1px #ccc;
  padding-left: 15px;
  padding-right: 15px;
  color: #707070;
  background-color: var(--lj-white);
  font-weight: var(--lj-font-bold);
  font-size: 18px;
  padding: 14px;
  text-align: center;
  width: 100%;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  display: block;
  box-sizing: border-box;
}

.infoList .buttonRate img {
  margin-left: 4px;
  width: 20px;
  vertical-align: sub;
}

/* APP FEEDBACK end */

/* AVANPOSTURI */

/* ajax load more spinner:begin */

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

.lds-ring-spinner {
  width: 80px;
  height: 80px;
}
.lds-ring-spinner div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 44px;
  height: 44px;
  margin: 8px;
  border: 8px solid black;
  border-radius: 50%;
  animation: lds-ring-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: grey transparent transparent transparent;
}
.lds-ring-spinner div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring-spinner div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring-spinner div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ajax load more spinner: end */

body.popup-open {
  height: 100%;
  overflow-y: hidden;
  position: relative;
}

.breadcrumb {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  position: relative;
  list-style: none;
  color: var(--lj-font-primary-light);
  align-items: center;
  /* padding-top: 60px; */
  min-height: 60px;
}

.breadcrumb .headTitle.noBack {
  padding-left: 30px;
}

.breadcrumb .headTitle {
  color: var(--lj-font-tertiary-light);
  margin-right: auto;
  padding: 0;
}

.breadcrumb a {
  color: var(--lj-font-primary-light);
}

.breadcrumb-item::after {
  display: inline-block;
  padding-right: 1rem;
  padding-left: 1rem;
  color: var(--lj-font-primary-light);
  content: ">";
}

.breadcrumb-item:last-child::after {
  display: inline-block;
  content: "";
}

.breadcrumb-item:hover::before {
  text-decoration: none;
}

.list-group {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  border-radius: var(--lj-border-radius);
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.list-group a .list-group-item {
  position: relative;
  display: block;
  padding: 0.8rem 1.25rem 0.8rem 3rem;
  color: var(--lj-font-tertiary-light);
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.list-group a .avFacebook {
  background: url(../svg/icon-share-fb.svg) 10px center / 30px 30px no-repeat;
}

.list-group a .avPhone {
  background: url(../svg/icon-avanpost-phone.svg) 10px center / 30px 30px
    no-repeat;
}

.list-group a .avEmail {
  background: url(../svg/icon-avanpost-mail.svg) 10px center / 30px 30px
    no-repeat;
}

.list-group a .avWebsite {
  background: url(../svg/icon-avanpost-website.svg) 10px center / 30px 30px
    no-repeat;
}

.list-group a .avLocation {
  background: url(../svg/icon-avanpost-location.svg) 10px center / 30px 30px
    no-repeat;
}

.avanpostHead .info .title {
  font-size: 20px;
  font-weight: var(--lj-font-regular);
  line-height: 1.75rem;
}

.avanpostHead .avatar {
  background-color: var(--lj-white);
  border: 4px solid var(--lj-white);
  width: 95px;
  height: 95px;
}

/* FILTERS */

.avanpostPage {
  background-color: var(--lj-cardbox-light);
  border-radius: var(--lj-border-radius) var(--lj-border-radius) 0 0;
}

.avanpostPage .filters .filter .filtering {
  background-color: var(--lj-cardbox-light);
  background-image: none;
}

.avanpostPage .filtering {
  background: url(../images/icon-arrow-select.png) var(--lj-white) right center
    no-repeat;
  background-size: 10px 7px;
  padding-right: 15px;
}

.avanpostPage .filters .filter input[type="radio"]:checked + .item {
  background: url(../svg/icon-close-alb.svg) var(--lj-white) right 12px center
    no-repeat;
  background-size: 21px;
  background-color: var(--lj-gray-700);
}

/* END FILTERS */

.list.avanpostList {
  padding: 0 6px;
}

.avanpostList .avanpostItem h2 {
  line-height: 1.2rem;
  font-weight: var(--lj-font-regular);
  color: inherit;
}

.avanpostList .avanpostItem {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  vertical-align: middle;
  align-items: center;
  background: var(--lj-arrow-right) right -6px center no-repeat;
  background-size: 25px auto;
  border-bottom: 1px solid var(--lj-border-bottom);
}

.avanpostList .view-avanpost:last-of-type .avanpostItem {
  border: none;
}

.avanpostList .avanpostItem .logoAvanpost {
  padding: 1rem 10px;
}

.avanpostList .avanpostItem img,
.headUser .avatar img,
.searchList .avatar img {
  height: 100%;
  object-fit: contain;
}

.avanpostItem .logoAvanpost .avatar img {
  border: none !important;
}

.avanpostList .avanpostItem .avatar {
  border: 1px solid var(--lj-gray-400);
  background-color: var(--lj-white);
  width: 50px;
  height: 50px;
}

.avanpostList .avanpostItem .info {
  max-width: 70%;
  color: var(--lj-font-tertiary-light);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.avanpostList .item {
  padding: 0;
}

.avanpostBtnMap {
  background-color: var(--lj-button-primary);
  padding: 14px 18px;
  text-align: center;
  max-width: fit-content;
  margin: 0 auto;
  border: none 0;
  -webkit-border-radius: var(--lj-border-radius-lg);
  border-radius: var(--lj-border-radius-lg);
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  font-size: 18px;
}

.cta.bottom:not(.avanpostBtnContainer) .avanpostBtnMap::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 10ch;
  background: linear-gradient(var(--lj-btn-gradient));
  left: 0;
  bottom: 4rem;
  z-index: -1;
}

.avanpostBtnMap a {
  color: var(--lj-bg-light);
}

.avanpostBtnMap img {
  filter: brightness(0.8) var(--lj-icons-dark);
  vertical-align: sub;
}

.searchList .title .search input[type="text"] {
  padding: 9px 3rem 9px 15px;
}

.searchList .searchButton {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -19px;
}

.searchList .list .item {
  display: flex;
  box-sizing: border-box;
  width: 90%;
  align-items: center;
}

.searchList .list .item .icon {
  padding-top: 5px;
}

.searchList .avatar {
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  font-size: 1rem;
  font-weight: var(--lj-font-bold);
  display: inline-block;
  margin-right: 1rem;
  background-color: var(--lj-white);
  border: 1px solid #e4e4e4;
}

.searchList li a {
  display: block;
  padding: 18px 0;
  border-style: solid;
  border-width: 1px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-image: linear-gradient(
      to right,
      white,
      white 86px,
      #e4e4e4 86px,
      #e4e4e4 100%
    )
    10 10 stretch;

  background: var(--lj-arrow-right) right 7px center no-repeat;
  background-size: 25px auto;
  color: #000;
}

.searchList ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.searchList .searchButton {
  background-size: 20px;
}

.searchList .searchItem {
  width: 100%;
}

.searchList .searchItem h2 {
  margin: 0;
}

.searchList .searchItem .distance {
  color: #4b4b4b;
}

.searchList .searchItem .location {
  color: #989898;
}

.searchList .title {
  font-size: 15px;
  font-weight: var(--lj-font-bold);
  padding: 10px 20px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
  position: relative;
}

.searchList .item {
  padding: 0 20px;
  overflow: hidden;
}

.searchList .item .date {
  color: #bcbaba;
  font-size: 14px;
}

.searchList .title .search {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  padding: 5px 15px;
  z-index: 10;
  display: none;
}

.searchList input {
  font-weight: 500;
}

.searchList .item .close {
  background: url(../svg/icon-close.svg) center no-repeat;
  width: 30px;
  height: 30px;
  display: block;
  border: none 0;
  float: right;
  margin-right: -5px;
  background-size: 25px;
}

.avanpostFilter .menu ul {
  border-top: solid 1px #e5e5e5;
  list-style: none;
  margin: 0;
  padding: 0;
}

.avanpostFilter .menu {
  border-bottom: none 0;
}

.avanpostFilter .menu li {
  list-style: none;
  margin: 0;
}

.avanpostFilter .menu a {
  padding-left: 0;
  border: none 0;
  display: block;
  padding: 22px;
  border-bottom: solid 1px #e5e5e5;
  font-weight: var(--lj-font-bold);
  color: var(--lj-gray-700);
}

.avanpostFilter .active {
  background: url(../svg/icon-close.svg) right 12px center no-repeat, #f9f9f9;
  background-size: 25px auto;
}

.avanpostPage iframe {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
}

.avanpostCards a {
  color: inherit;
}

.avanpostCards {
  padding: 0 5px;
  margin: 0 auto;
  transform: translate(0, 0);
  transition: all 0.5s;
  outline: none;
}

.avanpostCards .slide {
  height: 100%;
}

.avanpostCards .slick-track {
  display: flex;
  align-items: flex-end;
}

.avanpostCards .slick-slide {
  height: auto;
  flex: 1;
  transform: translate(0, 0);
}

.avanpostCards .slick-current .activeMarker {
  outline: 2px solid var(--lj-primary) 87;
}

.cta.avanpostFloat {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 10px 20px;
  margin-bottom: 15px;
  /* background: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2) 80%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2) 80%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2) 80%); */
}

.hartaAvanposturi .cta {
  padding: 10px 20px;
}

.hartaAvanposturi .cta .left {
  width: 48%;
}

.hartaAvanposturi .cta .right {
  width: 48%;
}

.hartaAvanposturi .avanpostListing {
  background-color: var(--lj-cardbox-light);
  border-radius: 8px;
}

.hartaAvanposturi .sold {
  font-size: 20px;
  text-align: left;
  padding: 0 0 7px 0;
}

.hartaAvanposturi .mainCard {
  width: 70%;
  margin: 0 auto;
}

.hartaAvanposturi .image .container {
  line-height: 0;
  overflow: hidden;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.hartaAvanposturi .image img {
  width: 100%;
  height: auto;
}

.hartaAvanposturi .leftCard {
  width: 220px;
  position: absolute;
  left: -180px;
  bottom: 0;
}

.hartaAvanposturi .rightCard {
  width: 220px;
  position: absolute;
  right: -180px;
  bottom: 0;
}

.hartaAvanposturi .code {
  position: absolute;
  left: 7%;
  text-align: center;
  bottom: 45%;
  color: var(--lj-gray-700);
  font-size: 22px;
}

.hartaAvanposturi .exp {
  position: absolute;
  left: 7%;
  bottom: 34%;
  color: var(--lj-gray-700);
}

.hartaAvanposturi .exp:before {
  content: "EXP:";
  font-size: 11px;
}

.hartaAvanposturi .name {
  position: absolute;
  left: 7%;
  bottom: 22px;
  color: var(--lj-gray-700);
}

.hartaAvanposturi .inputName {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 10px;
  margin-top: -20px;
}

.hartaAvanposturi .inputName input {
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: none 0;
  padding: 10px 45px 10px 15px;
}

.hartaAvanposturi .inputName input[type="submit"] {
  background: url(../images/icon-forward.png) center no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
  height: 38px;
  padding: 10px;
}

.hartaAvanposturi .main .icon {
  width: 25px;
  height: 25px;
  background: url(../images/icon-checkbox.png) var(--lj-white) center no-repeat;
  background-size: 1rem auto;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  right: 12px;
  top: -13px;
}

.hartaAvanposturi .actions {
  position: absolute;
  top: 20px;
  right: 10px;
}

.hartaAvanposturi .actions .button {
  background: url(../svg/icon-more-alb.svg) center no-repeat;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-size: 25px;
}

.hartaAvanposturi .container {
  background-color: transparent;
}

.hartaAvanposturi .colorBlack {
  background-color: #000;
}

.hartaAvanposturi .colorGray {
  background-color: #d9d9d9;
}

.hartaAvanposturi .colorRed {
  background-color: var(--lj-primary);
}

.hartaAvanposturi .colorOrange {
  background-color: #f26500;
}

.hartaAvanposturi .logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.hartaAvanposturi .logo img {
  max-width: 50%;
  max-height: 80px;
  width: auto;
  height: auto;
}

.hartaAvanposturi .addCard {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: var(--lj-font-bold);
  margin-top: -35px;
  color: #e50000;
}

.hartaAvanposturi .addCard .plus {
  font-size: 40px;
  font-weight: var(--lj-font-bold);
  line-height: 50px;
}

.bottomNav {
  position: absolute;
  right: 1rem;
  top: -25%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  text-align: right;
}

.bottomNav .avanpostBtnMap {
  margin: 0;
  margin-right: 12px;
  -webkit-box-shadow: 0 2px 3px rgb(0 0 0 / 25%);
  box-shadow: 0 2px 3px rgb(0 0 0 / 25%);
  display: flex;
  align-items: center;
  font-size: 15px;
}

.bottomNav .avanpostBtnLocation {
  vertical-align: bottom;
  width: 53px;
  height: 53px;
  display: inline-block;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 2px 3px rgb(0 0 0 / 25%);
  box-shadow: 0 2px 3px rgb(0 0 0 / 25%);
  background: url(../svg/icon-localization.svg) var(--lj-white) center no-repeat;
  background-size: 20px;
}

.topList {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 10px;
  border-radius: 8px 8px 0 0;
  text-align: left;
  gap: 12px;
}

.topList .avatar {
  width: 100%;
  height: 60px;
  max-width: 60px;
  flex: auto;
  background-color: var(--lj-white);
  border: 1px solid var(--lj-gray-400);
}

.topList .avatar img {
  height: 100%;
}

.topList .avList {
  flex: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.bottomList {
  text-align: right;
  padding: 6px 12px;
  color: var(--lj-font-secondary-light);
  font-size: 14px;
}

.avList h2 {
  font-size: 0.8rem;
  font-weight: var(--lj-font-regular);
}

.avList p {
  color: var(--lj-font-tertiary-light);
  font-weight: 500;
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin: 0;
}

/* ASCUNDE CARDURI PENTRU DEVICE-URI MICI */
@media screen and (max-width: 310px), screen and (max-height: 480px) {
  .hartaAvanposturi {
    display: none;
  }
}

/* ASCUNDE CARDURI PENTRU DEVICE-URI MICI end*/

/* END AVANPOSTURI */

/* SEARCH LOADER */

.searchLoader {
  padding: 6px;
  display: inline-block;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: 0 6px 8px rgb(0 0 0 / 12%);
  box-shadow: 0 6px 8px rgb(0 0 0 / 12%);
  background-size: 20px;
}

.loadingSpinner {
  width: 20px;
  height: 20px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 3px solid #ff0001;
  border-top-color: transparent;
  animation: round 0.8s linear infinite;
}

/* END SEARCH LOADER */

/* READ MORE */
.detailsAvanpost {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  padding: 0 1rem;
}

.detailsAvanpost-less {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  cursor: pointer;
  font-size: 1em;
  color: var(--lj-font-primary-light);
  background: none;
  border: none;
  padding: 12px;
  width: 100%;
  margin-top: -20px;
}

.read-more-btn.active {
  transform: rotate(-180deg);
}

.icon-show-details {
  width: 24px;
  height: 24px;
  background: url(../svg/icon-meniu-sageata-jos.svg) right center no-repeat;
  background-size: 25px auto;
  padding-right: 25px;
  color: inherit;
}

.icon-hide-details {
  background: url(../svg/icon-meniu-sageata-sus.svg) right center no-repeat;
}

/* END READ MORE */
/* PREFIX ROMANIA */

.prefixTara {
  background: url(../svg/flagRO.svg) no-repeat scroll;
  padding-left: 24px !important;
  background-size: 20px;
  background-position: left;
}

/* END PREFIX ROMANIA */

.category-input-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.categoryChip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 21px;
  padding: 2px 8px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 0.5rem;
  font-size: 13px;
  font-weight: 500;
  background-color: var(--lj-bg-light);
  border-radius: 6px;
  word-wrap: break-word;
  box-shadow: none;
  text-transform: none;
}

/* Category Chips End */

input:checked + .greenToggle:before {
  background-color: var(--lj-white);
}

input:checked + .greenToggle {
  background-color: #39944b;
}

.notificationItem {
  box-shadow: 0 1px 4px #00000024;
  border-radius: 6px;
  box-sizing: border-box;
  width: 100%;
  vertical-align: middle;
  align-items: center;
}

.setAvBtn {
  border-radius: var(--lj-border-radius);
  background-color: var(--lj-cardbox-light);
  padding: 8px 12px;
  line-height: 1.75;
}

.transactionsList .setAvBtn {
  background-color: var(--lj-bg-light);
}

.notificationItem img {
  vertical-align: sub;
  padding-right: 6px;
}

.notificationItem .wrapper {
  background: none;
  padding: 12px;
}

.cardEdit {
  display: flex;
  justify-content: space-around;
  text-align: center;
  border-top: 1px solid var(--lj-bg-light);
}

.cardEdit a {
  width: 50%;
  text-decoration: none;
}

.cardEdit .cardBtn {
  line-height: 38px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cardEdit .cardBtn img {
  filter: var(--lj-invert-icon);
}

div.cardEdit > :first-child {
  border-right: 1px solid var(--lj-bg-light);
}

/* 3/20/2023 */

.code .copyIBAN {
  display: flex;
  justify-content: center;
  padding-bottom: 12px;
}

.code .copyIBAN img {
  width: 1.3rem;
}

.container .code svg {
  -webkit-user-select: all;
  -moz-user-select: all;
  user-select: all;
  overflow: visible;
  width: inherit;
}

@media (max-width: 360px) {
  .container .code svg text {
    font-size: larger;
  }

  .code .copyIBAN img {
    width: 1rem;
  }
}

.card .cardDigital .icon-digital {
  background: url(../svg/icon-libra-cloud.svg) left center no-repeat;
  background-size: auto;
  background-size: 14px;
  display: inline-block;
  width: 15px;
  height: 10px;
  position: static;
  margin-right: 5px;
}

.card .cardDigital {
  font-size: 12px;
  padding: 0 0 8px 0;
  display: block;
}

.promoSlider .slick-slide {
  height: auto;
}

.promoSlider .slick-track {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promoSlider .promoBox {
  margin: 0 0;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.promoSlider .slick-dots {
  bottom: 0;
}

.resetFilterBtn {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--lj-blue);
  font-family: inherit;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 55%;
  margin-top: -1rem;
}

.avanpostFilter input[type="radio"] {
  /* display: none; */
}

.avanpostFilter input[type="radio"] + .filterItem {
  cursor: pointer;
}

.avanpostFilter input[type="radio"]:checked + .filterItem {
  /* background: url(../svg/icon-check.svg) right 1rem center no-repeat, #f9f9f9; */
  background-size: 1rem auto;
  color: var(--lj-gray-700);
}

.avanpostPage iframe {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
}

.avanpostCards a {
  color: inherit;
}

.avanpostCards {
  padding: 0 5px;
  margin: 0 auto;
  transform: translate(0, 0);

  transition: all 0.5s;
  outline: none;
}

.avanpostCards .slick-slide {
  transform: translate(0, 0);
}

.hartaAvanposturi .cta {
  padding: 10px 20px;
}

.hartaAvanposturi .cta .left {
  width: 48%;
}

.hartaAvanposturi .cta .right {
  width: 48%;
}

.hartaAvanposturi .sold {
  font-size: 20px;
  text-align: left;
  padding: 0 0 7px 0;
}

.hartaAvanposturi .mainCard {
  width: 70%;
  margin: 0 auto;
}

.hartaAvanposturi .image .container {
  line-height: 0;
  overflow: hidden;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.hartaAvanposturi .image img {
  width: 100%;
  height: auto;
}

.hartaAvanposturi .leftCard {
  width: 220px;
  position: absolute;
  left: -180px;
  bottom: 0;
}

.hartaAvanposturi .rightCard {
  width: 220px;
  position: absolute;
  right: -180px;
  bottom: 0;
}

.hartaAvanposturi .code {
  position: absolute;
  left: 7%;
  text-align: center;
  bottom: 45%;
  color: var(--lj-gray-700);
  font-size: 22px;
}

.hartaAvanposturi .exp {
  position: absolute;
  left: 7%;
  bottom: 34%;
  color: var(--lj-gray-700);
}

.hartaAvanposturi .exp:before {
  content: "EXP:";
  font-size: 11px;
}

.hartaAvanposturi .name {
  position: absolute;
  left: 7%;
  bottom: 22px;
  color: var(--lj-gray-700);
  /*font-size:17px;*/
}

.hartaAvanposturi .inputName {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 10px;
  margin-top: -20px;
}

.hartaAvanposturi .inputName input {
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: none 0;
  padding: 10px 45px 10px 15px;
}

.hartaAvanposturi .inputName input[type="submit"] {
  background: url(../images/icon-forward.png) center no-repeat;
  position: absolute;
  right: 0;
  top: 0;

  width: 45px;
  height: 38px;
  padding: 10px;
}

.hartaAvanposturi .main .icon {
  width: 25px;
  height: 25px;
  background: url(../images/icon-checkbox.png) var(--lj-white) center no-repeat;
  background-size: 1rem auto;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  right: 12px;
  top: -13px;
}

.hartaAvanposturi .actions {
  position: absolute;
  top: 20px;
  right: 10px;
}

.hartaAvanposturi .actions .button {
  background: url(../svg/icon-more-alb.svg) center no-repeat;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-size: 25px;
}

.hartaAvanposturi .container {
  background-color: transparent;
}

.hartaAvanposturi .colorBlack {
  background-color: #000;
}

.hartaAvanposturi .colorGray {
  background-color: #d9d9d9;
}

.hartaAvanposturi .colorRed {
  background-color: var(--lj-primary);
}

.hartaAvanposturi .colorOrange {
  background-color: #f26500;
}

.hartaAvanposturi .logo {
  position: absolute;
  top: 20px;
  left: 20px;
}

.hartaAvanposturi .logo img {
  max-width: 50%;
  max-height: 80px;
  width: auto;
  height: auto;
}

.hartaAvanposturi .addCard {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: var(--lj-font-bold);
  margin-top: -35px;
  color: #e50000;
}

.hartaAvanposturi .addCard .plus {
  font-size: 40px;
  font-weight: var(--lj-font-bold);
  line-height: 50px;
}

.avanpostItem {
  padding: 10px 20px;
  background: var(--lj-arrow-right) right 7px center no-repeat;
  background-size: 25px auto;
}

.topInfoPanel {
  display: flex;
  align-items: center;
  flex: auto;
  background-color: #f6f6f6;
}

.botInfoPanel {
  display: flex;
  align-items: center;
  flex: auto;
  background-color: var(--lj-white);
  flex-direction: column;
}

/* ADAUGARE LOGO AVANPOST RADIO GUERILLA */
.avanpostHead .avanpostStamp {
  position: relative;
}

.avanpostHead .avanpostStamp img {
  width: 46px;
  height: 46px;
  position: absolute;
  transform: translate(-25%, -45%);
  right: 0;
  top: 0;
  box-sizing: border-box;
  border-radius: 100%;
}

@media screen and (max-width: 360px) {
  .avanpostHead .avanpostStamp img {
    width: 48px;
    height: 48px;
  }
}

/* END ADAUGARE LOGO AVANPOST RADIO GUERILLA */

.cardTop {
  background-color: #f3f3f3;
  border-bottom: 1px solid #d6d6d6;
  padding: 1rem 0;
  margin-bottom: 24px;
}

.cardTop .image {
  line-height: 0;
  width: 80px;
  padding-right: 15px;
}

.cardTop table td {
  vertical-align: middle;
}

.cardTop .image img {
  width: 80px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
}

.popupBox .cta a[disabled] {
  opacity: 0.2;
  pointer-events: none;
}

.setCardSold .box a.wrapper {
  background: none;
  padding: 15px 6px 15px 15px;
}

.setCardSold .box th {
  display: flex;
  flex-direction: row;
  text-align: right;
  justify-content: end;
  align-items: flex-end;
  justify-items: end;
  justify-self: end;
  align-self: flex-end;
  align-content: flex-end;
}

.stergeSoldMinim {
  content: "";
  width: 44px;
  height: 44px;
  display: inline-block;
  background: url(../svg/icon-sterge-gri.svg) center center no-repeat;
  background-size: 20px auto;
}

.editareSoldMinim {
  content: "";
  width: 44px;
  height: 44px;
  display: inline-block;
  background: url(../svg/icon-editare-rosu.svg) center center no-repeat;
  background-size: 25px auto;
}

.popupBox .cta a.icon-date::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../svg/icon-libra-date-card.svg) center no-repeat;
  background-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}

.notificationIcon {
  background: url(../svg/icon-settings-notifications.svg) center no-repeat;
}

/* NOTIFICARE AVANPOST */

/* Notifications Avanpost */
.popup.poupBar.avanpostNotification {
  margin-top: 0;
}

.popup.poupBar.avanpostNotification .closeButton {
  margin-right: 9px;
}

.popup.avanpostNotification .cta.bottom {
  position: sticky;
  padding: 20px 0;
}

.popup.poupBar.avanpostNotification .popupBox {
  margin-top: 80px;
  margin-bottom: 0px;
}
/* Notifications Avanpost end */

.avanpostNotification .radioButton input[type="checkbox"]:checked + label {
  border: solid 1px var(--lj-button-primary);
}

.avanpostNotification
  .radioButton
  input[type="checkbox"]:checked
  + label:after {
  opacity: 1;
}

.headTitle .toolbar .heartIcon {
  background: url(../svg/icon-avanpost-notification-active.svg) center no-repeat;
  left: 8px;
}

.headTitle .toolbar .notificationIcon {
  background: url(../svg/icon-settings-notifications.svg) center 9px no-repeat;
  background-size: 24px;
}

nav.breadcrumb input[type="checkbox"] + .heartIcon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../svg/icon-avanpost-add-favorite.svg) center no-repeat;
  background-size: 24px;
  cursor: pointer;
  filter: var(--lj-invert-full);
}

nav.breadcrumb input[type="checkbox"]:checked + .heartIcon {
  background: url(../svg/icon-avanpost-notification-active.svg) center no-repeat;
  background-size: 24px;
}

header .headTitle .toolbar .avanpostHeart {
  display: flex;
}

@keyframes animateNotif {
  70% {
    transform: scale(4);
    opacity: 0;
  }

  100% {
    transform: scale(6);
    opacity: 0;
  }
}

@keyframes activeNotif {
  25% {
    transform: scale(1.3);
  }

  50%,
  100% {
    transform: scale(1);
  }
}

/* END OF NOTIFICARE AVANPOST */

.avanpostNotification .deleteAvanpost {
  background-image: url(../svg/icon-avanpost-remove.svg);
  min-width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-size: 28px;
  background-position: center;
  cursor: pointer;
  margin-left: auto;
}

.avanpostNotification .avanpostItem {
  background: none;
  /* padding: 0.5rem 0; */
}

.avanpostNotification .deleteNotif {
  background-image: url(../svg/icon-avanpost-remove.svg);
  min-width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: center;
  cursor: pointer;
}

.heartIconMargin {
  padding-left: 20px;
}

/* END FAVORITE AVANPOSTURI */
/* ADAUGARE ICON DIGITAL */
.card .cardDigital .icon-digital {
  background: url(../svg/icon-libra-cloud.svg) left center no-repeat;
  background-size: auto;
  background-size: 14px;
  display: inline-block;
  width: 15px;
  height: 10px;
  position: static;
  margin-right: 5px;
}

.card .cardDigital {
  font-size: 12px;
  display: block;
  min-height: 7px;
  transition: all 0.5s;
}

/* ADAUGARE ICON DIGITAL END */

/* REDESIGN */
header .headTitle .toolbar .addCard {
  position: relative;
  margin: 0 0 0 5px;
  display: inline-block;
  right: 0;
  width: 44px;
  height: 44px;
  background: url("../svg/icon-homepage-add-card.svg") top 8px center no-repeat;
  background-size: 26px;
}

header .headTitle .toolbar .settingsIcon {
  position: relative;
  display: inline-block;
  right: 0;
  width: 44px;
  height: 44px;
  background: url("../svg/icon-homepage-settings.svg") top 8px center no-repeat;
  background-size: 28px;
  background-position: center center;
}

.slick-nexts {
  right: 0;
}

.slick-prevs,
.slick-nexts {
  position: absolute;
  top: 0;
  margin-top: 34%;
  display: block;
  width: 2.3rem;
  height: 2.5rem;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prevs.slick-disabled:before,
.slick-nexts.slick-disabled:before {
  opacity: 0;
}

.slick-prevs:before,
.slick-nexts:before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../svg/icon-carousel-slider.svg");
  background-size: contain;
  background-repeat: no-repeat;
  color: black;
  display: inline-block;
  background-position: center center;
}

.slick-prevs:before {
  background-image: url("../svg/icon-carousel-slider-prev.svg");
}

.cards .cardFlip {
  width: 54px;
  height: 54px;
  position: absolute;
  bottom: -10px;
  right: -23px;
  background: url("../svg/icon-flip-card.svg") center no-repeat;
  background-size: 28px;
  z-index: 101;
  cursor: pointer;
  filter: var(--lj-icons-dark);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transform: translateZ(0px);
}

.cards .cardFlip.flipped {
  position: absolute;
  transform: rotateY(180deg) translateZ(-400px);
}

.cards .sold small {
  line-height: normal;
  text-align: left !important;
  font-size: 14px;
  display: inherit;
}

.cards .sold {
  position: absolute;
  left: 7%;
  text-align: center;
  top: 24%;
  color: var(--lj-white);
  font-size: 22px;
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 20px;
}

.cardDigital .front:after,
.cardDigital .back:after {
  content: "DIGITAL";
  font-size: 0.75rem;
  color: #fff;
  font-weight: bold;
  position: absolute;
  transform: rotate(90deg);
  right: 0;
  top: 50%;

  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cards .alias {
  position: absolute;
  left: 7%;
  bottom: 20px;
  color: var(--lj-white);
  font-size: 13px;
  text-transform: initial;
  line-height: 14px;
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.cards .alias:after {
  content: url("../svg/icon-alias-edit.svg");
  padding-left: 4px;
  bottom: 0;
  height: 100%;
  display: inline-block;
}

.card.light .alias:after,
.card.free .alias:after {
  filter: invert(1);
}

.cards .card.light .inputName input,
.cards .card.free .inputName input {
  color: #333;
  border-color: #333;
}

.cards .card.default .inputName input {
  color: inherit;
  border-color: inherit;
}

.cardBox {
  margin: 12px 0;
  background: var(--lj-cardbox-light);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  overflow: hidden;
}

.cardTitle {
  color: var(--lj-font-primary-light);
  font-size: 1rem;
  padding: 0.75rem 1rem;
}

.cardTitle .right {
  color: var(--lj-font-primary-light);
  font-size: 0.75rem;
  line-height: 1.75;
}

.transactionsList .transactionDate {
  min-width: 34px;
  height: 34px;
  text-align: center;
  border-radius: 0.5rem;
  line-height: 12px;
  font-size: 10px;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  font-weight: var(--lj-font-bold);
  background-color: var(--lj-bg-light);
  text-transform: uppercase;
}

.avanpostPreview {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem 0.75rem 1rem;
  margin: 0;
  text-align: center;
  gap: 16px;
}

.avanpostPreview li img {
  border: 1px solid var(--lj-gray-400);
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 50rem;
  object-fit: cover;
  margin: 0 auto;
  background: white;
}

.icons {
  filter: var(--lj-icons-dark);
}

.flipCard,
.flipCard img {
  width: 100%;
  margin: 0 auto;
}

.flipCard {
  perspective: 900px !important;
  z-index: -1;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cards .front .exp.infoRed,
.cards .front .exp.infoOrange {
  bottom: 50%;
}

.cards .cvv {
  position: absolute;
  left: 50%;
  text-align: center;
  bottom: 34%;
  color: var(--lj-white);
  font-size: 17px;
  -webkit-text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.cards .cvv:before {
  content: "CVV ";
}

.cards .code .copyNumber {
  width: 24px;
  display: inline-block;
  vertical-align: sub;
  padding-left: 4px;
}

@media screen and (max-width: 360px) {
  .cards .code {
    bottom: 50%;
    font-size: 1.15rem;
  }
}

.cards .card .loaderCard {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.cards .card .loaderCard .soldCard {
  content: url(../svg/icon-loader.svg);
  animation: round 1s linear infinite;
  width: 36px;
  height: 36px;
}

.cards .card .loaderCard .blockedCard {
  content: "";
}

.cards .card.free .loaderCard .soldCard {
  filter: invert(1);
}

.colorRed {
  color: var(--lj-red);
}

.card .label img {
  margin: 0 auto;
}

.cards .posesorTag {
  z-index: 101;
  position: absolute;
  display: block;
  margin: 0;
  left: -10px;
  right: 0;
  top: -12px;
  content: url(../svg/icon-posesor-desemnat.svg);
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateZ(0px);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

/* TABS HOMEPAGE */
.tab-content .menu .option:last-child {
  border-bottom: none;
}

.tab-content {
  display: none;
  background: var(--lj-cardbox-light);
  padding: 1rem 0 0.5rem 0;
  border-radius: 0 0 10px 10px;
  z-index: 9;
  position: relative;
}

.tabList:not(.active).disabled {
  opacity: 0.2;
  background: none;
  border: 1px solid var(--lj-border-bottom);
}

.tabList.expanded {
  background-color: var(--lj-tab-disabled) !important;
  border-radius: 10px 10px 0 0 !important;
  z-index: 8;
}

.addCardButton.cardAvailable {
  background-color: #dc071e;
}

input.buttonOk.inverted,
button.buttonOk.inverted,
a.buttonOk.inverted,
input.buttonOk.gray,
a.buttonOk.gray {
  background: var(--lj-bg-light);
  border: 1px solid var(--lj-font-tertiary-light) !important;
  color: var(--lj-font-tertiary-light);
}

a.buttonOk.disabled,
input.buttonOk:disabled {
  background-color: var(--lj-button-disabled);
  border: 1px solid var(--lj-button-disabled);
}

.buttonOk.inverted:disabled {
  background-color: transparent;
}

.avanpostLikes,
.avanpostNews,
.avanpostNotifications {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.breadcrumb .icon:has(.avanpostLikes),
.breadcrumb .icon:has(.avanpostNews) {
  filter: none;
}

.avanpostLikes {
  background-image: var(--lj-avanpost-likes);
}

.avanpostNews {
  background-image: var(--lj-avanpost-news);
}

.avanpostNotifications {
  background-image: var(--lj-avanpost-notifications);
}

.avanpostNews .activeNews {
  background-color: #e35252;
  font-size: 10px;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  position: absolute;
  right: -2px;
  top: 2px;
  width: 12px;
  height: 12px;
  text-align: center;
  color: var(--lj-white);
}

.addContact {
  border-radius: 100px;
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 36px;
}

.breadcrumb .icon {
  padding: 0 20px;
  filter: var(--lj-invert-icon);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 8px;
}

input[type="text"]::placeholder {
  color: var(--lj-font-secondary-light);
}

.pageIcon img {
  max-width: 55%;
  height: auto;
}

.pageIcon img.confirmImg,
img.confirmImg {
  content: var(--lj-img-confirmation);
}

.pageIcon img.loaderLogo {
  content: var(--lj-img-loader-logo-static);
}

.pageIcon img.showLoaderLogo {
  content: var(--lj-img-loader-logo);
}

.pageIcon img.showErrorImg {
  content: var(--lj-img-error);
}

.pageIcon img.receiveImg {
  content: var(--lj-img-receive);
}

.pageIcon img.sendImg {
  content: var(--lj-img-send);
}

.pageIcon img.notFound {
  content: var(--lj-not-found);
}

.pageIcon img.ratingImg {
  content: var(--lj-rating);
}

.sectionTitle {
  padding: 15px 20px 16px 20px;
  font-weight: 500;
}

.shareBox {
  background-color: var(--lj-cardbox-light);
  padding: 10px 0;
  text-align: center;
}

.shareBox input[type="text"] {
  font-size: 13px;
  padding-left: 10px;
  padding-right: 10px;
}

.shareBox .shareIcons {
  list-style: none;
  padding: 0 !important;
  display: flex;
  font-size: 13px;
}

.shareBox .shareIcons li {
  display: inline-block;
  flex-basis: 0;
  flex-grow: 1;
}

.shareBox .shareIcons .icon {
  display: block;
  line-height: 50px;
  width: 48px;
  height: 48px;
  text-align: center;
  background-position: center !important;
  margin: 0 auto;
}

.shareBox .shareIcons a {
  color: var(--lj-font-secondary-light);
  display: block;
}

.shareBox .iconCopy {
  background: url(images/icon-share-copy.png) left center no-repeat;
  background-size: 13px 15px;
  width: 13px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
}

.selectedCard .bigCard .sold,
.selectedCard .card .sold {
  position: absolute;
  right: 0;
  text-align: center;
  top: 40%;
  width: 100%;
  margin: 0 auto;
  font-size: 15px;
  font-family: "Roboto Condensed";
  line-height: 1rem;
}

.card2card .card .alias::after {
  content: "";
}

.cardDigital.free .front:after,
.cardDigital.free .back:after {
  color: #333;
}

.card.free .refreshButton {
  filter: invert(1);
}

.cards.card2card .name.alias {
  bottom: 13%;
  font-weight: inherit;
  line-height: normal;
}

.cards.card2card .name {
  bottom: 28%;
  font-weight: var(--lj-font-extra-bold);
}

input.buttonOk.buttonSecondary {
  background: var(--lj-cardbox-light);
  color: var(--lj-font-primary-light);
}

.popupBox h2 {
  /* color: var(--lj-white) !important; */
}

.tabMenu .tabs div {
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.tabMenu .tabs li.active {
  border-radius: 10px 10px 0 0;
}

.cards .statusCard .status {
  font-size: 1.25rem;
  position: absolute;
  background: rgba(57, 57, 57, 0.8);
  width: 101%;
  height: 101%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  color: var(--lj-white);
}
.cards .statusCard .image .status::after {
  content: attr(data-statustext);
  padding-left: 8px;
}
.status[data-statusicon="stolen"]::before {
  content: url(../svg/icon-stolen.svg);
}
.status[data-statusicon="blocked"]::before {
  content: url(../svg/icon-blocked.svg);
}
.status[data-statusicon="fraud"]::before {
  content: url(../svg/icon-card-fraud.svg);
}
.status[data-statusicon="lost"]::before {
  content: url(../svg/icon-lost-card.svg);
}
.status[data-statusicon="temporaryBlocked"]::before {
  content: url(../svg/icon-blocked-temporary.svg);
}
.status[data-statusicon="activateCard"]::before {
  content: url(../svg/icon-activate-card.svg);
}
.cards .faded .image .front::before,
.cards .faded .image .back::before,
.cards.card2card .faded .image::before {
  content: "";
  position: absolute;
  background: rgba(10, 10, 10, 0.6);
  width: 100%;
  height: 101%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-border-radius: 10px;
  border-radius: 10px;
  z-index: 1;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cards .faded .image .back::before {
  z-index: 9;
}

.cards .blockedCard .image .front::after,
.cards .blockedCard .image .back::after {
  content: url(../svg/icon-card-blocat.svg);
  position: absolute;
  background: rgba(57, 57, 57, 0.8);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  z-index: 98;
}

.hide-edit-icon::after {
  content: "" !important;
}

.cards .light .inputName input[type="submit"],
.cards .free .inputName input[type="submit"] {
  filter: invert(1);
}

.swal2-popup {
  background: var(--lj-button-secondary) !important;
}

.swal2-html-container {
  color: var(--lj-black);
  padding: 1.75rem 8px 16px 8px !important;
}

.swal2-container .popupCloseButton {
  filter: var(--lj-invert-icon);
}

.cards .inputName input::-webkit-input-placeholder {
  color: var(--lj-white);
}

.cards .card.light input::placeholder,
.cards .card.free input::placeholder {
  color: #333;
}

.cards .card.default input::placeholder {
  color: inherit;
}

td.popupOption {
  padding: 12px 0;
  width: 100%;
}

.buttonRevert {
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  color: var(--lj-font-primary-light);
}

/* REDESIGN END */

.cards .name {
  font-family: "Roboto Condensed", sans-serif !important;
  letter-spacing: 0.5px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.cards .name.alias {
  font-size: 11px;
  letter-spacing: initial;
  font-weight: 400;
  text-transform: none;
}

.card2card .card .name {
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif !important;
}

.left.info.alias,
.right.info.alias {
  text-align: center;
  width: 45%;
  line-height: 1rem;
  font-size: 12px;
  margin-top: -14px;
}

.cardLimits .rightColumn fieldset .currency {
  position: absolute;
  color: var(--lj-font-tertiary-light);
  right: 0;
  padding: 7px 0;
  top: 0;
  line-height: normal;
}

.item fieldset:has(.currency) > input {
  padding-right: 30px !important;
}

.menu.cardsTab .switch {
  background: var(--lj-cardbox-light);
}

#settingsMenu .menu .option:last-child,
.menu .option:last-child {
  border: none;
}

.toggleTheme {
  display: flex;
  position: relative;
  width: 32px;
  padding: 0;
}

.toggleTheme label {
  width: 28px;
  height: 28px;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  margin: 0;
  filter: var(--lj-icons-dark);
}

.toggleTheme label:after {
  opacity: 0;
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  left: 0;
}

.toggleTheme input[type="checkbox"]:not(:checked) + label:after {
  opacity: 1;
  background-image: url(../svg/icon-toggle-dark.svg);
  background-size: contain;
}

.toggleTheme input[type="checkbox"]:checked + label:after {
  opacity: 1;
  background-image: url(../svg/icon-toggle-light.svg);
  background-size: contain;
}

.menu .option.sterge a {
  color: var(--lj-font-secondary-light);
}

.devicesList .actions .dropdown a {
  color: var(--lj-cardbox-secondary);
}
.devicesList .actions .dropdown {
  background: var(--lj-button-primary);
  top: -4px;
  right: 4px;
}

.code.iban svg text {
  fill: var(--lj-white);
}

.card.free .code.iban svg text {
  fill: #333;
}

.cards .card.free.details .code,
.cards .card.free.details .exp,
.cards .card.free.details .cvv,
.cards .card.free.details .name {
  color: #333;
}

.cards .card .copyButton {
  width: 1.2rem;
  height: 1.5rem;
  background: url(../svg/icon-libra-copy.svg) center no-repeat;
  background-size: 18px;
  display: inline-block;
}

@media screen and (min-width: 360px) {
  .card2card .card .name {
    width: 70%;
    word-break: break-word;
  }

  .card .name {
    font-size: 14px;
  }

  .cards .inputName input {
    font-size: 13px;
  }
}

@media screen and (min-width: 412px) {
  .card2card .card .name {
    font-size: 8.8px;
  }
}

@media screen and (min-width: 490px) {
  .card2card .card .name {
    font-size: 12px;
  }

  .card .name {
    font-size: 18px;
  }
}

#transactionSearchInput {
  padding: 9px 15px;
}

.collapseButton {
  background: var(--lj-arrow-down) center no-repeat;
  width: 38px;
  height: 38px;
  display: block;
  border: none 0;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -19px;
}

.transactions.pageWrapper {
  padding-top: 0;
}

.transactionsFilter {
  display: flex;
  gap: 10px;
  padding: 0 1rem 0 1rem;
}

.transactionsFilter .floatingInput label {
  color: var(--lj-font-secondary-light);
}

.transactionsList #hasTransactions .title .search input[type="text"] {
  border: solid 1px var(--lj-bg-light);
  padding-right: 2.5rem;
}

.transactionsFilter .floatingInput.active input[type="text"],
.transactionsFilter.cashback input[type="text"],
.transactionsFilter select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='7' viewBox='0 0 8 7'%3E%3Cpath id='Polygon_3' data-name='Polygon 3' d='M4,0,8,7H0Z' transform='translate(8 7) rotate(180)' fill='%23ccc'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
  background-size: 0.65rem auto;
  filter: var(--lj-invert-icon);
  padding: 7px 0;
}

.transactionsFilter fieldset {
  font-size: 12px;
  width: 100%;
  margin-top: 10px;
}

.transactionsList .itemLink .item {
  padding: 0 0 0.75rem 0;
  overflow: hidden;
}

.transactionsList a.itemLink.transaction {
  display: block;
  margin: 0 1rem 0.75rem 1rem;
  border-bottom: 1px solid var(--lj-bg-light);
}

.transactionsList a.itemLink.transaction:last-of-type {
  border: none;
}

.toggleFilter {
  display: none;
  overflow: hidden;
}

.filters .onHold {
  background: url(../svg/icon-transaction-hold.svg);
  background-size: cover;
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: -9px;
  right: 50%;
  margin-right: -9px;
}

.transactionDetails .summary {
  display: block;
  color: var(--lj-bg-secondary);
  padding-bottom: 8px;
  font-size: 0.9rem;
}

.collapseButton.active,
.collapseTransactions.active {
  transform: rotate(180deg);
}

.transactionDetails {
  flex-direction: column;
  overflow: hidden;
}

.collapseTransactions {
  background: var(--lj-arrow-down) center no-repeat;
  width: 28px;
  height: 28px;
  display: block;
  border: none 0;
  background-size: cover;
}

.transactionsList .item .canceled {
  text-decoration: line-through;
  padding-left: 2px;
}

.transactionsList .item .outgoing {
  color: var(--lj-red);
}

.transactionsList .item .incoming {
  color: var(--lj-green);
}

.transactionsFilter.cashback fieldset {
  display: flex;
  gap: 50%;
  align-items: center;
  margin: 8px 0;
}
.transactionsFilter.cashback label {
  width: 50%;
  font-weight: var(--lj-font-regular);
  color: var(--lj-font-secondary-light);
}
.transactionsFilter.cashback {
  flex-direction: column;
  gap: 4px;
}

.invertIcon {
  max-width: 100%;
  height: auto;
  filter: var(--lj-invert-icon);
}

.verticalAlign {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.verticalAlign section {
  margin: auto 0;
}

.popup.poupBar {
  margin-top: 70px;
  border-radius: var(--lj-border-radius-lg);
}

.popup.poupBar .popupBox {
  margin-bottom: 80px;
  margin-top: 0;
}

.overlay.popupBar .close {
  background: url(../svg/icon-close.svg) #3b3b3b center no-repeat;
  top: 0;
  right: 12px;
  margin-right: 0;
  background-size: 28px;
  outline: none;
  width: 40px;
  height: 40px;
  margin-top: 10px;
  position: absolute;
  border-radius: 100%;
}

/* body:not(:has(header)) > nav.breadcrumb {
    padding-top: 0;
} */

.chooseCardCarousel .card .alias {
  font-size: 1.2rem;
  font-weight: var(--lj-font-medium);
}
.chooseCardCarousel .card .alias::after {
  content: "";
}

.orderCardStepsNew .box table tr {
  display: table-row;
}

.orderCardStepsNew .box table {
  margin-bottom: 0;
}

.orderCardSteps.terms .box {
  background: transparent;
  margin: 0;
}

.cards .chooseCardCarousel .slick-slide {
  margin: 0;
  opacity: 0;
}

.cards .chooseCardCarousel .slick-slide.slick-current {
  opacity: 1;
}

section.orderCardSteps.orderCardStepsNew .selectedCard:has(.bigCard),
section.orderCardSteps.orderCardStepsNew .box.floating {
  background: none;
}

.selectDropdown-trigger {
  position: relative;
  display: block;
  padding: 0 84px 0 22px;
  background: var(--lj-cardbox-light);
  border-radius: var(--lj-border-radius-lg);
  cursor: pointer;
  line-height: 2.5rem;
}
.selectDropdown-trigger:after {
  position: absolute;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  border-bottom: 1px solid var(--lj-border-bottom);
  border-right: 1px solid var(--lj-border-bottom);
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.4s ease-in-out;
  transform-origin: 50% 0;
}
.selectDropdown.opened .selectDropdown-trigger:after {
  margin-top: 3px;
  transform: rotate(-135deg) translateY(-50%);
}
.selectOptions {
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  border-radius: 0 0 0.8rem 0.8rem;
  box-sizing: border-box;
  background: var(--lj-cardbox-light);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px);
}
.selectDropdown.opened .selectOptions {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  display: block;
}

.selectDropdown.opened .selectDropdown-trigger {
  border-radius: 0.8rem 0.8rem 0 0;
}

.selectOption {
  position: relative;
  display: block;
  margin: 0 1rem;
  padding: 0 6px;
  border-top: 1px solid var(--lj-border-bottom-color);
  line-height: 2.5rem;
}

#splitbillForm .selectedCard .checkbox label,
.cardBox .checkbox label {
  background: var(--lj-bg-light);
  border: none;
}

hr {
  height: 1px;
  background-color: var(--lj-border-bottom);
  border: none;
  margin: 1rem 0;
}

.card .label:has(.icon) {
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  font-size: 1rem;
  z-index: 0;
}
.card .label .icon {
  -webkit-filter: drop-shadow(1px 2px 0 var(--lj-bg-light));
  filter: drop-shadow(1px 2px 0 var(--lj-bg-light));
}

/* Alege culoare card extern */

.colorSelector {
  display: flex;
  justify-content: space-between;
}
.colorSelector .colorwheel {
  background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
  position: relative;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}
.colorSelector .colorwheel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background: radial-gradient(
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 75%
  );
}

@media screen and (max-width: 320px) {
  .colorSelector .color {
    width: 24px;
    height: 24px;
  }
}

.colorwheelBox {
  text-align: center;
  margin-bottom: 20px;
}
.IroColorPicker {
  display: inline-block !important;
}

.colorSelector .swatch {
  position: relative;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: inline-block;
}
.colorSelector .swatch > [type="radio"] {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.colorSelector .swatch > [type="radio"] + label {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
}

.colorSelector .swatch.default > [type="radio"] + label {
  background-color: #839597;
}
.colorSelector .swatch.orange > [type="radio"] + label {
  background-color: #f27b20;
}
.colorSelector .swatch.red > [type="radio"] + label {
  background-color: #c71b1b;
}
.colorSelector .swatch.green > [type="radio"] + label {
  background-color: #106a28;
}
.colorSelector .swatch.black > [type="radio"] + label {
  background-color: #000000;
}
.colorSelector .swatch.blue > [type="radio"] + label {
  background-color: #0f3b67;
}
.colorSelector .swatch > [type="radio"]:checked + label:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../svg/icon-checkmark-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}

.colorSelector .swatch > [type="radio"] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}

/* Alege culoare card extern end */

.avanpostMap {
  position: absolute;
  height: 100%;
  max-height: -moz-available;
  max-height: -webkit-fill-available;
  max-height: fill-available;
  width: 100%;
  left: 0;
}

#map {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
}

.gm-style .gm-style-iw-d h2 {
  color: var(--lj-black);
}

/* PAGINA ADANCIME DETALII TRANZACTIE */

.transactionDetails .headUser {
  display: flex;
  align-items: flex-start;
  padding: 0 0 0 2.5rem;
  margin-bottom: 1rem;
}

.transactionDetails .avatar {
  min-width: 78px;
  min-height: 78px;
  background-color: #fff;
  color: #777;
  overflow: hidden;
}

.transactionDetails .info .ammount {
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 0;
}

.transactionDetails .info .time {
  margin: 6px 0;
}
.transactionDetails .info {
  flex-grow: 1;
}

.transactionDetails .transactionMap {
  display: flex;
  border: 0;
  overflow: hidden;
  height: 150px;
  border-radius: var(--lj-border-radius);
}

.transactionDetails .avatar img {
  height: 80%;
  width: 80%;
  object-fit: contain;
  border-radius: 0;
}

.list-group {
  background: var(--lj-cardbox-light);
}

.list-group .wrapper {
  padding: 0.8rem 1.25rem;
}

.list-group table.wrapper {
  padding: 0.6rem 1rem;
}

.list-group table.wrapper td {
  color: var(--lj-font-tertiary-light);
}

ul.list-group table tbody tr {
  height: 2.2rem;
}

/* END OF PAGINA ADANCIME DETALII TRANZACTIE */

/* PAGINA COD QR */

.createAccount #meLink.copyCode {
  color: #545454;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.separator40 {
  height: 40px;
  line-height: 0;
}
.qrCode .image #qrcode img {
  margin: 0 auto;
}
/* PAGINA COD QR end */

:root:not([data-theme="dark"]) .cards .card.free .image .container img,
:root:not([data-theme="dark"])
  .orderCardSteps.orderCardStepsNew
  .selectedCard
  .bigCard
  img,
:root:not([data-theme="dark"])
  .cards.card2card
  .slick-slide.card.free
  .image
  img {
  border: 1px solid var(--lj-border-cashback-color);
  border-radius: 10px;
  width: 99%;
  height: 99%;
}

:root:not([data-theme="light"]) .cards .card.free .image .container img,
:root:not([data-theme="light"])
  .orderCardSteps.orderCardStepsNew
  .selectedCard
  .bigCard
  img,
:root:not([data-theme="light"])
  .cards.card2card
  .slick-slide.card.free
  .image
  img {
  width: 101%;
}

#filterCategory .popup.poupBar .popupBox small.left,
#filterLocation .popup.poupBar .popupBox small.left {
  display: flex;
  gap: 8px;
  align-items: center;
}

#filterCategory .popup.poupBar .popupBox small.left img,
#filterLocation .popup.poupBar .popupBox small.left img {
  filter: var(--lj-invert-icon);
}

span.label .lucramLa {
  font-weight: var(--lj-font-regular);
  color: var(--lj-font-primary-light);
}

.userNotificationsListing .tabMenu.mesaje .menu::before {
  content: none;
}

.promoCards.slick-dotted.slick-slider {
  margin: 0;
}

/* Terms and conditions */

.terms .content .lower-alpha {
  list-style: lower-alpha;
}

.terms .content .lower-roman {
  list-style: lower-roman;
}

.terms .content .dash {
  list-style: none;
}

.terms .content .dash li:before {
  content: "-";
}

.terms .content {
  line-height: 1.4em;
  text-align: justify;
}

.terms .content .no-style {
  list-style: none;
}

.terms .content .title {
  padding-top: 0.4rem;
  font-size: 18px;
}
.terms .content ol {
  padding-inline-start: 20px;
  font-weight: bold;
}

.terms .content ol.lower-alpha {
  padding-inline-start: 2rem;
  font-weight: normal;
}
.terms .content ol.lower-alpha > li:not(:last-child) {
  margin-bottom: 0.4rem;
}

.terms fieldset label[for="privacy"],
.terms fieldset label[for="terms"] {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

/* Terms and conditions end */

/* Activare Card WLT-4427 */
.htmlOverlay .status {
  line-height: normal;
  text-align: start;
  gap: 8px;
  padding-left: 8px;
}

.htmlOverlay .status * {
  font-size: clamp(0.9rem, 5vw, 0.5rem);
  color: #fff;
}

.htmlOverlay .cardFlip {
  filter: brightness(0.4) contrast(0.5);
  pointer-events: none;
}

.htmlOverlay .actions .button {
  pointer-events: none;
}

.htmlOverlay .actions .removeHtmlOverlay {
  pointer-events: auto;
  background: unset;
}

.htmlOverlay .actions .button::before {
  content: "";
  position: absolute;
  background-image: url(../svg/icon-plus-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(57, 57, 57, 0.8);
  outline: 1px solid rgba(57, 57, 57, 0.8);
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background-size: 12px;
  width: 30px;
  height: 30px;
  transform: translate(-50%, 0%) rotate(45deg);
  filter: none !important;
}
/* Activare Card WLT-4427 end */

#toggle_notification_global_status {
  display: none;
}

.alignItems {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.userNotificationsListing {
  padding-bottom: 0;
  margin-bottom: -60px;
}

.fee-announcement {
  display: block;
  font-size: 12px;
}

/* Show/Hide PIN */
.showPin {
  position: absolute;
  top: 40%;
  right: 0;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  width: 2rem;
  background-image: url(../svg/icon-show-pin.svg);
  filter: var(--lj-invert-icon);
}

.showPin.visible {
  background-image: url(../svg/icon-hide-pin.svg);
}

.floatingInput:has(.showPin) input {
  padding-right: 40px;
}
/* Show/Hide PIN end */

/* Lazy Load Cards */
.orderCardSteps .selectedCard .card {
  width: 80px;
  aspect-ratio: 4 / 2.56;
  display: block;
}

.selectedCard .card .image {
  width: 100px;
  max-width: 100px;
  height: 70px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.2);
}

.cardContainer {
  aspect-ratio: 4 / 2.56;
  display: block;
  margin: auto;
  border-radius: var(--lj-border-radius);
  overflow: hidden;
}

.cardContainer img {
  width: inherit;
}

.cardLoader {
  border-radius: 0.7rem;
  aspect-ratio: 4 / 2.56;
  margin: 1.95rem 2.3rem 1.25rem 2.3rem;
  animation: loadingCard 3s infinite linear;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.2) 5%,
    rgb(56 56 56 / 20%) 25%,
    rgba(0, 0, 0, 0.2) 35%
  );
  background-size: 1000px 100%;
}

@keyframes loadingCard {
  from {
    background-position: -1000px 0;
  }

  to {
    background-position: 1000px 0;
  }
}

/* Lazy Load Cards end */

/* Plati cu banca magnetica: begin */
.cardBox .cardBox-secondary {
  background-color: var(--lj-cardbox-secondary);
}

.option .right .category-input-wrapper {
  display: inline-block;
}

.option .right .category-input-wrapper .categoryChip {
  font-weight: 400;
  margin: 0 0.5rem 0 0;
}

/* Remove popup delete access country*/
.swal2-container.removeAccessCountry .popupTitle {
  font-weight: var(--lj-font-regular);
  padding-top: 1em;
  margin-top: 1rem;
}

.swal2-container.removeAccessCountry .swal2-actions {
  border-top: 1px solid var(--lj-border-bottom);
  max-width: 95%;
  padding-top: 5px;
}

.swal2-container.removeAccessCountry .swal2-actions button {
  padding: 10px 0;
}

.swal2-container.removeAccessCountry .swal2-popup.swal2-modal {
  bottom: 60px;
  padding-bottom: 5px;
  width: 95%;
}

.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: none !important;
}

.swal2-container.removeAccessCountry .swal2-footer {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  padding: 0;
  border-radius: 5px;
  background: var(--lj-cardbox-light);
  margin-top: 0;
  border-radius: var(--lj-border-radius-lg);
}

.swal2-container.removeAccessCountry .swal2-footer .button {
  padding: 13px;
  background: transparent;
  font-weight: var(--lj-font-regular);
}
/* Plati cu banca magnetica: end */

.popupOption.disabled {
  color: grey;
}

/* Mastercard Priceless */
.addToPriceless {
    grid-column: span 3 / span 3;
}

.mastercard-priceless {
    width: 100%;
  display: flex;
    flex-grow: 1;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--lj-mastercard-priceless-gradient);
    justify-content: center;
    align-content: center;
  align-items: center;
    cursor: pointer;
}

.mastercard-priceless-logo {
    content: var(--lj-mastercard-priceless);
    width: 14rem;
}
/* Mastercard Priceless end */

/* Fix Card Buttons */
.card .wrapper-flags {
    display: flex;
    gap: 0.5rem;
    min-height: 0;
    max-height: 0;
    opacity: 0;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
    transform-origin: top;
}

.card.slick-active .wrapper-flags {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
}

.wrapper-flags .divider-flags {
    width: 1px;
    height: 2rem;
    background-color: var(--lj-font-secondary-light);
    display: inline-block;
    margin: 0 auto;
}

.card .wrapper-flags > * {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.79, 0.14, 0.15, 0.86);
}

.card.slick-active .wrapper-flags > * {
    opacity: 1;
    transform: translateY(0);
}


.card .wrapper-flags .walletButtons > div:not(.addToPriceless) {
    grid-row-start: 2;
}

.card .wrapper-flags .walletButtons {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
/* Fix Card Buttons end */

/* Click to pay: begin */
.click-to-pay-button {
      display: inline-flex;
      align-items: center;
    padding: 8px 10px;
      background-color: #000;
      border-radius: 8px;
      color: white;
      font-family: Arial, sans-serif;
      text-decoration: none;
      border: none;
      cursor: pointer;
    white-space: nowrap;
    gap: 0.25rem;
    }

    .click-to-pay-button img {
      height: 25px;
    }

    .click-to-pay-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
      text-align: left;
    }

    .click-to-pay-text .small-text {
      font-size: 11px;
      font-weight: normal;
    }

    .click-to-pay-text .large-text {
      font-size: 14px;
      font-weight: 500;
    }
  .addToClickToPay.addToClickToPayTransition {
    opacity: 0;
    height: 0;
    transition: all 0.5s ease-in-out;
  }

  .addToClickToPay .loader {
    content: url(../svg/icon-loader.svg);
    animation: round 1s linear infinite;
    width: 36px;
    height: 36px;
  }
/*  Click to pay: end */

.cardBox.cardBox-expandable .cardTitle:after {
    content: "";
    background: var(--lj-arrow-right) right 0 center no-repeat;
    list-style: none;
    width: 25px;
    height: 25px;
    display: flex;
    transform: rotate(90deg);
    float: right;
}

.cardBox.cardBox-expandable .cardTitle.extended:after {
    transform: rotate(-90deg);
}

.cardBox.cardBox-expandable .dropdown-menu {
    transition: all 0.3s ease-in-out;
}

.cardBox.cardBox-expandable .dropdown-menu[expanded-zone="false"] {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.cardBox.cardBox-expandable .dropdown-menu[expanded-zone="true"] {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.eligibleCreditCardTransactions {
    padding: 0 1rem 0 1rem;
}

.eligibleCreditCardTransactions .transactionDate {
    min-width: 34px;
    height: 34px;
    text-align: center;
    border-radius: 0.5rem;
    line-height: 12px;
    font-size: 10px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    font-weight: var(--lj-font-bold);
    background-color: var(--lj-bg-light);
    text-transform: uppercase;
}

.eligibleCreditCardTransactions .item .transactionSummary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 0 0 0;
}

.eligibleCreditCardTransactions .item {
    padding-bottom: 1rem;
}

.eligibleCreditCardTransactions .item:not(:last-child) {
    border-bottom: 1px solid var(--lj-border-bottom);
}

.eligibleCreditCardTransactions .item .expandable-menu:after {
    content: "";
    background: var(--lj-arrow-right) right 0 center no-repeat;
    list-style: none;
    min-width: 25px;
    min-height: 25px;
    display: flex;
    transform: rotate(90deg);
    float: right;
}

.eligibleCreditCardTransactions .item .expandable-menu.extended:after {
    transform: rotate(-90deg);
}

.eligibleCreditCardTransactions .item .info {
    float: none;
    flex-direction: column;
    line-height: 1.4;
    min-width: 0;
}

.eligibleCreditCardTransactions .item .amount {
    line-height: 20px;
    text-align: right;
    float: none;
    flex: auto;
    white-space: nowrap;
    color: var(--lj-red);
}

@media screen and (max-width: 360px) {
    .eligibleCreditCardTransactions .item .amount {
        line-height: 18px;
    }
}

.eligibleCreditCardTransactions .processCreditCardTransactionBtn {
    width: 33%;
    min-width: 144px;
}

.eligibleCreditCardTransactions .item .dropdown-menu .installments-wrapper{
    padding-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.eligibleCreditCardTransactions .item .dropdown-menu .installments-wrapper .installments-info{
    display: flex;
    align-items: center;
}

.eligibleCreditCardTransactions .item .dropdown-menu .installments-wrapper .installments-info .installments-no-label{
    width: 70px;
}

.eligibleCreditCardTransactions .item .dropdown-menu .installments-wrapper .installments-info .installments-no{
    width: 50px;
    border: 0;
}

.eligibleCreditCardTransactions .installments-no[data-readonly] {
    background: 0;
}

.eligibleCreditCardTransactions .monthly-installments-info {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.eligibleCreditCardTransactions .no-eligible-transactions {
    padding: 1rem 0 2rem 0;
}

.buttonSmall {
    font-size: 14px;
    padding: 0.5rem;
    width: 100%;
    white-space: nowrap;
}