@charset "UTF-8";
@keyframes fadeMoveRight {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-move-right {
  animation: fadeMoveRight 1s ease;
}

* {
  font-family: "Space Grotesk", sans-serif;
}

html,
body {
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: #101010;
}

.container-fluid {
  max-width: 1700px;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .navbarMenuMobile {
    display: flex !important;
    position: sticky;
    z-index: 1000;
    top: 0px;
    padding-top: 30px;
  }
  .navbarMenuMobile .navbar-inside {
    display: flex !important;
    position: fixed;
    z-index: 1000;
    height: 100vh;
    top: 0px;
    padding-top: 30px;
    right: 0;
  }
  .navbarMenuMobile .navbar-inside .mud-drawer {
    width: 200px;
  }
  .navbarMenuMobile .navbar-inside a .mud-nav-link-text {
    margin: 0px;
    width: 130px !important;
  }
  .navbarMenuMobile .navbar-inside .nav-group-container .mud-transform {
    fill: #2cb9ff !important;
  }
  .navbarMenuMobile .navbar-inside .nav-group-container svg {
    color: white !important;
    width: 20px;
    margin-right: 5px;
  }
  .navbarMenuMobile .navbar-toggler {
    right: 30px;
    top: 45px;
    position: absolute;
  }
  .navbarMenuMobile i {
    color: white;
    font-size: 20px;
  }
  .navbarMenuMobile aside {
    top: 0px;
    background-color: #101010;
  }
  .navbarMenuMobile a {
    text-decoration: none;
  }
  .navbarMenuMobile .special-background a {
    background: none !important;
    box-shadow: none !important;
  }
  .navbarMenuMobile .admin ul {
    width: 180px !important;
    margin-top: -45px !important;
  }
  .navbarMenuMobile .admin a {
    padding-left: 0px;
  }
  .navbarMenuMobile .user ul {
    width: 180px !important;
    margin-top: -45px !important;
  }
  .navbarMenuMobile .user a {
    padding-left: 0px;
  }
}
h1.mini {
  font-size: 2.2rem;
}
h1:focus {
  outline: none;
}
@media screen and (max-width: 450px) {
  h1.mini {
    font-size: 2rem;
  }
}

p.bigger {
  font-size: 1.5rem;
}
@media screen and (max-width: 700px) {
  p.bigger {
    font-size: calc(1rem + 0.3vw);
  }
}

.right-separator {
  border-right: 2px solid #9291a2;
}

hr {
  color: #adadad;
  border: 1px solid #adadad;
}
hr.light {
  color: rgba(255, 255, 255, 0.6392156863);
  border: 1px solid rgba(255, 255, 255, 0.6392156863);
  opacity: 1;
}

.content {
  padding-top: 1.1rem;
}

.text-lightgrey {
  color: #d9d9d9;
}

.text-bluelight {
  color: #77dfff !important;
}

.text-yellowlight {
  color: #fee992;
}

.text-red {
  color: #e14e39;
}

.maxw-50 {
  max-width: 50%;
}

.yellow-btn {
  background: linear-gradient(106.9deg, #fee992 0.09%, #faac55 100.09%);
  border-radius: 99px;
}

.p-4-5 {
  padding: 2rem !important;
}
@media screen and (max-width: 600px) {
  .p-4-5 {
    padding: 1.5rem !important;
  }
}
@media screen and (max-width: 450px) {
  .p-4-5 {
    padding: 1.5rem 1rem !important;
  }
}

.flex-center-center {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.list-group a.list-group-item {
  border-radius: 0;
}
.list-group a.list-group-item * {
  color: white !important;
}
.list-group a.list-group-item:not(.active) {
  background: #202020;
}

.hover-link {
  transition: transform 0.3s ease-in-out;
}
.hover-link:hover {
  transform: scale(1.05) translateY(-10px);
}

.modal.show .modal-dialog {
  transform: translateY(-50%);
  top: 50%;
}

.mud-scroll-to-top button {
  background: linear-gradient(106.9deg, rgba(254, 233, 146, 0.8) 20%, #faac55 100.09%) !important;
}

.explain-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #e9e9e9 !important;
}
.explain-text.text-red {
  color: #e14e39 !important;
}

@media screen and (max-width: 420px) {
  .col-xs-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .col-xs-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xs-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xs-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}
@media screen and (min-width: 1400px) {
  .container-xxl {
    max-width: 1300px;
  }
}
.flip-box {
  background-color: transparent;
  perspective: 1000px;
  height: 100%;
  width: 100%;
}

.flip-box-inner {
  position: relative;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-box.rotate .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  border-radius: 22px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-back {
  transform: rotateY(180deg);
}

.mud-popover {
  max-height: 250px;
  padding: 10px 0px;
  top: 65px !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  text-decoration: none;
  box-shadow: 0px 4px 49px rgba(0, 7, 72, 0.12);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  border-radius: 20px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
}
.mud-popover .mud-list-item {
  padding: 0px;
}
.mud-popover .container-text {
  padding: 0px 20px;
}
.mud-popover .container-text:hover {
  background: rgb(24, 24, 24);
}

.menu .accordeon-btn svg {
  position: absolute;
  right: -10px;
}
.menu .accordeon-btn button {
  background-color: transparent;
}
.menu .accordeon-btn button:hover {
  background-color: transparent;
}
.menu .accordeon-btn button span {
  display: flex;
}
.menu .accordeon-btn button span span {
  padding: 5px;
}
.menu .nav-link {
  position: relative;
}
.menu .nav-link svg {
  width: 19px;
  height: 19px;
  margin-left: 4px;
}
.menu .nav-link .dot-info {
  position: absolute;
  top: 1px;
  right: 5px;
  background: linear-gradient(106.9deg, #f79050 0.09%, #e14e39 100.09%);
  border-radius: 99px;
  height: 16px;
  min-width: 16px;
  padding: 0 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}
@media screen and (max-width: 1100px) {
  .menu .nav-link {
    font-size: 15px !important;
  }
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}
footer h3 {
  color: white;
  font-size: 16px;
  line-height: 1.2;
}
footer a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  display: block;
  width: 100%;
}
footer a.btn-blue {
  width: -moz-max-content;
  width: max-content;
}
footer a:hover {
  color: #2faaf1;
}
footer ul {
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 850px) and (min-width: 420px) {
  footer h3 {
    font-size: 15px;
  }
  footer a {
    font-size: 12px;
  }
}

.copyright {
  opacity: 0.7;
  font-size: 14px;
}
@media screen and (max-width: 450px) {
  .copyright {
    font-size: 12px;
  }
}

a,
.btn-link {
  color: #0071c1;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

#vault {
  background: transparent;
  border: 1px solid white;
  padding: 7px 24px;
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: transparent;
  border: 1px solid transparent;
  padding: 7px 24px;
}
#vault:hover {
  border-color: white !important;
}
#vault.active {
  border-color: white;
}

a[type=button],
button[type=button],
input[type=submit][type=button] {
  border-radius: 20px;
}
a.btn-blue, a.active,
button.btn-blue,
button.active,
input[type=submit].btn-blue,
input[type=submit].active {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: linear-gradient(106.9deg, #b0e3ff 0.09%, #2cb9ff 100.09%);
  color: #101010 !important;
  box-shadow: 0px 5px 16px rgba(42, 177, 244, 0.3);
}
a.btn-blue:hover, a.active:hover,
button.btn-blue:hover,
button.active:hover,
input[type=submit].btn-blue:hover,
input[type=submit].active:hover {
  box-shadow: 0px 5px 16px rgba(0, 0, 0, 0.3);
}
a.btn-blue-checked,
button.btn-blue-checked,
input[type=submit].btn-blue-checked {
  border-radius: 999px;
  line-height: 1.2;
  padding: 7px 22px;
  border: 3px solid #2cb9ff;
  text-decoration: none;
  transition: all ease 500ms;
  box-shadow: 0px 5px 16px rgba(42, 177, 244, 0.3);
}
a.btn-grey,
button.btn-grey,
input[type=submit].btn-grey {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: #6a6a6a;
}
a.btn-white,
button.btn-white,
input[type=submit].btn-white {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: white;
  color: black !important;
}
a.btn-white:hover,
button.btn-white:hover,
input[type=submit].btn-white:hover {
  background: white;
  box-shadow: 0px 5px 16px rgba(103, 190, 104, 0.2);
}
a.btn-orange,
button.btn-orange,
input[type=submit].btn-orange {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: linear-gradient(to right, #F8D33B, #F68C20);
  color: black !important;
}
a.btn-orange:hover,
button.btn-orange:hover,
input[type=submit].btn-orange:hover {
  background: linear-gradient(to right, #f3d458, #ec9844);
  box-shadow: 0px 5px 16px rgba(103, 190, 104, 0.2);
}
a.btn-transparent,
button.btn-transparent,
input[type=submit].btn-transparent {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: transparent;
  border: 1px solid white;
  padding: 7px 24px;
}
a.btn-transparent:hover,
button.btn-transparent:hover,
input[type=submit].btn-transparent:hover {
  color: black !important;
  background-color: white !important;
  border-color: white !important;
}
a.btn-transparent-transparent,
button.btn-transparent-transparent,
input[type=submit].btn-transparent-transparent {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: transparent;
  border: 1px solid transparent;
  padding: 7px 24px;
}
a.btn-transparent-transparent:hover,
button.btn-transparent-transparent:hover,
input[type=submit].btn-transparent-transparent:hover {
  border-color: white !important;
}
a.btn-transparent-transparent.active,
button.btn-transparent-transparent.active,
input[type=submit].btn-transparent-transparent.active {
  border-color: white;
}
a.btn-warning,
button.btn-warning,
input[type=submit].btn-warning {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: linear-gradient(106.9deg, #f8d33b 0%, #f68c20 100%);
}
a.btn-glass, a.no-active,
button.btn-glass,
button.no-active,
input[type=submit].btn-glass,
input[type=submit].no-active {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: linear-gradient(106.9deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  border: 1px solid white;
  padding: 7px 24px;
}
a.btn-glass:hover, a.no-active:hover,
button.btn-glass:hover,
button.no-active:hover,
input[type=submit].btn-glass:hover,
input[type=submit].no-active:hover {
  background: #202020;
  border: 1px solid white !important;
}
a.btn img, a.btn svg,
button.btn img,
button.btn svg,
input[type=submit].btn img,
input[type=submit].btn svg {
  margin-left: 8px;
}
a.btn-yellow,
button.btn-yellow,
input[type=submit].btn-yellow {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  padding: 10px 24px;
  color: black !important;
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(106.9deg, #fee992 0.09%, #faac55 100.09%);
}
@media screen and (max-width: 600px) {
  a.btn-yellow,
button.btn-yellow,
input[type=submit].btn-yellow {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  a.btn-yellow,
button.btn-yellow,
input[type=submit].btn-yellow {
    font-size: 16px;
  }
}
a.btn-black,
button.btn-black,
input[type=submit].btn-black {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: linear-gradient(106.9deg, rgba(27, 27, 27, 0.9) 0%, #000000 100%);
}
a.btn-green,
button.btn-green,
input[type=submit].btn-green {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: linear-gradient(106.9deg, #6bbf67 0.09%, #35ad6e 100.09%);
}
a.btn-green:hover,
button.btn-green:hover,
input[type=submit].btn-green:hover {
  box-shadow: 0px 5px 17px -5px #35ad6e;
}
a.bigger,
button.bigger,
input[type=submit].bigger {
  padding: 12px 32px;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 991px) {
  a.bigger,
button.bigger,
input[type=submit].bigger {
    padding: 10px 28px;
    font-size: 19px;
  }
}
@media screen and (max-width: 767px) {
  a.bigger,
button.bigger,
input[type=submit].bigger {
    padding: 8px 24px;
    font-size: 18px;
  }
}
a.smallest,
button.smallest,
input[type=submit].smallest {
  padding: 8px 12px;
  font-size: 14px;
}
@media screen and (max-width: 450px) {
  a.smallest,
button.smallest,
input[type=submit].smallest {
    padding: 6px 8px;
    font-size: 12px;
  }
}
a.light-radius,
button.light-radius,
input[type=submit].light-radius {
  border-radius: 12px;
}
a.btn-disabled,
button.btn-disabled,
input[type=submit].btn-disabled {
  color: white !important;
  border-radius: 999px;
  line-height: 1.2;
  padding: 8px 24px;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: #6a6a6a;
  cursor: default;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  border-radius: 999px;
  border: 0;
  position: absolute;
  right: 0;
  z-index: 2;
  height: 100%;
}

.multiple-buttons {
  display: flex;
  height: 40px;
}
.multiple-buttons button {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.multiple-buttons button.no-radius-right {
  border-radius: 999px 0 0 999px;
}
.multiple-buttons button.no-radius-left {
  border-radius: 0 999px 999px 0;
}
.multiple-buttons button img,
.multiple-buttons button svg {
  margin-left: 8px;
}
.multiple-buttons button svg path {
  fill: white;
}
.multiple-buttons button.active svg path {
  fill: #101010;
}

select option {
  color: black;
}

.select-wrapper {
  background: transparent;
  border-radius: 20px;
}
.select-wrapper:hover {
  background: #202020;
}
.select-wrapper.active {
  border-radius: 20px 20px 0 0;
}
.select-wrapper select:hover option:hover {
  background: linear-gradient(to bottom, #77b0d0, #2da3de);
  color: #fff;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.select + .styledSelect {
  display: none;
}

.styledSelect {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  border-radius: 20px;
  color: white;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 0.375rem 0.75rem;
  padding-right: 40px;
  font-size: 1rem;
  display: none;
}
@media screen and (max-width: 1400px) {
  .styledSelect {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1200px) {
  .styledSelect {
    font-size: 0.8rem;
  }
}
.styledSelect:first-of-type {
  display: block;
}
.styledSelect:active, .styledSelect.active {
  border-radius: 20px 20px 0 0;
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-top: 0;
  background: #202020;
  border-radius: 0 0 20px 20px;
  max-height: 200px;
  overflow-y: auto;
}
.options li {
  padding: 0 6px;
  margin: 0 0;
  padding: 4px 12px;
  color: white;
}
.options li:hover {
  background: #000;
  color: white;
}
.options li:last-child {
  border-radius: 0 0 20px 20px;
}

.dropdown button {
  min-width: 160px;
}

.dropdown-toggle.show {
  left: -75px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .dropdown-toggle.show {
    left: 0px;
  }
}
.dropdown-toggle.account {
  position: relative;
}
.dropdown-toggle.account img {
  height: 30px;
}
.dropdown-toggle:after {
  content: inherit;
}

[dir="ltr"] .dropdown-menu{
  text-align: right;
}

[dir="rtl"] .dropdown-menu{
  text-align: left;
}

[dir="ltr"] .dropdown-menu{
  text-align: right;
}

[dir="rtl"] .dropdown-menu{
  text-align: left;
}

.dropdown-menu {
  padding: 0;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  position: absolute;
  margin-top: -34px !important;
  z-index: 1;
  padding-top: 36px;
  padding-bottom: 4px;
  width: 100%;
  right: -10px !important;
}
.dropdown-menu .scroll-bar {
  height: 500px;
  overflow-y: scroll;
}
.dropdown-menu li {
  padding: 0px;
  transition: all ease 500ms;
}
.dropdown-menu li a,
.dropdown-menu li button {
  white-space: break-spaces;
  color: black !important;
  background: transparent !important;
  box-shadow: inherit !important;
  padding: 0.25rem 0.8rem;
}
.dropdown-menu li a:hover,
.dropdown-menu li button:hover {
  color: #2faaf1 !important;
}

input {
  padding: 0.375rem 0.75rem;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: inner-spin-button !important;
  width: 25px;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: transparent;
}

.input-group.email input {
  padding-left: 50px !important;
  position: relative;
}
.input-group.email:before {
  content: url("../images/icons/mail.svg");
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
  height: 20px;
  width: 20px;
  transform: translateY(-50%);
  z-index: 7;
}
.input-group.password input {
  padding-left: 50px !important;
  position: relative;
}
.input-group.password:before {
  content: url("../images/icons/password.svg");
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
  height: 20px;
  width: 20px;
  transform: translateY(-50%);
  z-index: 7;
}
.input-group.user input {
  padding-left: 50px !important;
  position: relative;
}
.input-group.user:before {
  content: url("../images/icons/user.svg");
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
  height: 20px;
  width: 20px;
  transform: translateY(-50%);
  z-index: 7;
}

input:-webkit-autofill,
input:-webkit-autofill:hover {
  -webkit-box-shadow: 0 0 0 1000px #101010 inset !important;
  -webkit-text-fill-color: rgb(255, 255, 255) !important;
}

input,
.input-group .form-control,
.input-group .form-floating,
.input-group .form-select {
  background: linear-gradient(106.9deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  border-radius: 20px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
}
input.dark-input,
.input-group .form-control.dark-input,
.input-group .form-floating.dark-input,
.input-group .form-select.dark-input {
  background: #101010;
  border-radius: 4px;
  color: white;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  input.dark-input,
.input-group .form-control.dark-input,
.input-group .form-floating.dark-input,
.input-group .form-select.dark-input {
    font-size: 15px;
  }
}
input.dark-input::-moz-placeholder, .input-group .form-control.dark-input::-moz-placeholder, .input-group .form-floating.dark-input::-moz-placeholder, .input-group .form-select.dark-input::-moz-placeholder {
  color: #d9d9d9;
}
input.dark-input::placeholder,
.input-group .form-control.dark-input::placeholder,
.input-group .form-floating.dark-input::placeholder,
.input-group .form-select.dark-input::placeholder {
  color: #d9d9d9;
}

.select-wrapper {
  position: relative;
}
.select-wrapper:after {
  content: url("../images/icons/down.svg");
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  height: 16px;
  width: 16px;
  transform: translateY(-50%);
  transition: all ease 200ms;
}
.select-wrapper.active:after {
  transform: translateY(-50%) rotate(-180deg);
}
.select-wrapper select:disabled {
  opacity: 0.3;
  background-color: transparent;
  cursor: default;
}
.select-wrapper.disabled:after {
  content: none;
}
.select-wrapper.disabled:hover {
  cursor: default;
  background: none;
}

select.form-control {
  cursor: pointer;
  background: linear-gradient(106.9deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  border-radius: 20px;
  color: white;
  border: 0;
  position: relative;
  padding-right: 35px !important;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
select.form-control.important {
  border: 1px solid #fee992 !important;
}
select.form-control * {
  color: white;
}
select.form-control:focus {
  background: black;
  color: white;
}
select.form-control#dateStart[value=undefined], select.form-control#dateEnd[value=undefined] {
  color: #d9d9d9;
}

.input-container {
  background: linear-gradient(106.9deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
}
.input-container input {
  background: transparent;
  border: 0;
}

input[type=range] {
  -webkit-appearance: none;
  margin-right: 15px;
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  background-image: linear-gradient(106.9deg, #b0e3ff 0.09%, #2cb9ff 100.09%);
  background-size: 66% 100%;
  background-repeat: no-repeat;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background-color: white;
  border: 3px solid #77dfff;
  cursor: ew-resize;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  z-index: 9;
  position: relative;
}
input[type=range]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
input[type=range] + div {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 2px);
  margin-left: -5px;
}
input[type=range] + div > span {
  position: relative;
  margin-left: 2px;
  font-size: 12px;
}
input[type=range] + div > span:after {
  content: "";
  position: absolute;
  top: -11px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #77dfff;
  left: 50%;
  transform: translateX(-50%);
}
input[type=range] + div > span:first-child:after {
  left: 90%;
}
input[type=range] + div > span:last-child:after {
  left: 25%;
}

@media screen and (max-width: 480px) {
  .search.desktop {
    display: none !important;
  }
  .search.mobile {
    display: flex !important;
  }
}

.search-container {
  position: relative;
  max-width: 100%;
}
.search-container input {
  padding-right: 100px !important;
  border-radius: 999px !important;
  min-width: 250px;
}

#account,
#registerForm,
#profile-form,
#email-form,
#change-password-form {
  width: 100%;
}
#account input.form-control.dark-input,
#registerForm input.form-control.dark-input,
#profile-form input.form-control.dark-input,
#email-form input.form-control.dark-input,
#change-password-form input.form-control.dark-input {
  max-width: 456px;
  width: 100%;
  border-radius: 4px !important;
}
#account input.form-control.dark-input + .input-group-append,
#registerForm input.form-control.dark-input + .input-group-append,
#profile-form input.form-control.dark-input + .input-group-append,
#email-form input.form-control.dark-input + .input-group-append,
#change-password-form input.form-control.dark-input + .input-group-append {
  position: absolute;
  height: 50px;
  width: 36px;
  right: 0;
}
#account input.form-control.dark-input + .input-group-append span,
#registerForm input.form-control.dark-input + .input-group-append span,
#profile-form input.form-control.dark-input + .input-group-append span,
#email-form input.form-control.dark-input + .input-group-append span,
#change-password-form input.form-control.dark-input + .input-group-append span {
  background: transparent;
  border: 0;
}
#account input.form-control.dark-input:disabled,
#registerForm input.form-control.dark-input:disabled,
#profile-form input.form-control.dark-input:disabled,
#email-form input.form-control.dark-input:disabled,
#change-password-form input.form-control.dark-input:disabled {
  color: grey;
}

.form-check-input[type=checkbox] {
  border-radius: 2px;
  border: 2px solid #d9d9d9;
  padding: 6px;
  background: transparent;
  margin-right: 8px;
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .form-check-input[type=checkbox] {
    height: 14px;
    width: 14px;
    padding: 4px;
  }
}

.checkbox label {
  color: #d9d9d9;
  font-size: 16px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .checkbox label {
    font-size: 15px;
  }
}

form.filters {
  width: 100%;
  position: relative;
  z-index: 2;
}
form.filters .filter {
  flex: 1 0 0;
  min-width: 120px;
}
form.filters .special-filter {
  cursor: pointer;
  background: linear-gradient(106.9deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  border-radius: 20px;
  color: white;
  border: 0;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  min-width: 200px;
  max-width: 320px;
}
form.filters .special-filter p {
  width: 30px;
}
form.filters .special-filter .mud-input-underline {
  margin-top: 0px !important;
  background: #101010;
}
form.filters .special-filter .mud-input-underline .mud-input-root-text {
  text-align: center;
}
form.filters .special-filter .mud-input-underline::after,
form.filters .special-filter .mud-input-underline ::before {
  border-bottom: none;
  transition: none;
}
form.filters .special-filter .input-min-max {
  text-align: center;
  background: #101010;
}
form.filters .special-filter .input-min-max::after,
form.filters .special-filter .input-min-max ::before {
  border-bottom: none;
  transition: none;
}
form.filters .special-filter .input-min-max input {
  width: 100%;
  padding: 0 !important;
}
form.filters .show {
  display: flex;
}
@media screen and (max-width: 1400px) {
  form.filters select,
form.filters input,
form.filters button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1200px) {
  form.filters select,
form.filters input,
form.filters button {
    font-size: 0.8rem;
  }
}
@media (min-width: 992px) {
  form.filters .col-lg-3 {
    flex: 0 0 auto;
    width: 23%;
  }
}
@media (min-width: 768px) {
  form.filters .col-md-4 {
    flex: 0 0 auto;
    width: 31.33333%;
  }
}
@media screen and (max-width: 767px) {
  form.filters .col-6 {
    width: calc(50% - 8px);
  }
  form.filters .col-6.pe-0 {
    border: 0;
  }
}
@media screen and (min-width: 1200px) {
  form.filters .col-xl-2 {
    flex: 0 0 auto;
    width: 15.666667%;
  }
}

.input-zone {
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: linear-gradient(106.9deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  border-radius: 20px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: 0 18px;
}
.input-zone div.arrow-separator {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 4px;
}
.input-zone label {
  margin-right: 18px;
  font-size: 1rem;
}
@media screen and (max-width: 1400px) {
  .input-zone label {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 1200px) {
  .input-zone label {
    font-size: 0.8rem;
  }
}
.input-zone .select-wrapper,
.input-zone .input {
  background: #202020;
  border-radius: 0;
  width: 40%;
}
.input-zone input,
.input-zone select,
.input-zone .styledSelect {
  background: transparent;
  border: 0;
  border-radius: 0;
}
.input-zone input[type=number],
.input-zone select[type=number],
.input-zone .styledSelect[type=number] {
  max-width: 110px;
}
@media screen and (max-width: 1000px) {
  .input-zone input[type=number],
.input-zone select[type=number],
.input-zone .styledSelect[type=number] {
    max-width: 90px;
  }
}
.input-zone .styledSelect.active {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 0;
  border-top: 0;
}

.table {
  background: linear-gradient(106.9deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
}
.table > :not(caption) > * > *:not(style), .table.table-hover > tbody > tr:hover > * {
  color: white;
}

.card-table {
  width: 100%;
  overflow-x: auto;
  align-items: start !important;
}
.card-table table {
  min-width: 1000px;
}
.card-table table td,
.card-table table th {
  color: white !important;
}
.card-table table + div {
  min-width: 985px;
}
.card-table select.form-control {
  border: 0 !important;
  border-radius: 0.375rem;
  margin-right: 12px;
}
.card-table small {
  line-height: 1.1;
}
.card-table .select-wrapper {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.card-table .select-wrapper:hover {
  background: transparent;
}
.card-table .select-wrapper label {
  color: white;
  margin-right: 12px;
}
.card-table .pagination {
  color: white;
}
.card-table .pagination li {
  margin: 0 8px;
}
.card-table .pagination li button {
  border: 0 !important;
  background: linear-gradient(106.9deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%) !important;
  color: white;
}
.card-table .pagination li.disabled button {
  color: lightgrey;
}
@media screen and (max-width: 768px) {
  .card-table {
    width: auto;
    overflow-y: auto;
  }
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.blazor-error-boundary {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
  padding: 1rem 1rem 1rem 3.7rem;
  color: white;
}
.blazor-error-boundary:after {
  content: "An error has occurred.";
}

.alert {
  max-width: 520px;
  margin: 10px auto;
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: black !important;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(16, 16, 16, 0.8);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
}
header .mud-badge {
  padding: 4px !important;
  width: auto !important;
}
header .user ul,
header .admin ul {
  width: 200px !important;
}
header .user a,
header .admin a {
  padding-left: 0px;
  text-decoration: none;
}
header #logo-beta {
  width: 180px;
}
header .navbar-collapse span {
  padding: 7px 24px;
  width: 100%;
  display: block;
}
@media screen and (min-width: 992px) and (max-width: 1050px) {
  header .navbar-collapse span {
    padding: 7px 15px;
  }
}
@media screen and (max-width: 991px) {
  header .navbar .navbar-toggler {
    position: relative;
    z-index: 9999;
    border: 0;
    outline: none;
  }
  header .navbar .navbar-toggler i {
    color: white;
  }
  header .navbar .navbar-toggler[aria-expanded=true] {
    position: fixed;
    right: 40px;
  }
  header .navbar .navbar-collapse {
    position: fixed;
    background: black;
    right: 0px;
    top: 0px;
    height: 100vh;
    width: 250px;
    padding-top: 100px;
    z-index: 222;
  }
  header .navbar .navbar-collapse:after {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 100%;
    top: 0;
    height: 100%;
    width: calc(100vw - 100%);
  }
  header .navbar .navbar-collapse > ul {
    height: auto;
    width: 250px;
    flex-direction: column;
    display: flex;
    justify-content: start !important;
    padding: 0 10px 20px;
  }
  header .navbar .navbar-collapse > ul li {
    width: 100%;
  }
  header .navbar .navbar-collapse > ul li a {
    width: 100%;
    padding-left: 0px !important;
  }
  header .navbar .navbar-collapse span {
    padding: 7px 24px;
    width: 100%;
    display: block;
  }
  header .navbar .navbar-collapse .dropdown {
    width: calc(100% - 26px);
    margin-bottom: 20px;
  }
  header .navbar .navbar-collapse .dropdown > a {
    width: 100%;
    text-align: center;
  }
  header .navbar .navbar-collapse .dropdown p {
    margin-bottom: 0px;
  }
  header .navbar .navbar-collapse .login-div {
    flex-direction: column;
  }
  header .navbar .navbar-collapse .login-div a {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}
header + div {
  margin-top: 100px;
}

#ip-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  min-height: 480px;
  width: 100%;
  height: 100%;
  background: #333;
  display: block;
}
#ip-header h1 {
  margin: 0;
}
#ip-header .ip-inner {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
#ip-header .ip-inner img {
  min-width: 320px;
  max-width: 480px;
  width: 25%;
}
#ip-header .ip-inner-sub {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
#ip-header .ip-inner-sub img {
  width: 150px;
  bottom: 120px;
}

.ip-logo,
.ip-loader {
  position: absolute;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: default;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.ip-logo {
  bottom: 100px;
  height: 100%;
  width: 100%;
  transform: translate3d(0, 25%, 0);
}

.ip-loader {
  bottom: 20%;
}
.ip-loader svg path {
  fill: none;
  stroke-width: 6;
}
.ip-loader svg path.ip-loader-circlebg {
  stroke: #ddd;
}
.ip-loader svg path.ip-loader-circle {
  transition: stroke-dashoffset 0.2s;
  stroke: #FEE992;
}

/* Animations */
/* Initial animation of header elements */
.loading .ip-logo {
  opacity: 1;
  animation: animInitialHeader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
}
.loading .ip-loader {
  opacity: 1;
  animation: animInitialHeader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  animation-delay: 0.2s;
  -webkit-animation: animInitialHeader 1s cubic-bezier(0.7, 0, 0.3, 1) both;
  -webkit-animation-delay: 0.2s;
}
@keyframes animInitialHeader {
  from {
    opacity: 0;
    transform: translate3d(0, 800px, 0);
  }
}
/* Header elements when loading finishes */
.loaded .ip-logo {
  opacity: 1;
  transform-origin: 50% 0%;
  animation: animLoadedLogo 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.loaded .ip-logo svg path {
  transition: all 0.5s ease 0.3s;
  fill: #fff;
}
.loaded .ip-loader {
  opacity: 1;
  animation: animLoadedLoader 0.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}
.loaded #ip-header {
  animation: animLoadedHeader 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes animLoadedLogo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.35;
  }
  100% {
    transform: translate3d(0%, 100%, 0) translate3d(0, 200px, 0) scale3d(0.65, 0.65, 1);
    opacity: 0;
  }
}
@keyframes animLoadedLoader {
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
  }
}
/* Change the color of the logo */
/* Header animation when loading finishes */
@keyframes animLoadedHeader {
  to {
    transform: translate3d(0, -100%, 0);
  }
}
/* Change layout class for header */
.layout-switch #ip-header {
  position: absolute;
}

/* No JS */
.no-js #ip-header {
  position: relative;
  min-height: 0px;
}
.no-js #ip-header .ip-logo {
  margin-top: 20px;
  height: 180px;
  opacity: 1;
  transform: none;
}
.no-js #ip-header .ip-logo svg path {
  fill: #fff;
}

/* Media queries */
@media screen and (max-width: 45em) {
  .ip-main h2 {
    font-size: 2.25em;
    font-size: 10vw;
  }
  .box {
    width: 100%;
  }
}
.showCard {
  color: #fff;
  background: #101010;
  background-clip: padding-box;
  border-radius: 20px;
  position: relative;
}
.showCard .card-custom {
  background: rgb(40, 40, 40) !important;
}
.showCard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1.5px;
  border-radius: inherit;
}
.showCard .graded {
  border-radius: 5px;
  align-items: center;
}
.showCard .graded[data-article="MTG Grade"] {
  background: linear-gradient(45deg, #5B5B5D, #A5A5A6);
}
.showCard .graded[data-article=CGS] {
  background: linear-gradient(45deg, #242427, #3F3F43);
}
.showCard .graded[data-article=Collectaura] {
  background: linear-gradient(45deg, #184B81, #3076c1);
}
.showCard .graded[data-article="C.H.E.N"] {
  background: linear-gradient(45deg, #502525, #844242);
}
.showCard .graded[data-article="Pure Grading"] {
  background: linear-gradient(45deg, #dfdfdf, #FFFFFF);
}
.showCard .message-container {
  display: flex;
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: 3;
  justify-content: center;
  align-items: center;
  height: 1px;
}
.showCard .message-container p.card-message {
  font-size: 12px;
  font-weight: 300;
  width: 100%;
  padding: 8px;
  text-align: center;
}
.showCard.EnVente p.card-message {
  background: linear-gradient(106.9deg, rgba(247, 144, 80, 0.7) 0.09%, rgba(225, 78, 57, 0.7) 100.09%) !important;
}
.showCard.EnVente::before {
  background: linear-gradient(140deg, rgba(247, 144, 80, 0.7), rgba(225, 78, 57, 0.7));
}
.showCard.EnVente .card-custom {
  border: none !important;
}
.showCard.Eligible p.card-message {
  background: linear-gradient(106.9deg, rgba(63, 229, 209, 0.85) 0.09%, rgba(63, 229, 110, 0.85) 100.09%) !important;
}
.showCard.Eligible::before {
  background: linear-gradient(140deg, rgba(63, 229, 209, 0.85), rgba(63, 229, 110, 0.85));
}
.showCard.Eligible .card-custom {
  border: none !important;
}
.showCard.Enattented-expédition p.card-message {
  background: linear-gradient(106.9deg, rgba(204, 113, 56, 0.7) 0.09%, rgba(231, 57, 30, 0.7) 100.09%) !important;
}
.showCard.Enattented-expédition::before {
  background: linear-gradient(140deg, rgba(204, 113, 56, 0.7), rgba(231, 57, 30, 0.7));
}
.showCard.Enattented-expédition .card-custom {
  border: none !important;
}
.showCard.Enattentedepriseencharge p.card-message {
  background: linear-gradient(106.9deg, rgba(229, 205, 101, 0.85) 0.09%, rgba(229, 151, 63, 0.85) 100.09%) !important;
}
.showCard.Enattentedepriseencharge::before {
  background: linear-gradient(140deg, rgba(229, 205, 101, 0.85), rgba(229, 151, 63, 0.85));
}
.showCard.Enattentedepriseencharge .card-custom {
  border: none !important;
}
.showCard.Expertiseencours p.card-message {
  background: linear-gradient(106.9deg, rgba(88, 181, 234, 0.85) 0.09%, rgba(57, 17, 173, 0.85) 100.09%) !important;
}
.showCard.Expertiseencours::before {
  background: linear-gradient(140deg, rgba(88, 181, 234, 0.85), rgba(57, 17, 173, 0.85));
}
.showCard.Expertiseencours .card-custom {
  border: none !important;
}
.showCard.Reçupourauthentification p.card-message {
  background: linear-gradient(106.9deg, rgba(177, 236, 255, 0.85) 0.09%, rgba(36, 123, 254, 0.85) 100.09%) !important;
}
.showCard.Reçupourauthentification::before {
  background: linear-gradient(140deg, rgba(177, 236, 255, 0.85), rgba(36, 123, 254, 0.85));
}
.showCard.Reçupourauthentification .card-custom {
  border: none !important;
}
.showCard.Refusée p.card-message {
  background: linear-gradient(106.9deg, rgba(206, 19, 19, 0.85) 0.09%, rgba(77, 197, 248, 0.85) 100.09%) !important;
}
.showCard.Refusée::before {
  background: linear-gradient(140deg, rgba(206, 19, 19, 0.85), rgba(77, 197, 248, 0.85));
}
.showCard.Refusée .card-custom {
  border: none !important;
}
.showCard.Conditionnement p.card-message {
  background: linear-gradient(106.9deg, rgba(252, 202, 4, 0.7) 0.09%, rgba(255, 128, 0, 0.7) 100.09%) !important;
}
.showCard.Conditionnement::before {
  background: linear-gradient(140deg, rgba(252, 202, 4, 0.7), rgba(255, 128, 0, 0.7));
}
.showCard.Conditionnement .card-custom {
  border: none !important;
}
.showCard.Gradationencours p.card-message {
  background: linear-gradient(106.9deg, rgba(191, 40, 46, 0.85) 0.09%, rgba(166, 49, 140, 0.85) 100.09%) !important;
}
.showCard.Gradationencours::before {
  background: linear-gradient(140deg, rgba(191, 40, 46, 0.85), rgba(166, 49, 140, 0.85));
}
.showCard.Gradationencours .card-custom {
  border: none !important;
}
.showCard.Enattentedegradation p.card-message {
  background: linear-gradient(106.9deg, rgba(80, 247, 144, 0.7) 0.09%, rgba(57, 225, 96, 0.7) 100.09%) !important;
}
.showCard.Enattentedegradation::before {
  background: linear-gradient(140deg, rgba(80, 247, 144, 0.7), rgba(57, 225, 96, 0.7));
}
.showCard.Enattentedegradation .card-custom {
  border: none !important;
}
.showCard.Expédiée p.card-message {
  background: linear-gradient(106.9deg, rgba(238, 98, 43, 0.85) 0.09%, rgba(199, 15, 23, 0.85) 100.09%) !important;
}
.showCard.Expédiée::before {
  background: linear-gradient(140deg, rgba(238, 98, 43, 0.85), rgba(199, 15, 23, 0.85));
}
.showCard.Expédiée .card-custom {
  border: none !important;
}
.showCard.Enattentederéception p.card-message {
  background: rgba(0, 0, 0, 0.7) !important;
}

.card-custom {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  text-decoration: none;
  box-shadow: 0px 4px 49px rgba(0, 7, 72, 0.12);
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
  border-radius: 20px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.card-custom.grey-background {
  background-color: #101010 !important;
}
.card-custom .line {
  display: inline-block;
  width: 100%;
  height: 1px;
  margin-top: -2px;
  margin-bottom: 2px;
  background-color: #d9d9d9;
}
.card-custom .grid-item .graded {
  background: linear-gradient(90deg, #7e7e7e, #d9d9d9);
  border-radius: 7px;
}
.card-custom .grid-item .card-name-container {
  min-width: 70px;
}
@media screen and (min-width: 375px) and (max-width: 500px) {
  .card-custom .grid-item .card-name-container {
    width: 60%;
  }
}
.card-custom .grid-item h5 {
  font-size: 16px;
  width: calc(100% - 5px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 1050px) {
  .card-custom .grid-item h5 {
    font-size: 20px;
  }
}
.card-custom.card-product {
  max-width: 360px;
  height: 100%;
  margin: auto;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: box-shadow ease 500ms;
}
.card-custom.card-product .icon-graded {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 3px;
  right: 10px;
}
.card-custom.card-product .static-note {
  border-radius: 999px;
  padding: 5px;
  display: flex;
  justify-content: center;
}
.card-custom.card-product .static-note.gold {
  background: linear-gradient(to left, #faac55, #fee992);
}
.card-custom.card-product .static-note.grey {
  background: #d9d9d9;
}
.card-custom.card-product .static-note .note {
  color: black;
  font-weight: 500;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (min-width: 400px) and (max-width: 500px) {
  .card-custom.card-product .static-note .note {
    width: 35px;
  }
}
.card-custom.card-product .icon img {
  width: 30px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card-custom.card-product .top-content-card {
  position: relative;
}
.card-custom.card-product .top-content-card .card-img-top {
  border-radius: 10px;
}
.card-custom.card-product .top-content-card p.card-message {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: white;
  line-height: 1.1;
  padding: 8px;
  background: rgba(16, 16, 16, 0.5);
  z-index: 2;
}
.card-custom.card-product .top-content-card .favoris {
  position: absolute;
  width: 20px;
  right: -5px;
  bottom: -12px;
  transition: all 100ms ease-in;
}
.card-custom.card-product .top-content-card .favoris:hover {
  transform: scale(1.1);
}
.card-custom.card-product .ref {
  font-size: 10px;
  color: #d9d9d9;
  width: calc(100% - 15px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.card-custom.card-product .content-card {
  flex-direction: column;
}
.card-custom.card-product .content-card .added-time p {
  color: #fff;
  background-image: linear-gradient(to right, #f8d33b, #f68c20);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-mask-image: linear-gradient(to right, #fff, #fff);
}
@media screen and (max-width: 950px) {
  .card-custom.card-product .content-card .added-time {
    display: none !important;
  }
}
.card-custom.card-product .content-card .extension {
  min-width: 25px;
  max-width: 50px;
}
.card-custom.card-product .content-card .extension img {
  width: 100%;
  max-width: 70%;
  height: auto;
}
.card-custom.card-product .content-card .card-number {
  font-size: 12px;
}
.card-custom.card-product .content-card .name {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.card-custom.card-product .content-card .price {
  font-size: 18px;
  font-weight: 700;
}
.card-custom.card-product .content-card h6 {
  font-size: 11px;
  margin-bottom: 2px;
  max-width: 70px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.card-custom.card-product .content-card h6 + p {
  font-size: 10px;
  margin-bottom: 0;
  color: #d9d9d9;
  max-width: 50px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.card-custom.card-product .content-card .separator {
  width: 1px !important;
  height: 40px;
  display: block;
  background: linear-gradient(270.57deg, rgba(255, 255, 255, 0.42) -0.01%, rgba(255, 255, 255, 0.14) 99.99%);
}
@media screen and (max-width: 1400px) {
  .card-custom.card-product .content-card .name {
    font-size: 18px;
  }
}
@media screen and (min-width: 1049px) and (max-width: 1300px) {
  .card-custom.card-product .content-card .price {
    font-size: 15px;
  }
}
.card-custom.card-product:hover {
  box-shadow: 0px 5px 16px rgba(42, 177, 244, 0.2);
}
.card-custom.card-product.selected {
  border: 2px solid #1890ff;
  box-shadow: 0px 4px 49px rgba(0, 7, 72, 0.12), inset 0px 0px 10px #1890ff;
}
.card-custom.card-product.waiting .overlay {
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 18px;
}
.card-custom.card-table {
  border-radius: 0;
  justify-content: start;
}
.card-custom .informations {
  width: 200px;
}
.card-custom .informations p {
  font-size: 12px;
  margin: 0 0 4px 0 !important;
  padding: 0 10px;
  max-width: 110px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.card-custom .informations .black-zone {
  background: #151515;
  border-radius: 10px;
  padding: 4px 10px;
  margin-bottom: 4px;
}
.card-custom .informations .black-zone p {
  font-size: 16px;
  padding: 0;
  margin-bottom: 0 !important;
}
.card-custom .card-custom {
  background: linear-gradient(106.92deg, rgba(155, 154, 165, 0.25) 0%, rgba(120, 119, 130, 0.125) 100.09%);
}
.card-custom * {
  color: white;
}
.card-custom.gold {
  background: linear-gradient(106.9deg, #fee992 0.09%, #faac55 100.09%);
}
.card-custom.gold * {
  color: black;
}

.display-elements.grid > * {
  flex: 0 0 auto;
}
.display-elements.grid.grid-Homepage {
  flex-wrap: unset !important;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .display-elements.grid.grid-Homepage > * {
    width: 225px !important;
  }
}
@media screen and (max-width: 400px) {
  .display-elements.grid > * {
    width: calc(100% - 50px);
  }
}
@media screen and (min-width: 400px) {
  .display-elements.grid > * {
    width: calc(50% - 8px);
  }
}
@media screen and (min-width: 800px) {
  .display-elements.grid > * {
    width: calc(33.3333333333% - 11px);
  }
}
@media screen and (min-width: 1050px) {
  .display-elements.grid > * {
    width: calc(25% - 12px);
  }
}
@media screen and (min-width: 1250px) {
  .display-elements.grid > * {
    width: calc(20% - 14px);
  }
}
.display-elements.grid .card-custom.card-product > .container-xxl {
  flex-direction: column;
}
.display-elements.grid .card-custom.card-product > .container-xxl > div {
  width: 100%;
  max-width: 300px;
  margin: auto;
}
.display-elements.grid .card-custom.card-product > .container-xxl .content-card .container {
  width: 100%;
}
.display-elements.grid .card-custom.card-product > .container-xxl .content-card .body-content-card {
  flex-direction: row;
}
.display-elements.grid .card-custom.card-product > .container-xxl .content-card .lang img {
  width: 15px;
}
.display-elements.grid .card-custom.card-product > .container-xxl .content-card .rarity {
  border-radius: 999px;
  background: radial-gradient(circle at center, #393939 10%, transparent 100%);
  display: flex;
  justify-content: center;
  width: 40px;
  height: 25px;
}
@media screen and (max-width: 575px) and (min-width: 375px) {
  .display-elements.grid .card-custom.card-product > .container-xxl .content-card .rarity {
    width: 25px;
    height: 16px;
  }
}
.display-elements.grid .no-grid {
  display: none !important;
}
.display-elements.list > * {
  width: 100%;
  flex: 100%;
}
.display-elements.list > * .card-custom.card-product {
  max-width: 100%;
}
.display-elements.list > * .card-custom.card-product .graded-container {
  position: absolute;
  width: 99%;
  height: 80px;
  top: 6px;
  overflow: hidden;
  z-index: -1;
}
.display-elements.list > * .card-custom.card-product .graded-container .right-layout {
  position: absolute;
  background: #D9D9D9;
  width: 40%;
  height: 100%;
  right: 0;
  border-radius: 7px;
}
.display-elements.list > * .card-custom.card-product .graded-container .bottom-layout {
  position: absolute;
  background: #D9D9D9;
  width: 100%;
  height: 5px;
  bottom: 0;
  right: 0;
  z-index: 1;
  border-radius: 5px;
  transition: width 0.15s ease-in;
}
.display-elements.list > * .card-custom.card-product .graded-container .square-layout {
  position: absolute;
  background: #282828;
  z-index: 1;
  width: 100px;
  height: 140px;
  right: 35%;
  border-radius: 5px;
  transform: rotate(148deg);
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article="MTG Grade"] .bottom-layout {
  background: linear-gradient(45deg, #5B5B5D 66%, #A5A5A6, transparent 0%);
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article="MTG Grade"] .bottom-layout.min {
  background: linear-gradient(45deg, #5B5B5D 51%, #A5A5A6, transparent 0%);
  left: 15%;
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article=CGS] .bottom-layout {
  background: linear-gradient(45deg, #242427 66%, #3F3F43, transparent 0%);
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article=CGS] .bottom-layout.min {
  background: linear-gradient(45deg, #242427 51%, #3F3F43, transparent 0%);
  left: 15%;
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article=Collectaura] .bottom-layout {
  background: linear-gradient(45deg, #184B81 66%, #3076c1, transparent 0%);
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article=Collectaura] .bottom-layout.min {
  background: linear-gradient(45deg, #184B81 51%, #3076c1, transparent 0%);
  left: 15%;
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article="C.H.E.N"] .bottom-layout {
  background: linear-gradient(45deg, #502525 66%, #844242, transparent 0%);
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article="C.H.E.N"] .bottom-layout.min {
  background: linear-gradient(45deg, #502525 51%, #844242, transparent 0%);
  left: 15%;
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article="Pure Grading"] .bottom-layout {
  background: linear-gradient(45deg, #dfdfdf 66%, #FFFFFF, transparent 0%);
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article="Pure Grading"] .bottom-layout.min {
  background: linear-gradient(45deg, #dfdfdf 51%, #FFFFFF, transparent 0%);
  left: 15%;
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article="MTG Grade"] .right-layout {
  background: linear-gradient(45deg, #5B5B5D, #A5A5A6);
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article=CGS] .right-layout {
  background: linear-gradient(45deg, #242427, #3F3F43);
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article=Collectaura] .right-layout {
  background: linear-gradient(45deg, #184B81, #3076c1);
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article="C.H.E.N"] .right-layout {
  background: linear-gradient(45deg, #502525, #844242);
}
.display-elements.list > * .card-custom.card-product .graded-container[data-article="Pure Grading"] .right-layout {
  background: linear-gradient(45deg, #dfdfdf, #FFFFFF);
}
.display-elements.list > * .card-custom.card-product .container-xxl {
  display: flex;
  align-items: center;
}
.display-elements.list > * .card-custom.card-product .container-xxl .top-content-card {
  max-width: 150px;
  width: 100%;
}
.display-elements.list > * .card-custom.card-product .container-xxl .top-content-card .card-img-top {
  position: absolute;
  width: calc(100% + 60px);
  max-width: inherit;
  display: block;
  left: -30px;
  top: -50px;
  transition: all ease 500ms;
}
.display-elements.list > * .card-custom.card-product .container-xxl .top-content-card p.card-message {
  height: 103%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.1;
  border-radius: 12px;
}
.display-elements.list > * .card-custom.card-product .container-xxl .top-content-card .card-img-container {
  overflow: hidden;
  height: 60px;
  position: relative;
  text-decoration: none;
  border-radius: 12px;
  position: relative;
}
.display-elements.list > * .card-custom.card-product .container-xxl .content-card {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  padding-top: 0 !important;
  flex-direction: row;
}
.display-elements.list > * .card-custom.card-product .container-xxl .content-card a {
  text-decoration: none;
  width: 150px;
}
@media screen and (max-width: 950px) {
  .display-elements.list > * .card-custom.card-product .container-xxl .content-card a {
    width: 75px;
  }
}
.display-elements.list > * .card-custom.card-product .container-xxl .content-card .primary-content {
  max-width: 600px;
}
.display-elements.list > * .card-custom.card-product .container-xxl .content-card .primary-content .list-view-font {
  position: static !important;
}
.display-elements.list > * .card-custom.card-product .container-xxl .content-card .primary-content .logo-list img {
  width: 30px;
}
.display-elements.list > * .card-custom.card-product .container-xxl .content-card .primary-content .rarity {
  border-radius: 999px;
  background: radial-gradient(circle at center, #393939 10%, transparent 100%);
  display: flex;
  justify-content: center;
  width: 40px;
  height: 25px;
}
.display-elements.list > * .card-custom.card-product .container-xxl .content-card .primary-content .lang img {
  width: 20px;
}
.display-elements.list > * .card-custom.card-product .container-xxl .content-card .price {
  font-size: 25px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.display-elements.list > * .card-custom.card-product .container-xxl .content-card .separator {
  height: 80%;
}
.display-elements.list > * .card-custom.card-product .hide-on-open {
  opacity: 1 !important;
  transition: all ease 100ms;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.display-elements.list > * .card-custom.card-product .arrow-expand {
  transition: all ease 200ms;
  transform: rotate(0);
}
.display-elements.list > * .card-custom.card-product .futur-feature {
  max-width: 75%;
}
.display-elements.list > * .card-custom.card-product .futur-feature img {
  width: 100%;
}
.display-elements.list > * .card-custom.card-product .futur-feature p {
  display: none;
}
.display-elements.list > * .card-custom.card-product.open .top-content-card {
  height: 100%;
  overflow: inherit;
}
.display-elements.list > * .card-custom.card-product.open .top-content-card .card-img-container {
  height: 100%;
}
.display-elements.list > * .card-custom.card-product.open .top-content-card .card-img-top {
  position: relative;
  width: 100%;
  left: 0;
  top: 0 !important;
}
.display-elements.list > * .card-custom.card-product.open .top-content-card p.card-message {
  height: auto;
  border-radius: 0 !important;
}
@media screen and (min-width: 1400px) {
  .display-elements.list > * .card-custom.card-product.open .top-content-card {
    height: 210px !important;
  }
}
.display-elements.list > * .card-custom.card-product.open .futur-feature p {
  display: block;
}
@media screen and (max-width: 1200px) {
  .display-elements.list > * .card-custom.card-product.open .futur-feature p {
    font-size: 1.1rem;
  }
}
.display-elements.list > * .card-custom.card-product.open .hide-on-open {
  opacity: 0 !important;
}
.display-elements.list > * .card-custom.card-product.open .arrow-expand {
  transform: rotate(-180deg);
}
@media screen and (max-width: 1400px) {
  .display-elements.list > * .card-custom.card-product .container-xxl .top-content-card {
    min-width: 100px;
  }
  .display-elements.list > * .card-custom.card-product .container-xxl .top-content-card .card-img-top {
    top: -40px;
  }
  .display-elements.list > * .card-custom.card-product .content-card .container .name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    font-size: 16px;
  }
}
.display-elements.list > * .card-custom.card-product .content-card .container.secondary-content {
  flex-grow: 1;
  flex-basis: 0;
}
.display-elements.list > * .card-custom.card-product .content-card .container.secondary-content div > div {
  width: -moz-max-content;
  width: max-content;
  margin: 0 5px;
}
.display-elements.list > * .card-custom.card-product .content-card .container.secondary-content div > div.separator {
  height: 40px;
}
.display-elements.list > * .card-custom.card-product .content-card .container.secondary-content div > div:not(.separator) {
  min-width: 70px;
}
.display-elements.list > * .card-custom.card-product .content-card .container.secondary-content .icon {
  width: 50px;
}
.display-elements.list > * .card-custom.card-product .content-card .container.secondary-content .icon div:first-child {
  min-width: auto;
}
@media screen and (max-width: 991px) {
  .display-elements.list > * .card-custom.card-product .content-card .container.primary-content .extension {
    width: 50px;
  }
  .display-elements.list > * .card-custom.card-product .content-card .container.secondary-content {
    justify-content: flex-end !important;
  }
  .display-elements.list > * .card-custom.card-product .content-card .container.secondary-content .price {
    font-size: 20px;
  }
}
.display-elements.list > * .no-list {
  display: none !important;
}
.display-elements .Neuf {
  background: linear-gradient(to left, #faac55, #fee992);
}
.display-elements .Excellent {
  background-color: #3737c4;
}
.display-elements .Excellent span {
  color: white !important;
}
.display-elements .Bon {
  background-color: #1a841a;
}
.display-elements .Bon span {
  color: white !important;
}
.display-elements .Occasion {
  background-color: grey;
}

.profil-section {
  width: 100%;
}
.profil-section img {
  max-width: 250px;
}
.profil-section h3 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.profil-section a {
  color: #d9d9d9;
  font-size: 18px;
  text-decoration: none;
}
.profil-section a:hover {
  color: white;
  text-decoration: underline;
}
.profil-section .data {
  background: linear-gradient(106.9deg, #fee992 0.09%, #faac55 100.09%);
  border-radius: 99px;
  color: #101010;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  min-height: 36px;
  width: 60px;
  margin: 6px auto;
}
.profil-section .data + .text {
  font-size: 14px;
  line-height: 1.1;
  max-width: 100px;
}

.sell-block {
  background: linear-gradient(106.9deg, #fee992 0.09%, #faac55 100.09%);
  border-radius: 32px;
  margin-top: 250px;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .sell-block {
    margin-top: 100px;
  }
}
.sell-block .black-layer {
  background-color: black;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  padding: 30px 80px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .sell-block .black-layer {
    padding: 15px 40px;
  }
}
.sell-block .list-layer {
  background: linear-gradient(177deg, rgba(252, 228, 140, 0.2), rgba(65, 170, 218, 0.08));
  padding: 15px 0px;
  border-radius: 15px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .sell-block .list-layer {
    width: 100%;
  }
}
.sell-block .list-layer li {
  margin-bottom: 15px;
  display: flex;
  grid-gap: 10px;
  gap: 10px;
}
.sell-block .three-img img {
  max-width: 400px;
}
@media screen and (max-width: 1024px) {
  .sell-block .three-img img {
    display: none;
  }
}
.sell-block .lighting {
  bottom: 10px;
  right: -10px;
}
@media screen and (max-width: 768px) {
  .sell-block .lighting {
    display: none;
  }
}
.sell-block .lighting img {
  width: 250px;
}

.note-animated {
  position: absolute;
  bottom: -10px;
  left: -5px;
}
.note-animated .background-animated {
  width: 30px;
  border-radius: 999px;
  padding: 5px;
  background: linear-gradient(to left, #FAAC55, #FEE992);
  overflow: hidden;
  transition: all ease 0.5s;
}
.note-animated .background-animated .wording-container {
  width: 215px;
  position: relative;
  display: flex;
  justify-content: center;
}
.note-animated .background-animated .wording-container .wording {
  color: black;
}
.note-animated .note-container {
  border-radius: 999px;
  padding: 5px;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 50px;
}
.note-animated .note-container.grey {
  background: #d9d9d9;
}
.note-animated .note-container.gold {
  background: linear-gradient(to left, #faac55, #fee992);
}
.note-animated .note-container .note {
  color: black;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.note-animated .small-hover {
  width: 25px !important;
}
.note-animated:hover .small-hover {
  width: 130px !important;
}
.note-animated:hover .background-animated {
  width: 200px;
}

.list-view {
  width: 30px !important;
}

.list-view-note {
  width: 30px !important;
}

.note-animated:hover .list-view {
  width: 150px !important;
}

.list-view-font {
  font-size: 13px !important;
  position: relative !important;
  bottom: 20px !important;
}

.wording-container-list {
  width: 180px !important;
}

.stepper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 1rem;
}
.stepper > div {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 900px) {
  .stepper > div {
    width: 25%;
  }
}
@media screen and (max-width: 650px) {
  .stepper > div {
    width: auto;
  }
}
.stepper p {
  color: white;
  margin: 0;
  font-size: 23px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stepper p.step {
  background: linear-gradient(106.9deg, #b0e3ff 0.09%, #2cb9ff 100.09%);
  border-radius: 12px;
  width: 40px;
  height: 40px;
}
.stepper p.step + p {
  margin-left: 16px;
  margin-right: 32px;
}
@media screen and (max-width: 1200px) {
  .stepper p {
    font-size: 20px;
  }
  .stepper p.step + p {
    margin-left: 12px;
    margin-right: 24px;
  }
}
@media screen and (max-width: 950px) {
  .stepper p {
    font-size: 16px;
    line-height: 1;
  }
  .stepper p.step {
    width: 32px;
    height: 32px;
  }
  .stepper p.step + p {
    margin-left: 8px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 950px) {
  .stepper p.step + p {
    width: calc(100% - 48px);
    margin-right: 8px;
  }
}
.stepper .disabled p {
  color: #6a6a6a;
}
.stepper .disabled p.step {
  background: linear-gradient(106.92deg, rgba(149, 149, 149, 0.12) 0%, rgba(102, 102, 102, 0.2) 100.09%);
}
@media screen and (max-width: 650px) {
  .stepper .disabled p.step {
    margin: 0 8px;
  }
  .stepper .disabled p.step + p {
    display: none;
  }
}

.pagination-stock {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 24px 0;
}
.pagination-stock li.page-item {
  margin-left: 0;
}
.pagination-stock li.page-item.disabled {
  display: none;
}
.pagination-stock li.page-item button {
  background: inherit;
  border: inherit;
  border-radius: 35px !important;
  padding: 4px 8px;
  min-width: 34px;
  color: white;
}
.pagination-stock li.page-item button:hover {
  opacity: 0.8;
}
.pagination-stock li.page-item.current {
  display: block;
}
.pagination-stock li.page-item.current button {
  border: 1px solid #1890ff;
  color: #1890ff;
}

.type-category p {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  cursor: pointer;
  color: #6a6a6a;
}
.type-category p.selected {
  color: white;
}
.type-category p:hover {
  color: white;
}
@media screen and (max-width: 1150px) {
  .type-category p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1050px) {
  .type-category p {
    font-size: 18px;
  }
}

.sidebar.vault {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 260px;
  padding-top: 120px;
  background: linear-gradient(106.9deg, rgba(254, 233, 146, 0.8) 20%, #faac55 100.09%);
  z-index: 1;
  transition: all 0.5s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.sidebar.vault.close {
  width: 60px;
}
.sidebar.vault .logo-details {
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sidebar.vault .logo-details .mud-icon-root {
  font-size: 20px;
  color: #fff;
  height: 30px;
  min-width: 60px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
}
.sidebar.vault .logo-details .logo_name {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.vault.close .logo-details .logo_name {
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar.vault .nav-links {
  height: 100%;
  padding: 30px 0 150px 0;
  overflow: auto;
}
.sidebar.vault .mud-icon-root {
  color: #fff;
}
.sidebar.vault.close .nav-links {
  overflow: visible;
}
.sidebar.vault .nav-links::-webkit-scrollbar {
  display: none;
}
.sidebar.vault .nav-links li {
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar.vault .nav-links li:hover {
  background: #1d1b31;
}
.sidebar.vault .nav-links li .iocn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.vault.close .nav-links li .iocn-link {
  display: block;
}
.sidebar.vault .nav-links li .mud-icon-root {
  height: 25px;
  min-width: 60px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar.vault .nav-links li.showMenu i.arrow {
  transform: rotate(-180deg);
}
.sidebar.vault.close .nav-links i.arrow {
  display: none;
}
.sidebar.vault .nav-links li a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar.vault .nav-links li a .link_name {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}
.sidebar.vault.close .nav-links li a .link_name {
  opacity: 0;
  pointer-events: none;
}
.sidebar.vault .nav-links li .sub-menu {
  padding: 6px 6px 14px 80px;
  margin-top: -10px;
  background: #1d1b31;
  display: none;
}
.sidebar.vault .nav-links li.showMenu .sub-menu {
  display: block;
}
.sidebar.vault .nav-links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar.vault .nav-links li .sub-menu a:hover {
  opacity: 1;
}
.sidebar.vault.close .nav-links li .sub-menu {
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.vault.close .nav-links li:hover .sub-menu {
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar.vault .nav-links li .sub-menu .link_name {
  display: none;
}
.sidebar.vault.close .nav-links li .sub-menu .link_name {
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar.vault .nav-links li .sub-menu.blank {
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar.vault .nav-links li:hover .sub-menu.blank {
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.vault .one {
  width: 80%;
  margin-left: 10%;
  background-color: black;
  height: 400px;
}
.sidebar.vault .profile-details {
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  background: #1d1b31;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.vault.close .profile-details {
  width: 60px;
}
.sidebar.vault .profile-details .profile-content {
  display: flex;
  align-items: center;
}
.sidebar.vault .profile-details img {
  height: 52px;
  width: 52px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 12px;
  background: #1d1b31;
  transition: all 0.5s ease;
}
.sidebar.vault.close .profile-details img {
  padding: 10px;
}
.sidebar.vault .profile-details .profile_name, .sidebar.vault .profile-details .job {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.sidebar.vault.close .profile-details i, .sidebar.vault.close .profile-details .profile_name, .sidebar.vault.close .profile-details .job {
  display: none;
}
.sidebar.vault .profile-details .job {
  font-size: 12px;
}
.sidebar.vault .home-section {
  position: relative;
  background: #E4E9F7;
  height: 100vh;
  left: 260px;
  width: calc(100% - 260px);
  transition: all 0.5s ease;
}
.sidebar.vault.close ~ .home-section {
  left: 78px;
  width: calc(100% - 78px);
}
.sidebar.vault .home-section .home-content {
  height: 60px;
  display: flex;
  align-items: center;
}
.sidebar.vault .home-section .home-content .bx-menu,
.sidebar.vault .home-section .home-content .text {
  color: #11101d;
  font-size: 35px;
}
.sidebar.vault .home-section .home-content .bx-menu {
  margin: 0 15px;
  cursor: pointer;
}
.sidebar.vault .home-section .home-content .text {
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 420px) {
  .sidebar.vault.close .nav-links li .sub-menu {
    display: none;
  }
}

#container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  position: relative;
  height: 750px;
  width: 100%;
}
#container .text-danger span {
  color: rgb(220, 53, 69);
}
#container .card-custom {
  border-radius: 0px;
  background: #2a2727;
}
#container h1 {
  font-weight: 700;
  letter-spacing: -1.5px;
  margin: 0;
  margin-bottom: 15px;
}
#container h1.title {
  font-size: 45px;
  line-height: 45px;
  margin: 0;
  text-shadow: 0 0 10px rgba(16, 64, 74, 0.5);
}
#container p {
  font-size: 14px;
  font-weight: 100;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 20px 0 30px;
  text-shadow: 0 0 10px rgba(16, 64, 74, 0.5);
}
#container span {
  font-size: 14px;
  margin-top: 25px;
}
#container a {
  color: #333;
  font-size: 14px;
  margin: 15px 0;
  transition: 0.3s ease-in-out;
}
#container a:hover {
  color: #4bb6b7;
}
#container .content {
  display: flex;
  width: 100%;
  height: 50px;
  align-items: center;
  justify-content: space-around;
}
#container .content .checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}
#container .content input {
  accent-color: #333;
  width: 12px;
  height: 12px;
}
#container .content label {
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-left: 5px;
}
#container button {
  position: relative;
  border-radius: 20px;
  background-color: #4bb6b7;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  width: 80%;
  margin: 10px;
  padding: 12px 10px;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: 0.3s ease-in-out;
}
#container button:hover {
  letter-spacing: 3px;
}
#container button:active {
  transform: scale(0.95);
}
#container button:focus {
  outline: none;
}
#container button.ghost {
  background-color: rgba(225, 225, 225, 0.2);
  border: 2px solid #fff;
  color: #fff;
}
#container button.ghost i {
  position: absolute;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
#container button.ghost i.register {
  right: 70px;
}
#container button.ghost i.login {
  left: 70px;
}
#container button.ghost:hover i.register {
  right: 40px;
  opacity: 1;
}
#container button.ghost:hover i.login {
  left: 40px;
  opacity: 1;
}
#container form {
  background-color: #2a2727;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  #container form {
    padding: 0px;
  }
}
#container .container {
  background-color: #2a2727;
  border-radius: 25px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  width: 768px;
  max-width: 100%;
  min-height: 500px;
}
#container .form-container {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
}
#container .login-container {
  left: 0;
  width: 50%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #container .login-container {
    width: 100%;
  }
}
#container.right-panel-active .login-container {
  transform: translateX(100%);
}
#container .register-container {
  overflow-y: auto;
  left: 0;
  width: 50%;
  opacity: 0;
  z-index: 1;
}
#container.right-panel-active .register-container {
  transform: translateX(100%);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}
@keyframes show {
  0%, 49.99% {
    opacity: 0;
    z-index: 1;
  }
  50%, 100% {
    opacity: 1;
    z-index: 5;
  }
}
#container .overlay-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 100;
}
#container.right-panel-active .overlay-container {
  transform: translate(-100%);
}
#container .overlay {
  background-image: url("image/image.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  color: #fff;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}
#container .overlay::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(46, 94, 109, 0.4) 40%, rgba(46, 94, 109, 0));
}
#container.right-panel-active .overlay {
  transform: translateX(50%);
}
#container .overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  top: 0;
  height: 100%;
  width: 50%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}
#container .overlay-left {
  transform: translateX(-20%);
}
#container.right-panel-active .overlay-left {
  transform: translateX(0);
}
#container .overlay-right {
  right: 0;
  transform: translateX(0);
}
#container.right-panel-active .overlay-right {
  transform: translateX(20%);
}
#container .social-container {
  margin: 20px 0;
}
#container .social-container a {
  border: 1px solid #dddddd;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
  transition: 0.3s ease-in-out;
}
#container .social-container a:hover {
  border: 1px solid #4bb6b7;
}

.dashboard .title-container {
  font-size: 20px;
  font-weight: 800;
}
.dashboard .selection {
  max-width: 500px;
}
.dashboard .selection .selection-child-container {
  border-bottom: 2px solid #686d6f;
  cursor: pointer;
  width: 50%;
  display: flex;
  justify-content: center;
}
.dashboard .selection .selection-child-container.active {
  border-bottom: 2px solid #2cb9ff;
}
.dashboard .article-count {
  width: calc(100% + 17px);
  height: 70px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  position: relative;
  border: 2px solid #F2AC2C;
  border-radius: 10px;
}
.dashboard .article-count.first-one {
  box-shadow: 0 0 15px 5px rgba(242, 172, 44, 0.4);
}
.dashboard .article-count .mud-icon-root {
  color: red !important;
}
.dashboard .mud-drawer-mini {
  background: linear-gradient(to right, rgb(31, 31, 31), rgb(60, 60, 60));
}
.dashboard #imagesContainer {
  background-color: transparent;
}
.dashboard .pie-chart {
  width: 300px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
  padding-left: 30px;
  padding-right: 30px;
}
.dashboard .bloc-info {
  width: 300px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
}

.add-to-cart {
  --color: #fff;
  --icon: var(--color);
  --cart: #fff;
  --dots: #fff;
  cursor: pointer;
  position: relative;
  outline: none;
  border: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  font-size: 16px;
  border-radius: 22px;
  padding: 12px 32px;
  font-weight: 500;
  line-height: 20px;
  transform: scale(0.97);
  transform: scale(var(--s, 0.97));
  box-shadow: 0 4px 12px var(--shadow);
  box-shadow: 0 var(--s-y, 4px) var(--s-b, 12px) var(--shadow);
  color: var(--color);
  background: var(--background);
  transition: transform 0.3s, box-shadow 0.3s;
}
.add-to-cart .default {
  padding-left: 16px;
  position: relative;
  opacity: 1;
  opacity: var(--o, 1);
  transform: scale(1);
  transform: scale(var(--s, 1));
  transition: transform 0.3s, opacity 0.3s;
  transition-delay: 0.3s;
  transition-delay: var(--d, 0.3s);
}
.add-to-cart .default:before, .add-to-cart .default:after {
  content: "";
  width: 2px;
  height: 12px;
  left: 0;
  top: 4px;
  border-radius: 1px;
  background: var(--icon);
  position: absolute;
  transform: rotate(0deg);
  transform: rotate(var(--r, 0deg));
  transition: transform 0.25s;
}
.add-to-cart .default:after {
  --r: 90deg;
}
.add-to-cart .success {
  opacity: 0;
  opacity: var(--o, 0);
  transform: translate(-50%, 12px);
  transform: translate(-50%, var(--y, 12px));
  position: absolute;
  top: 6px;
  left: 50%;
  transition: opacity 0.3s, transform 0.3s;
  transition-delay: 0s;
  transition-delay: var(--d, 0s);
}
.add-to-cart .dots {
  width: 4px;
  height: 4px;
  top: 20px;
  left: 50%;
  margin-left: -7px;
  border-radius: 2px;
  position: absolute;
  transform-origin: 10px 50%;
  background: var(--dots);
  box-shadow: 5px 0 0 var(--dots), 10px 0 0 var(--dots);
  opacity: 0;
  opacity: var(--o, 0);
  transform: scale(0.4);
  transform: scale(var(--s, 0.4));
  transition: opacity 0.3s, transform 0.3s;
  transition-delay: 0s;
  transition-delay: var(--d, 0s);
}
.add-to-cart .cart {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: inherit;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.add-to-cart .cart:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 16px;
  background: var(--background);
  top: 17px;
  right: 100%;
  z-index: 1;
  margin-right: -20px;
  transform: translateX(-18px) rotate(-16deg);
}
.add-to-cart .cart > div {
  top: 13px;
  right: 100%;
  transform: translateX(-18px) rotate(-16deg);
  position: absolute;
  z-index: 2;
  transform-origin: 1px 21px;
}
.add-to-cart .cart > div:before, .add-to-cart .cart > div:after {
  content: "";
  position: absolute;
  top: 4px;
  top: var(--t, 4px);
  left: 0;
  left: var(--l, 0);
  height: 2px;
  width: 18px;
  width: var(--w, 18px);
  background: var(--cart);
  border-radius: 1px;
}
.add-to-cart .cart > div:after {
  --w: 16px;
  --t: 14px;
  --l: 1px;
}
.add-to-cart .cart > div > div {
  width: 2px;
  height: 15px;
  height: var(--h, 15px);
  border-radius: 1px;
  transform: rotate(-8deg);
  transform: rotate(var(--r, -8deg));
  background: var(--cart);
  position: relative;
}
.add-to-cart .cart > div > div:before, .add-to-cart .cart > div > div:after {
  content: "";
  position: absolute;
  background: inherit;
}
.add-to-cart .cart > div > div:after {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  bottom: -6px;
  bottom: var(--b, -6px);
  left: 0;
  left: var(--l, 0);
}
.add-to-cart .cart > div > div:first-child:before {
  border-radius: inherit;
  top: 0;
  right: 0;
  height: 2px;
  width: 6px;
  transform-origin: 5px 1px;
  transform: rotate(16deg);
}
.add-to-cart .cart > div > div:last-child {
  --h: 12px;
  --r: 8deg;
  position: absolute;
  left: 16px;
  bottom: -1px;
}
.add-to-cart .cart > div > div:last-child:after {
  --l: -2px;
  --b: -5px;
}
.add-to-cart.added .default {
  --o: 0;
  --s: .8;
  --d: 0s;
}
.add-to-cart.added .default:before {
  --r: -180deg;
}
.add-to-cart.added .default:after {
  --r: -90deg;
}
.add-to-cart.added .dots {
  --o: 1;
  --s: 1;
  --d: .3s;
  animation: dots 2s linear forwards;
}
.add-to-cart.added .success {
  --o: 1;
  --y: 0;
  --d: 1.8s;
}
.add-to-cart.added .cart:before, .add-to-cart.added .cart > div {
  animation: cart 2s forwards;
}
.add-to-cart:not(.added):hover {
  --s: 1;
  --s-y: 8px;
  --s-b: 20px;
}
.add-to-cart:not(.added):active {
  --s: .94;
  --s-y: 2px;
  --s-b: 6px;
}

@keyframes cart {
  41%, 49%, 57%, 60% {
    transform: translateX(30px) rotate(0deg);
  }
  40%, 47%, 54% {
    transform: translateX(30px) rotate(0deg) translateY(1px);
  }
  100% {
    transform: translateX(180px) rotate(-16deg);
  }
}
@keyframes dots {
  5% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px) rotate(-32deg);
    box-shadow: 5px 0 0 var(--dots), 10px 0 0 var(--dots);
  }
  31% {
    box-shadow: 5px -4px 0 var(--dots), 10px -8px 0 var(--dots);
  }
  32%, 50% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  45%, 100% {
    box-shadow: 5px 0 0 var(--dots), 10px 0 0 var(--dots);
  }
  51%, 100% {
    opacity: 0;
  }
}
@media screen and (min-width: 992px) {
  #filter .col-lg-4 {
    width: auto;
    max-width: 200px;
  }
}
@media screen and (max-width: 991px) {
  #filter .col-6 {
    width: calc(50% - 8px);
  }
}
@media (min-width: 576px) {
  #filter .search {
    flex: 1 0 auto;
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .switch-view {
    display: none;
  }
}
.showCard {
  opacity: 0;
}

.loading {
  width: 100%;
  height: 1000px;
  display: block;
}

.animation {
  animation: fade-in-from-bottom 0.5s ease-out;
  opacity: 1;
}

@keyframes fade-in-from-bottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.marketplaceCard .authenticate .small-text {
  font-size: 12px;
  color: #d9d9d9;
}
.marketplaceCard .btn-container {
  color: white !important;
  border-radius: 12px;
  line-height: 1.2;
  border: 0;
  text-decoration: none;
  transition: all ease 500ms;
  background: linear-gradient(106.9deg, #6bbf67 0.09%, #35ad6e 100.09%);
  cursor: pointer;
}
.marketplaceCard .btn-container button {
  background: none !important;
}
.marketplaceCard .default-img {
  width: 100%;
}
.marketplaceCard .default-img img {
  width: 190px !important;
  position: relative;
}
.marketplaceCard .profil-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 6px solid #f2ac2c;
  margin: 0 auto;
  display: flex;
  -o-object-fit: cover;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.marketplaceCard .profil-img img {
  width: 160px !important;
  top: 25px;
  position: relative;
}
.marketplaceCard .top-content-card {
  flex-wrap: wrap;
  display: flex;
  width: 100%;
  justify-content: space-around;
  position: relative;
  align-items: center;
}
.marketplaceCard .top-content-card.multiple {
  justify-content: unset !important;
}
.marketplaceCard .top-content-card input[type=radio] {
  display: none;
}
.marketplaceCard .top-content-card .card {
  position: absolute;
  width: 70%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.marketplaceCard .top-content-card .container {
  width: 375px;
  height: 375px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}
@media screen and (max-width: 450px) {
  .marketplaceCard .top-content-card .container {
    width: 250px;
    height: 250px;
  }
}
.marketplaceCard .top-content-card .cards {
  position: relative;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}
.marketplaceCard .top-content-card img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.marketplaceCard .top-content-card #item-1:checked ~ .cards #song-4,
.marketplaceCard .top-content-card #item-1:checked ~ .cards #song-3,
.marketplaceCard .top-content-card #item-2:checked ~ .cards #song-4,
.marketplaceCard .top-content-card #item-2:checked ~ .cards #song-5,
.marketplaceCard .top-content-card #item-3:checked ~ .cards #song-5,
.marketplaceCard .top-content-card #item-3:checked ~ .cards #song-1,
.marketplaceCard .top-content-card #item-4:checked ~ .cards #song-1,
.marketplaceCard .top-content-card #item-4:checked ~ .cards #song-2,
.marketplaceCard .top-content-card #item-5:checked ~ .cards #song-2,
.marketplaceCard .top-content-card #item-5:checked ~ .cards #song-3 {
  visibility: hidden;
}
.marketplaceCard .top-content-card #item-1:checked ~ .cards #song-2,
.marketplaceCard .top-content-card #item-2:checked ~ .cards #song-3,
.marketplaceCard .top-content-card #item-3:checked ~ .cards #song-4,
.marketplaceCard .top-content-card #item-4:checked ~ .cards #song-5,
.marketplaceCard .top-content-card #item-5:checked ~ .cards #song-1 {
  transform: translatex(-40%) scale(0.8);
  opacity: 0.4;
  z-index: 0;
  background: transparent;
  visibility: visible;
}
.marketplaceCard .top-content-card #item-1:checked ~ .cards #song-5,
.marketplaceCard .top-content-card #item-2:checked ~ .cards #song-1,
.marketplaceCard .top-content-card #item-3:checked ~ .cards #song-2,
.marketplaceCard .top-content-card #item-4:checked ~ .cards #song-3,
.marketplaceCard .top-content-card #item-5:checked ~ .cards #song-4 {
  transform: translatex(40%) scale(0.8);
  opacity: 0.4;
  z-index: 0;
  background: transparent;
  visibility: visible;
}
.marketplaceCard .top-content-card #item-1:checked ~ .cards #song-1,
.marketplaceCard .top-content-card #item-2:checked ~ .cards #song-2,
.marketplaceCard .top-content-card #item-3:checked ~ .cards #song-3,
.marketplaceCard .top-content-card #item-4:checked ~ .cards #song-4,
.marketplaceCard .top-content-card #item-5:checked ~ .cards #song-5 {
  transform: translatex(0) scale(1);
  opacity: 1;
  z-index: 1;
  transition: transform 0.2s;
  background: transparent;
  cursor: auto;
  visibility: visible;
  border: none;
}
.marketplaceCard .top-content-card #item-1:checked ~ .cards #song-1:hover,
.marketplaceCard .top-content-card #item-2:checked ~ .cards #song-2:hover,
.marketplaceCard .top-content-card #item-3:checked ~ .cards #song-3:hover,
.marketplaceCard .top-content-card #item-4:checked ~ .cards #song-4:hover,
.marketplaceCard .top-content-card #item-5:checked ~ .cards #song-5:hover {
  transform: scale(1.5);
}
.marketplaceCard .top-content-card .container-specialCard {
  width: 250px;
}
.marketplaceCard .top-content-card .container-specialCard.multiple {
  width: auto !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc {
  width: 100%;
  position: relative;
  border-radius: 20px;
  color: #fff;
  background: #101010;
  background-clip: padding-box;
  border-radius: 20px;
  position: relative;
}
.marketplaceCard .top-content-card .container-specialCard .bloc::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1.5px;
  border-radius: 12px;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.EnVente p.card-message {
  background: linear-gradient(106.9deg, rgba(247, 144, 80, 0.7) 0.09%, rgba(225, 78, 57, 0.7) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.EnVente::before {
  background: linear-gradient(140deg, rgba(247, 144, 80, 0.7), rgba(225, 78, 57, 0.7));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.EnVente .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Eligible p.card-message {
  background: linear-gradient(106.9deg, rgba(63, 229, 209, 0.85) 0.09%, rgba(63, 229, 110, 0.85) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Eligible::before {
  background: linear-gradient(140deg, rgba(63, 229, 209, 0.85), rgba(63, 229, 110, 0.85));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Eligible .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattented-expédition p.card-message {
  background: linear-gradient(106.9deg, rgba(204, 113, 56, 0.7) 0.09%, rgba(231, 57, 30, 0.7) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattented-expédition::before {
  background: linear-gradient(140deg, rgba(204, 113, 56, 0.7), rgba(231, 57, 30, 0.7));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattented-expédition .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattentedepriseencharge p.card-message {
  background: linear-gradient(106.9deg, rgba(229, 205, 101, 0.85) 0.09%, rgba(229, 151, 63, 0.85) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattentedepriseencharge::before {
  background: linear-gradient(140deg, rgba(229, 205, 101, 0.85), rgba(229, 151, 63, 0.85));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattentedepriseencharge .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Expertiseencours p.card-message {
  background: linear-gradient(106.9deg, rgba(88, 181, 234, 0.85) 0.09%, rgba(57, 17, 173, 0.85) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Expertiseencours::before {
  background: linear-gradient(140deg, rgba(88, 181, 234, 0.85), rgba(57, 17, 173, 0.85));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Expertiseencours .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Reçupourauthentification p.card-message {
  background: linear-gradient(106.9deg, rgba(177, 236, 255, 0.85) 0.09%, rgba(36, 123, 254, 0.85) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Reçupourauthentification::before {
  background: linear-gradient(140deg, rgba(177, 236, 255, 0.85), rgba(36, 123, 254, 0.85));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Reçupourauthentification .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Refusée p.card-message {
  background: linear-gradient(106.9deg, rgba(206, 19, 19, 0.85) 0.09%, rgba(77, 197, 248, 0.85) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Refusée::before {
  background: linear-gradient(140deg, rgba(206, 19, 19, 0.85), rgba(77, 197, 248, 0.85));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Refusée .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Conditionnement p.card-message {
  background: linear-gradient(106.9deg, rgba(252, 202, 4, 0.7) 0.09%, rgba(255, 128, 0, 0.7) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Conditionnement::before {
  background: linear-gradient(140deg, rgba(252, 202, 4, 0.7), rgba(255, 128, 0, 0.7));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Conditionnement .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Gradationencours p.card-message {
  background: linear-gradient(106.9deg, rgba(191, 40, 46, 0.85) 0.09%, rgba(166, 49, 140, 0.85) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Gradationencours::before {
  background: linear-gradient(140deg, rgba(191, 40, 46, 0.85), rgba(166, 49, 140, 0.85));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Gradationencours .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattentedegradation p.card-message {
  background: linear-gradient(106.9deg, rgba(80, 247, 144, 0.7) 0.09%, rgba(57, 225, 96, 0.7) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattentedegradation::before {
  background: linear-gradient(140deg, rgba(80, 247, 144, 0.7), rgba(57, 225, 96, 0.7));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattentedegradation .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Expédiée p.card-message {
  background: linear-gradient(106.9deg, rgba(238, 98, 43, 0.85) 0.09%, rgba(199, 15, 23, 0.85) 100.09%) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Expédiée::before {
  background: linear-gradient(140deg, rgba(238, 98, 43, 0.85), rgba(199, 15, 23, 0.85));
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Expédiée .card-custom {
  border: none !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattentederéception p.card-message {
  background: rgba(0, 0, 0, 0.7) !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc.Enattentederéception::before {
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 2 !important;
}
.marketplaceCard .top-content-card .container-specialCard .bloc .message-container {
  display: flex;
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: 3;
  justify-content: center;
  align-items: center;
  height: 1px;
}
.marketplaceCard .top-content-card .container-specialCard .bloc .message-container p.card-message {
  font-size: 14px;
  font-weight: 300;
  width: 100%;
  padding: 8px;
  text-align: center;
}
.marketplaceCard .top-content-card .container-specialCard .bloc img {
  width: 100%;
}
.marketplaceCard .top-content-card .container-specialCard .bloc #glareEffect {
  width: 100%;
  height: 99%;
  position: absolute;
  top: 0;
  opacity: 0;
  z-index: 4;
  mix-blend-mode: overlay;
  border-radius: 10px;
}
.marketplaceCard .certificate-container {
  width: 40%;
}
.marketplaceCard .certificate-container .wording {
  font-size: 20px;
}
.marketplaceCard .certificate-container .name p:nth-child(1) {
  font-size: 40px;
  font-weight: bold;
}
.marketplaceCard .certificate-container .name p:nth-child(2) {
  font-size: 20px;
  color: #d9d9d9;
}
.marketplaceCard .certificate-container .certificate-note {
  width: 40px;
  border-radius: 999px;
  padding: 8px;
  background: linear-gradient(to left, #faac55, #fee992);
  display: flex;
  justify-content: center;
  margin-right: 20px;
}
.marketplaceCard .certificate-container .certificate-note .note {
  color: black;
}
.marketplaceCard .certificate-container img {
  width: 330px;
  filter: blur(4px);
  margin-left: -15px;
}
.marketplaceCard .certificate-container .certificate-card {
  width: 100%;
  border: #313131 solid;
  padding: 15px 30px;
  border-radius: 15px;
  background: linear-gradient(110deg, rgb(0, 0, 0), rgba(36, 37, 43, 0.2));
}
.marketplaceCard .certificate-container .certificate-card .criteria-note {
  font-size: 14px;
  display: flex;
  align-items: center;
}
.marketplaceCard .certificate-container .certificate-card .criteria-note p:nth-child(1) {
  width: 20px;
}
.marketplaceCard .certificate-container .certificate-card .certificate-card-criteria {
  width: 40%;
}
.marketplaceCard .ref {
  color: #d9d9d9;
  font-size: 20px;
}
.marketplaceCard .price {
  font-size: 40px;
  font-weight: 700;
}
.marketplaceCard .informations {
  width: 100%;
  max-width: 100%;
}
.marketplaceCard .informations .black-zone {
  min-width: 250px;
}
.marketplaceCard .informations .black-zone .rarity {
  border-radius: 999px;
  background: radial-gradient(circle at center, #393939 10%, transparent 100%);
  display: flex;
  justify-content: center;
  width: 40px;
  height: 25px;
}
.marketplaceCard .informations .secondary-informations {
  min-width: 250px;
}
.marketplaceCard .extension img {
  width: 40px;
}
@media screen and (max-width: 1300px) {
  .marketplaceCard .top-content-card {
    display: flex;
    align-items: center;
    width: 100%;
    flex-direction: column;
  }
  .marketplaceCard .top-content-card .bloc {
    width: 100%;
  }
  .marketplaceCard .top-content-card .certificate-container {
    width: 100%;
    display: flex;
    margin-top: 30px !important;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .marketplaceCard .top-content-card .certificate-container img {
    width: 300px;
  }
  .marketplaceCard .card-img-top {
    max-width: 340px;
  }
  .marketplaceCard .ref {
    font-size: 18px;
  }
  .marketplaceCard .price {
    font-size: 36px;
  }
}
@media screen and (max-width: 700px) {
  .marketplaceCard .certificate-container img {
    width: 250px !important;
  }
  .marketplaceCard .price {
    font-size: 28px;
  }
  .marketplaceCard .extension h4 {
    font-size: calc(1rem + 0.3vw);
  }
}
.marketplaceCard .static-note {
  border-radius: 999px;
  padding: 5px;
  width: 80px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}
.marketplaceCard .static-note.gold {
  background: linear-gradient(to left, #faac55, #fee992);
}
.marketplaceCard .static-note.grey {
  background: #d9d9d9;
}
.marketplaceCard .static-note .note {
  color: black;
  font-weight: 500;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.marketplaceCard .static-note.Neuf {
  background: linear-gradient(to left, #faac55, #fee992);
}
.marketplaceCard .static-note.Excellent {
  background-color: #3737c4;
}
.marketplaceCard .static-note.Excellent span {
  color: white !important;
}
.marketplaceCard .static-note.Bon {
  background-color: #1a841a;
}
.marketplaceCard .static-note.Bon span {
  color: white !important;
}
.marketplaceCard .static-note.Occasion {
  background-color: grey;
}

.basketPage .paiement-container img {
  width: 40px;
  height: 25px;
  margin-top: 5px;
  border-radius: 2px;
  margin-right: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.basketPage .display-elements.list .graded-container {
  height: 57px !important;
  top: 4px !important;
}
@media screen and (max-width: 1200px) {
  .basketPage .display-elements.list .graded-container {
    height: 90px !important;
  }
}
.basketPage .display-elements.list .graded-container .square-layout {
  background: #4B4B4D !important;
  right: 37% !important;
}
.basketPage .display-elements.list .graded-container .right-layout {
  width: 43% !important;
}
@media screen and (max-width: 576px) {
  .basketPage .display-elements.list .container-xxl {
    align-items: center !important;
  }
}
.basketPage .display-elements.list .top-content-card .card-img-container {
  width: 110px !important;
  height: 45px !important;
}
.basketPage .display-elements.list .top-content-card .card-img-container img {
  top: -35px !important;
}
.basketPage .display-elements.list .content-card .primary-content {
  max-width: 240px !important;
}
.basketPage .display-elements.list .content-card .primary-content .extension {
  width: 40px !important;
}
.basketPage .display-elements.list .content-card .primary-content .note .static-note {
  padding: 5px !important;
}
.basketPage .display-elements.list .content-card .primary-content .note .static-note .note {
  font-size: 13px;
}
@media screen and (max-width: 1100px) {
  .basketPage .display-elements.list .content-card .primary-content a {
    width: 100px !important;
  }
}
.basketPage .display-elements.list .content-card .primary-content a .name {
  font-size: 18px !important;
  max-width: 100px;
}
.basketPage .display-elements.list .content-card .secondary-content div > div:not(.separator) {
  min-width: 10px !important;
}
.basketPage .display-elements.list .content-card .secondary-content .price {
  font-size: 22px !important;
}
.basketPage .display-elements.list .content-card .secondary-content .delete {
  padding: 6px;
  transition: border 0.3s ease-in;
  cursor: pointer;
  width: 40px;
  border: 1px solid transparent;
  border-radius: 15px;
}
.basketPage .display-elements.list .content-card .secondary-content .delete:hover {
  border: 1px solid white;
}
.basketPage .display-elements.list .content-card .secondary-content .delete img {
  width: 25px;
}
.basketPage .display-elements.list .content-card .futur-feature p {
  display: block !important;
}
.basketPage .light-grey {
  color: #d9d9d9;
}
.basketPage #question-mark::after {
  content: "Fonctionnalité en cours de développement. Pas d'inquiétude, vous pourrez très bientôt vous faire livrer les cartes qui sont déjà dans votre vault.";
  position: absolute;
  bottom: 50px;
  right: 15px;
  padding: 10px;
  border-radius: 15px;
  font-size: 13px;
  background: #AEAEAE;
  color: black;
  font-weight: bold;
  font-style: normal;
  width: 300px;
  height: 100px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (max-width: 450px) {
  .basketPage #question-mark::after {
    width: 200px;
    height: 130px;
  }
}
.basketPage #question-mark:hover::after {
  opacity: 1;
}
@media screen and (max-width: 450px) {
  .basketPage .container-credit {
    display: block !important;
  }
}
.basketPage .container-credit .credit h4 {
  margin-right: 10px;
}
@media screen and (max-width: 450px) {
  .basketPage .container-credit .credit {
    display: block !important;
  }
}
.basketPage .container-credit .credit-input {
  width: 280px;
  align-items: center;
}
.basketPage .container-credit .credit-input h4 {
  margin-right: 20px;
  margin-bottom: 0px;
}
.basketPage .container-credit .credit-input input {
  width: 85px;
}

.articlesPage .item-details {
  padding: 6px 7px !important;
  position: absolute;
  bottom: 0px;
  right: -13px;
}
.articlesPage .item-details .mud-icon-root {
  margin-left: 0px;
}
.articlesPage .container-picker {
  position: fixed;
  top: 89px;
  right: 0;
  bottom: 0;
  width: auto;
  z-index: 100;
}
.articlesPage .container-picker .layer-black {
  border: 3px solid #151515;
  z-index: 2;
  width: 101%;
  height: 110%;
  right: -10px;
  top: 80px;
  border-top-left-radius: 15px;
  display: none;
}
.articlesPage .container-picker .layer-black.show {
  display: block;
}
.articlesPage .container-picker .icon {
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 0px;
  height: 80px;
  border-radius: 15px;
  z-index: 101;
  background: linear-gradient(106.9deg, rgba(254, 233, 146, 0.8) 20%, #faac55 100.09%);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 500px) {
  .articlesPage .container-picker .icon {
    height: 60px;
  }
}
@media screen and (max-width: 500px) {
  .articlesPage .container-picker .icon .mud-badge-root {
    margin: 15px 20px !important;
  }
}
.articlesPage .container-picker .icon .mud-icon-root {
  color: white;
}
@media screen and (max-width: 500px) {
  .articlesPage .container-picker .icon .mud-icon-root {
    width: 25px;
  }
}
.articlesPage .container-picker .icon.show {
  top: 15px;
  left: 15px;
  height: auto !important;
  background: none;
  width: 25px;
}
.articlesPage .container-picker .icon.show .mud-icon-root {
  color: white;
}
@media screen and (max-width: 500px) {
  .articlesPage .container-picker .icon.show .mud-icon-root {
    width: 25px;
  }
}
.articlesPage .container-picker .cards-picker {
  background: linear-gradient(90deg, rgba(88, 76, 76, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-top-left-radius: 15px;
  -webkit-backdrop-filter: blur(70px);
          backdrop-filter: blur(70px);
  height: 100%;
  width: 25px;
  transition: all 0.3s ease-in-out;
  transform: translateX(100%);
}
.articlesPage .container-picker .cards-picker .title {
  width: 90%;
  align-self: end;
  right: -20px;
  top: -15px;
  position: relative;
}
.articlesPage .container-picker .cards-picker .container-cards {
  overflow-y: scroll;
}
.articlesPage .container-picker .cards-picker .container-cards #card-img {
  width: 120px;
  border-radius: 5px;
}
.articlesPage .container-picker .cards-picker.show {
  transform: translateX(0);
  width: 440px;
}
@media screen and (max-width: 500px) {
  .articlesPage .container-picker .cards-picker.show {
    width: 100%;
  }
}
.articlesPage.sellerPage .seller-exception {
  flex-direction: column !important;
}
.articlesPage.sellerPage .card-custom.card-product .content-card h6 {
  max-width: 45px !important;
}
.articlesPage.sellerPage .primary-content .added-time {
  display: block !important;
}
.articlesPage .profil-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 6px solid #F2AC2C;
  margin: 0 auto;
  display: flex;
  -o-object-fit: cover;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.articlesPage .profil-img img {
  width: 160px !important;
  top: 25px;
  position: relative;
}
.articlesPage .info:hover::before {
  content: "Seules les cartes éligibles peuvent être sélectionnées.";
  position: absolute;
  bottom: 58px;
  padding: 10px;
  border-radius: 15px;
  font-size: 13px;
  background: black;
  color: white;
  transition: opacity 0.2s ease-in-out;
}
@media (min-width: 576px) {
  .articlesPage .search {
    flex: 1 0 auto;
    width: auto;
  }
}
.articlesPage #icon-suppr:hover::before {
  content: "Retirer la carte de la mise en vente";
  position: absolute;
  top: -60px;
  right: 10px;
  padding: 10px;
  border-radius: 15px;
  font-size: 13px;
  background: black;
  width: 155px;
  height: 60px;
  transition: opacity 0.2s ease-in-out;
  color: white;
}
.articlesPage #icon-suppr img {
  width: 20px;
}
.articlesPage #icon-suppr:hover::before {
  content: "Retirer la carte de la sélection";
  position: absolute;
  top: -60px;
  right: 10px;
  padding: 10px;
  border-radius: 15px;
  font-size: 13px;
  background: black;
  width: 155px;
  height: 60px;
  transition: opacity 0.2s ease-in-out;
  color: white;
}
.articlesPage #icon-suppr img {
  width: 20px;
}
.articlesPage .card-custom.card-product a {
  text-decoration: none;
}
.articlesPage .container.secondary-content {
  height: 30px;
}
.articlesPage .card-custom.selected-card {
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 380px;
}
.articlesPage .card-custom.selected-card .top-content-card {
  width: 66px;
  height: 43px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  margin-right: 8px;
}
.articlesPage .card-custom.selected-card .top-content-card img {
  position: absolute;
  width: calc(100% + 14px);
  max-width: inherit;
  display: block;
  left: -7px;
  top: -10px;
  transition: all ease 500ms;
}
.articlesPage .card-custom.selected-card .content-card {
  width: calc(100% - 70px);
}
.articlesPage .card-custom.selected-card .content-card h5 {
  font-size: 1rem;
  max-width: 120px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.articlesPage .card-custom.selected-card .content-card .ref {
  font-size: 9px;
  line-height: 1.2;
  color: #d9d9d9;
}
.articlesPage .card-custom.selected-card input {
  font-size: 14px;
  background: #151515;
  border-radius: 10px;
  padding: 4px 10px;
  border: 0;
  max-width: 70px;
  max-height: 43px;
}
.articlesPage #collapse-sell {
  max-width: 380px;
}
.articlesPage label {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .articlesPage #collapse-filter .col-lg-4 {
    width: auto;
    max-width: 200px;
  }
}
@media screen and (max-width: 991px) {
  .articlesPage #collapse-filter .col-6 {
    width: calc(50% - 8px);
  }
}
.articlesPage .display-elements.list > * .card-custom.card-product .content-card .container.secondary-content > div {
  display: flex !important;
}
.articlesPage .display-elements.grid .top-content-card .note-container {
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.articlesPage .display-elements.grid .top-content-card .note-container .static-note {
  padding: 5px;
}
.articlesPage .display-elements.grid .primary-content .price {
  font-size: 16px;
}
.articlesPage .display-elements.grid .primary-content .added-time p {
  max-width: 80px !important;
}
.articlesPage .display-elements.list .graded-container .right-layout {
  width: 45% !important;
}
.articlesPage .display-elements.list .graded-container .square-layout {
  right: 40% !important;
}
.articlesPage .display-elements.list .graded-container[data-article="MTG Grade"] .bottom-layout {
  background: linear-gradient(45deg, #5B5B5D 61.5%, #A5A5A6, transparent 0%) !important;
}
.articlesPage .display-elements.list .graded-container[data-article="MTG Grade"] .bottom-layout.min {
  background: linear-gradient(45deg, #5B5B5D 38%, #A5A5A6, transparent 0%) !important;
  left: 23.8% !important;
}
.articlesPage .display-elements.list .graded-container[data-article=CGS] .bottom-layout {
  background: linear-gradient(45deg, #242427 61.5%, #3F3F43, transparent 0%) !important;
}
.articlesPage .display-elements.list .graded-container[data-article=CGS] .bottom-layout.min {
  background: linear-gradient(45deg, #242427 38%, #3F3F43, transparent 0%) !important;
  left: 23.8% !important;
}
.articlesPage .display-elements.list .graded-container[data-article=Collectaura] .bottom-layout {
  background: linear-gradient(45deg, #184B81 61.5%, #3076c1, transparent 0%) !important;
}
.articlesPage .display-elements.list .graded-container[data-article=Collectaura] .bottom-layout.min {
  background: linear-gradient(45deg, #184B81 38%, #3076c1, transparent 0%) !important;
  left: 23.8% !important;
}
.articlesPage .display-elements.list .graded-container[data-article="C.H.E.N"] .bottom-layout {
  background: linear-gradient(45deg, #502525 61.5%, #844242, transparent 0%) !important;
}
.articlesPage .display-elements.list .graded-container[data-article="C.H.E.N"] .bottom-layout.min {
  background: linear-gradient(45deg, #502525 38%, #844242, transparent 0%) !important;
  left: 23.8% !important;
}
.articlesPage .display-elements.list .graded-container[data-article="Pure Grading"] .bottom-layout {
  background: linear-gradient(45deg, #dfdfdf 61.5%, #FFFFFF, transparent 0%) !important;
}
.articlesPage .display-elements.list .graded-container[data-article="Pure Grading"] .bottom-layout.min {
  background: linear-gradient(45deg, #dfdfdf 38%, #FFFFFF, transparent 0%) !important;
  left: 23.8% !important;
}
.articlesPage .display-elements.list .primary-content .name-container {
  width: 120px;
}
.articlesPage .display-elements.list .primary-content .extension img {
  width: 60px;
}
@media screen and (min-width: 991px) and (max-width: 1400px) {
  .articlesPage .display-elements.list .primary-content .extension {
    display: none !important;
  }
  .articlesPage .display-elements.list .primary-content .added-time {
    display: none !important;
  }
}
@media screen and (min-width: 991px) and (max-width: 1400px) {
  .articlesPage .display-elements.list .secondary-container .extension {
    display: flex !important;
  }
  .articlesPage .display-elements.list .secondary-container .added-time {
    display: flex !important;
  }
}
.articlesPage.sellerPage .display-elements.grid > * {
  flex: 0 0 auto;
}
@media screen and (max-width: 375px) {
  .articlesPage.sellerPage .display-elements.grid > * {
    width: calc(100% - 20px);
  }
}
@media screen and (min-width: 600px) {
  .articlesPage.sellerPage .display-elements.grid > * {
    width: calc(50% - 8px);
  }
}
@media screen and (min-width: 900px) {
  .articlesPage.sellerPage .display-elements.grid > * {
    width: calc(33.3333333333% - 18px);
  }
}
@media screen and (min-width: 1400px) {
  .articlesPage.sellerPage .display-elements.grid > * {
    width: calc(25% - 14px);
  }
}
.articlesPage .display-elements.grid > * {
  flex: 0 0 auto;
}
@media screen and (max-width: 375px) {
  .articlesPage .display-elements.grid > * {
    width: calc(100% - 20px) !important;
  }
}
@media screen and (min-width: 375px) {
  .articlesPage .display-elements.grid > * {
    width: calc(50% - 8px);
  }
}
@media screen and (min-width: 900px) {
  .articlesPage .display-elements.grid > * {
    width: calc(25% - 18px);
  }
}
@media screen and (min-width: 1400px) {
  .articlesPage .display-elements.grid > * {
    width: calc(20% - 14px);
  }
}
.articlesPage div[data-bs-toggle=collapse] {
  cursor: pointer;
}
.articlesPage div[data-bs-toggle=collapse][aria-expanded=false] img {
  transform: rotate(0deg);
  transition: all ease 500ms;
}
.articlesPage div[data-bs-toggle=collapse][aria-expanded=true] img {
  transition: all ease 500ms;
  transform: rotate(-180deg);
}
.articlesPage .no-card h3,
.articlesPage .no-card p,
.articlesPage .no-card p a {
  color: #6a6a6a;
  transition: all ease 200ms;
}
.articlesPage .no-card p a:hover {
  color: white;
}

.sellPage #first-form {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .sellPage #first-form {
    width: 100%;
  }
}
.sellPage .card-custom.selected-card {
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 380px;
}
.sellPage .card-custom.selected-card .top-content-card {
  width: 66px;
  height: 43px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  margin-right: 8px;
}
.sellPage .card-custom.selected-card .top-content-card img {
  position: absolute;
  width: calc(100% + 14px);
  max-width: inherit;
  display: block;
  left: -7px;
  top: -10px;
  transition: all ease 500ms;
}
.sellPage .card-custom.selected-card .content-card {
  width: calc(100% - 70px);
}
.sellPage .card-custom.selected-card .content-card h5 {
  font-size: 1rem;
  max-width: 90px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.sellPage .card-custom.selected-card .content-card .ref {
  font-size: 9px;
  line-height: 1.2;
  color: #d9d9d9;
}
.sellPage .card-custom.selected-card input {
  font-size: 14px;
  background: #151515;
  border-radius: 10px;
  padding: 4px 10px;
  border: 0;
  max-width: 70px;
  max-height: 43px;
}
.sellPage .container-picker {
  position: fixed;
  top: 89px;
  right: 0;
  bottom: 0;
  width: auto;
  z-index: 100;
}
.sellPage .container-picker .layer-black {
  border: 3px solid #151515;
  z-index: 2;
  width: 101%;
  height: 110%;
  right: -10px;
  top: 80px;
  border-top-left-radius: 15px;
  display: none;
}
.sellPage .container-picker .layer-black.show {
  display: block;
}
.sellPage .container-picker .icon {
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 0px;
  height: 80px;
  border-radius: 15px;
  z-index: 101;
  background: linear-gradient(106.9deg, rgba(254, 233, 146, 0.8) 20%, #faac55 100.09%);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 500px) {
  .sellPage .container-picker .icon {
    height: 60px;
  }
}
@media screen and (max-width: 500px) {
  .sellPage .container-picker .icon .mud-badge-root {
    margin: 15px 20px !important;
  }
}
.sellPage .container-picker .icon .mud-icon-root {
  color: white;
}
@media screen and (max-width: 500px) {
  .sellPage .container-picker .icon .mud-icon-root {
    width: 25px;
  }
}
.sellPage .container-picker .icon.show {
  top: 15px;
  left: 15px;
  height: auto !important;
  background: none;
  width: 25px;
}
.sellPage .container-picker .icon.show .mud-icon-root {
  color: white;
}
@media screen and (max-width: 500px) {
  .sellPage .container-picker .icon.show .mud-icon-root {
    width: 25px;
  }
}
.sellPage .container-picker .cards-picker {
  background: linear-gradient(90deg, rgba(88, 76, 76, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-top-left-radius: 15px;
  -webkit-backdrop-filter: blur(70px);
          backdrop-filter: blur(70px);
  height: 100%;
  width: 25px;
  transition: all 0.3s ease-in-out;
  transform: translateX(100%);
}
.sellPage .container-picker .cards-picker .title {
  width: 90%;
  align-self: end;
  right: -20px;
  top: -15px;
  position: relative;
}
.sellPage .container-picker .cards-picker .container-cards {
  overflow-y: scroll;
}
.sellPage .container-picker .cards-picker .container-cards #card-img {
  width: 120px;
  border-radius: 5px;
}
.sellPage .container-picker .cards-picker.show {
  transform: translateX(0);
  width: 440px;
}
@media screen and (max-width: 500px) {
  .sellPage .container-picker .cards-picker.show {
    width: 100%;
  }
}
.sellPage .filtered-card {
  width: 180px;
  margin-bottom: 15px;
  border-radius: 8px;
}
.sellPage .filtered-card img {
  width: 100%;
  border-radius: 8px;
}
.sellPage .filtered-card.selected {
  border: 2px solid #1890ff;
  box-shadow: 0px 4px 49px rgba(0, 7, 72, 0.12), inset 0px 0px 10px #1890ff;
}
.sellPage .btn-colissimo {
  border-radius: 15px;
  border: none;
  padding: 8px 13px;
  background: rgb(60, 114, 144);
  margin-bottom: 20px;
  transition: all ease 500ms;
}
.sellPage .btn-colissimo:hover {
  box-shadow: 0px 5px 17px -5px rgb(60, 114, 144);
}
.sellPage .card-custom .extension {
  width: 50px;
  font-size: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .sellPage .card-custom.intro-card {
    height: 450px;
  }
}
.sellPage .card-custom.disabled .text-white-important {
  color: white !important;
}
.sellPage .card-custom.disabled h2,
.sellPage .card-custom.disabled h2 + p,
.sellPage .card-custom.disabled div p,
.sellPage .card-custom.disabled img + p,
.sellPage .card-custom.disabled img {
  opacity: 0.6;
}
.sellPage .card-custom img {
  max-width: 230px;
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 767px) {
  .sellPage .card-custom img {
    max-width: 200px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sellPage .card-custom img {
    max-width: 150px;
  }
}
.sellPage .card-custom.card-selection #question-mark:hover::after {
  content: "Prix affiché sur la marketplace lors de la mise en vente !";
  position: absolute;
  bottom: 58px;
  right: 15px;
  padding: 10px;
  border-radius: 15px;
  font-size: 13px;
  background: black;
  width: 155px;
  height: 75px;
  transition: opacity 0.2s ease-in-out;
}
.sellPage .card-custom.card-selection .top-content-card img {
  width: 80px;
}
.sellPage .card-custom.card-selection .title-card {
  font-size: 16px;
}
.sellPage .card-custom.card-selection .extension {
  max-width: 60px;
}
.sellPage .card-custom.card-selection .informations .black-zone {
  padding: 4px 8px;
}
.sellPage .card-custom.card-selection .informations .black-zone p {
  font-size: 14px;
}
.sellPage .card-custom.card-selection input,
.sellPage .card-custom.card-selection select {
  margin-bottom: 8px;
  font-size: 14px;
  background: #151515;
  border-radius: 10px;
  padding: 4px 10px;
  border: 0;
  max-width: 125px;
}
.sellPage .card-custom.card-selection input:last-child,
.sellPage .card-custom.card-selection select:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 450px) {
  .sellPage .card-custom.card-selection .top-content-card img {
    width: 60px;
  }
  .sellPage .card-custom.card-selection .top-content-card + div {
    width: calc(100% - 100px);
  }
  .sellPage .card-custom.card-selection .extension {
    max-width: 40px;
  }
}
.sellPage .after-smooth {
  position: relative;
}
.sellPage .after-smooth:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1rem;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(45, 45, 45) 100%);
}
.sellPage .zone-selected-card {
  max-height: 400px;
  overflow-y: auto;
}
.sellPage .zone-selected-card-recap table {
  border-collapse: separate;
  border-spacing: 0 1em;
}
.sellPage .zone-selected-card-recap table thead th {
  width: 12.5%;
  padding: 8px;
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}
.sellPage .zone-selected-card-recap table tbody tr td {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
}
.sellPage .zone-selected-card-recap table tbody tr td:first-child {
  border-radius: 20px 0 0 20px;
}
.sellPage .zone-selected-card-recap table tbody tr td:last-child {
  border-radius: 0 20px 20px 0;
}
.sellPage .zone-selected-card-recap .top-content-card {
  width: 150px;
  height: 60px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.sellPage .zone-selected-card-recap .top-content-card .card-img-top {
  position: absolute;
  width: calc(100% + 60px);
  max-width: inherit;
  display: block;
  left: -30px;
  top: -50px;
  transition: all ease 500ms;
}
.sellPage .preview-dropdown #dropdown {
  position: relative;
  display: inline-block;
  padding: 0px;
  border-radius: 4px;
  cursor: pointer;
}
.sellPage .preview-dropdown #dropdown #selected {
  display: inline-block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
}
.sellPage .preview-dropdown #dropdown #options {
  display: none;
  position: absolute;
  top: calc(100% - 140px);
  left: 0;
  min-width: 100%;
  padding: 0;
  margin: -200px 0 0 0;
  list-style-type: none;
  background-color: #000000;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid grey;
  border-radius: 5px;
  z-index: 4;
}
.sellPage .preview-dropdown #dropdown #options li {
  padding: 3px;
  text-align: left;
}
.sellPage .preview-dropdown #dropdown #options li:hover {
  background: linear-gradient(to bottom, #77b0d0, #2da3de);
  color: #fff;
}
.sellPage .preview-dropdown #preview {
  bottom: 15px;
  left: 220px;
  height: auto;
  display: none;
  border-radius: 0px !important;
}
@media screen and (max-width: 450px) {
  .sellPage .preview-dropdown #preview {
    bottom: 60px;
    left: 30px;
  }
}

.profilPage .edit-image {
  right: 110px;
  border: 2px solid white;
  border-radius: 50px;
  padding: 5px;
  display: flex;
  bottom: 15px;
  background: #272727;
  cursor: pointer;
}
.profilPage .edit-image svg {
  margin-right: 0px !important;
}
.profilPage .default-img {
  width: 100%;
}
.profilPage .default-img img {
  width: 190px !important;
  position: relative;
}
.profilPage .profil-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 6px solid #F2AC2C;
  margin: 0 auto;
  display: flex;
  -o-object-fit: cover;
  object-fit: cover;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.profilPage .profil-img img {
  width: 160px !important;
  top: 25px;
  position: relative;
}
.profilPage .certification {
  width: 60px;
  height: 60px;
  bottom: 10px;
}
.profilPage .certification img {
  width: 25px;
}
.profilPage .annexe {
  height: 950px;
}
.profilPage .annexe img {
  width: 100%;
  filter: blur(3px);
  height: 90%;
}
.profilPage .transparent-panels {
  background: transparent;
  border: 2px solid grey;
}
.profilPage .col-6 {
  flex: 1 0 auto;
  width: 50%;
}

@keyframes fadeInFromSide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.soldePage .fade-in {
  animation-name: fadeInFromSide;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.soldePage .fade-in.fade-1 {
  animation-delay: 0.2s;
}
.soldePage .fade-in.fade-2 {
  animation-delay: 0.5s;
}
.soldePage .fade-in.fade-3 {
  animation-delay: 0.8s;
}
.soldePage .fade-in.fade-4 {
  animation-delay: 1.1s;
}
.soldePage .fade-in.fade-5 {
  animation-delay: 1.4s;
}
.soldePage .fade-in.fade-6 {
  animation-delay: 1.7s;
}
.soldePage .fade-in.fade-7 {
  animation-delay: 2s;
}
.soldePage .fade-in.fade-8 {
  animation-delay: 2.3s;
}
.soldePage .fade-in.fade-9 {
  animation-delay: 2.6s;
}
.soldePage .fade-in.fade-10 {
  animation-delay: 2.9s;
}
.soldePage .fade-in.fade-11 {
  animation-delay: 3.2s;
}
.soldePage .fade-in.fade-12 {
  animation-delay: 3.5s;
}
.soldePage .fade-in.fade-13 {
  animation-delay: 3.8s;
}
.soldePage .fade-in.fade-14 {
  animation-delay: 4.1s;
}
.soldePage .fade-in.fade-15 {
  animation-delay: 4.4s;
}
.soldePage .solde {
  display: flex;
  flex-direction: column;
}
.soldePage .solde .link-section {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 16px;
}
.soldePage .solde .link-section a {
  width: 200px;
}
.soldePage .annexe {
  height: 950px;
}
.soldePage .annexe img {
  width: 100%;
  filter: blur(3px);
  height: 90%;
}
.soldePage .items-container {
  color: #fff;
  background: #272727;
  background-clip: padding-box;
  border-radius: 70px;
  position: relative;
}
.soldePage .items-container::before {
  content: "";
  background: linear-gradient(140deg, #F8D33B, #F68C20);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1.5px;
  border-radius: inherit;
}
@media screen and (max-width: 576px) {
  .soldePage .items-container {
    height: 80px;
  }
}
.soldePage .items {
  background-color: transparent;
  border-radius: 70px;
  border: 1px solid rgba(217, 217, 217, 0.15);
}
.soldePage .items.round {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.soldePage .items-small {
  background-color: transparent;
  border-radius: 50px;
  border: 1px solid rgba(217, 217, 217, 0.15);
}
.soldePage .sub-indicators p {
  width: 125px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .soldePage .sub-indicators p {
    width: auto;
    font-size: 12px;
  }
}
.soldePage .card-table table {
  min-width: auto !important;
}
.soldePage .card-table table + div {
  min-width: auto !important;
}
.soldePage .card-table table + div nav {
  margin-top: 10px;
}
.soldePage .unavailable {
  position: relative;
}
.soldePage .unavailable::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 38, 38, 0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.deliveryPage .MR-Widget {
  width: auto !important;
}
.deliveryPage .MR-Widget input {
  color: #151515 !important;
}
.deliveryPage .MR-Widget .MRW-Content .MRW-Line {
  margin-left: 70px;
}
.deliveryPage .MR-Widget .MRW-Content .MRW-Results {
  display: flex;
  grid-gap: 10px;
  gap: 10px;
  flex-direction: row-reverse;
}
.deliveryPage .MR-Widget .MRW-Content .MRW-Results .MRW-Map {
  width: 100% !important;
}
.deliveryPage .MR-Widget .MRW-Content .MRW-Results .MRW-Map .leaflet-popup-content {
  width: 200px !important;
}
.deliveryPage .MR-Widget .MRW-Content .MRW-Results .MRW-Map .leaflet-popup-content .InfoWindow {
  width: 100% !important;
}
.deliveryPage .container-picker {
  position: fixed;
  top: 89px;
  right: 0;
  bottom: 0;
  width: auto;
  z-index: 100;
}
.deliveryPage .container-picker .layer-black {
  border: 3px solid #151515;
  z-index: 2;
  width: 101%;
  height: 110%;
  right: -10px;
  top: 80px;
  border-top-left-radius: 15px;
  display: none;
}
.deliveryPage .container-picker .layer-black.show {
  display: block;
}
.deliveryPage .container-picker .icon {
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 0px;
  height: 80px;
  border-radius: 15px;
  z-index: 101;
  background: linear-gradient(106.9deg, rgba(254, 233, 146, 0.8) 20%, #faac55 100.09%);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 500px) {
  .deliveryPage .container-picker .icon {
    height: 60px;
  }
}
@media screen and (max-width: 500px) {
  .deliveryPage .container-picker .icon .mud-badge-root {
    margin: 15px 20px !important;
  }
}
.deliveryPage .container-picker .icon .mud-icon-root {
  color: white;
}
@media screen and (max-width: 500px) {
  .deliveryPage .container-picker .icon .mud-icon-root {
    width: 25px;
  }
}
.deliveryPage .container-picker .icon.show {
  top: 15px;
  left: 15px;
  height: auto !important;
  background: none;
  width: 25px;
}
.deliveryPage .container-picker .icon.show .mud-icon-root {
  color: white;
}
@media screen and (max-width: 500px) {
  .deliveryPage .container-picker .icon.show .mud-icon-root {
    width: 25px;
  }
}
.deliveryPage .container-picker .cards-picker {
  background: linear-gradient(90deg, rgba(88, 76, 76, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-top-left-radius: 15px;
  -webkit-backdrop-filter: blur(70px);
          backdrop-filter: blur(70px);
  height: 100%;
  width: 25px;
  transition: all 0.3s ease-in-out;
  transform: translateX(100%);
}
.deliveryPage .container-picker .cards-picker .title {
  width: 90%;
  align-self: end;
  right: -20px;
  top: -15px;
  position: relative;
}
.deliveryPage .container-picker .cards-picker .container-cards {
  overflow-y: scroll;
}
.deliveryPage .container-picker .cards-picker .container-cards #card-img {
  width: 120px;
  border-radius: 5px;
}
.deliveryPage .container-picker .cards-picker.show {
  transform: translateX(0);
  width: 440px;
}
@media screen and (max-width: 500px) {
  .deliveryPage .container-picker .cards-picker.show {
    width: 100%;
  }
}
.deliveryPage #cardsPicker .note-container .static-note {
  border-radius: 999px;
  padding: 5px;
  display: flex;
  justify-content: center;
}
.deliveryPage #cardsPicker .note-container .static-note.Neuf {
  background: linear-gradient(to left, #faac55, #fee992);
}
.deliveryPage #cardsPicker .note-container .static-note.Excellent {
  background-color: #3737c4;
}
.deliveryPage #cardsPicker .note-container .static-note.Excellent span {
  color: white !important;
}
.deliveryPage #cardsPicker .note-container .static-note.Bon {
  background-color: #1a841a;
}
.deliveryPage #cardsPicker .note-container .static-note.Bon span {
  color: white !important;
}
.deliveryPage #cardsPicker .note-container .static-note.Occasion {
  background-color: grey;
}
.deliveryPage #cardsPicker .note-container .static-note .note {
  font-weight: 500;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.deliveryPage .grey-line {
  width: 100%;
  height: 2px;
  background-color: #6a6a6a;
}
.deliveryPage .btn-transparent-transparent {
  padding: 4px;
}
.deliveryPage #icon-suppr:hover::before {
  content: "Retirer la carte de la mise en vente";
  position: absolute;
  top: -60px;
  right: 10px;
  padding: 10px;
  border-radius: 15px;
  font-size: 13px;
  background: black;
  width: 155px;
  height: 60px;
  transition: opacity 0.2s ease-in-out;
}
.deliveryPage #icon-suppr img {
  width: 20px;
}
.deliveryPage .card-custom.card-product a {
  text-decoration: none;
}
.deliveryPage .container.secondary-content {
  height: 30px;
}
.deliveryPage .card-custom.selected-card {
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  min-width: 235px;
}
.deliveryPage .card-custom.selected-card .extension {
  width: 50px;
  font-size: 10px;
}
.deliveryPage .card-custom.selected-card .top-content-card {
  width: 66px;
  height: 43px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  margin-right: 8px;
}
.deliveryPage .card-custom.selected-card .top-content-card img {
  position: absolute;
  width: calc(100% + 14px);
  max-width: inherit;
  display: block;
  left: -7px;
  top: -10px;
  transition: all ease 500ms;
}
.deliveryPage .card-custom.selected-card .content-card {
  width: calc(100% - 70px);
}
.deliveryPage .card-custom.selected-card .content-card h5 {
  font-size: 1rem;
  max-width: 90px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.deliveryPage .card-custom.selected-card .content-card .ref {
  font-size: 9px;
  line-height: 1.2;
  color: #d9d9d9;
}
.deliveryPage .card-custom.selected-card input {
  font-size: 14px;
  background: #151515;
  border-radius: 10px;
  padding: 4px 10px;
  border: 0;
  max-width: 70px;
  max-height: 43px;
}
.deliveryPage #collapse-sell {
  max-width: 380px;
}
.deliveryPage label {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .deliveryPage #collapse-filter .col-lg-4 {
    width: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 991px) {
  .deliveryPage #collapse-filter .col-6 {
    width: calc(50% - 8px);
  }
}
.deliveryPage .display-elements.list > * .card-custom.card-product .content-card .container.secondary-content > div {
  display: flex !important;
}
.deliveryPage .display-elements.grid > * {
  flex: 0 0 auto;
}
@media screen and (max-width: 390px) {
  .deliveryPage .display-elements.grid > * {
    width: calc(100% - 20px) !important;
  }
}
@media screen and (min-width: 600px) {
  .deliveryPage .display-elements.grid > * {
    width: calc(50% - 8px);
  }
}
@media screen and (min-width: 900px) {
  .deliveryPage .display-elements.grid > * {
    width: calc(25% - 18px);
  }
}
@media screen and (min-width: 1400px) {
  .deliveryPage .display-elements.grid > * {
    width: calc(20% - 14px);
  }
}
.deliveryPage div[data-bs-toggle=collapse] {
  cursor: pointer;
}
.deliveryPage div[data-bs-toggle=collapse][aria-expanded=false] img {
  transform: rotate(0deg);
  transition: all ease 500ms;
}
.deliveryPage div[data-bs-toggle=collapse][aria-expanded=true] img {
  transition: all ease 500ms;
  transform: rotate(-180deg);
}
.deliveryPage .no-card h3,
.deliveryPage .no-card p,
.deliveryPage .no-card p a {
  color: #6a6a6a;
  transition: all ease 200ms;
}
.deliveryPage .no-card p a:hover {
  color: white;
}
@media screen and (min-width: 992px) {
  .deliveryPage #collapse-filter .col-lg-4 {
    width: auto;
  }
}
@media screen and (max-width: 375px) {
  .deliveryPage .lang {
    display: none !important;
  }
  .deliveryPage .note-main {
    display: none !important;
  }
}
.deliveryPage .relay {
  height: 300px;
  overflow-y: scroll;
  padding-right: 10px;
}
.deliveryPage .relay .hidden-list {
  position: absolute;
  width: calc(80% + 10px);
  height: calc(80% + 10px);
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
  border-radius: 15px;
  top: 50px;
  left: 45px;
  display: flex;
  align-items: center;
}
.deliveryPage .relay .noneSelected {
  background: #363636;
}
.deliveryPage .relay .noneSelected h6,
.deliveryPage .relay .noneSelected p {
  color: #6a6a6a !important;
}
.deliveryPage .relay .noneSelected button {
  background: #628f60;
}
.deliveryPage .relay .highligth {
  border: 2px solid #1890ff;
  box-shadow: 0px 4px 49px rgba(0, 7, 72, 0.12), inset 0px 0px 10px #1890ff;
}
.deliveryPage .relay .hide {
  display: none !important;
}
.deliveryPage .relay .show {
  display: flex !important;
  background-color: transparent;
  border: none;
  text-decoration: underline;
}
.deliveryPage .relay .relay-card {
  flex-direction: row;
  grid-gap: 20px;
  gap: 20px;
  transition: box-shadow ease 300ms;
}
.deliveryPage .relay .relay-card .relay-container {
  width: 40%;
}
.deliveryPage .relay .relay-card .map {
  background-color: grey;
  width: 70px;
  height: 60px;
  border-radius: 10px;
}
.deliveryPage .relay .relay-card h6 {
  font-size: 14px;
  max-width: 140px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.deliveryPage .relay .relay-card p {
  font-size: 12px;
  margin-bottom: 0px;
  max-width: 140px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.deliveryPage .relay .relay-card .btn-green {
  font-size: 12px;
  padding: 5px 12px;
}

@media screen and (max-width: 1024px) {
  .deliveryPage .global-container {
    display: block !important;
  }
}
@media screen and (max-width: 374px) {
  .deliveryPage .relay {
    padding-right: 0px !important;
  }
  .deliveryPage .relay .relay-card {
    grid-gap: 5px;
    gap: 5px;
  }
  .deliveryPage .relay .hidden-list {
    top: 0px;
    left: 0px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }
  .deliveryPage .map {
    display: none !important;
  }
}
.deliveryPageSelectedCards .note-container .static-note {
  border-radius: 999px;
  padding: 5px;
  display: flex;
  justify-content: center;
}
.deliveryPageSelectedCards .note-container .static-note.Neuf {
  background: linear-gradient(to left, #faac55, #fee992);
}
.deliveryPageSelectedCards .note-container .static-note.Excellent {
  background-color: #3737c4;
}
.deliveryPageSelectedCards .note-container .static-note.Excellent span {
  color: white !important;
}
.deliveryPageSelectedCards .note-container .static-note.Bon {
  background-color: #1a841a;
}
.deliveryPageSelectedCards .note-container .static-note.Bon span {
  color: white !important;
}
.deliveryPageSelectedCards .note-container .static-note.Occasion {
  background-color: grey;
}
.deliveryPageSelectedCards .note-container .static-note .note {
  font-weight: 500;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.deliveryPageSelectedCards .grey-line {
  width: 100%;
  height: 2px;
  background-color: #6a6a6a;
}
.deliveryPageSelectedCards .btn-transparent-transparent {
  padding: 4px;
}
.deliveryPageSelectedCards #icon-suppr:hover::before {
  content: "Retirer la carte de la mise en vente";
  position: absolute;
  top: -60px;
  right: 10px;
  padding: 10px;
  border-radius: 15px;
  font-size: 13px;
  background: black;
  width: 155px;
  height: 60px;
  transition: opacity 0.2s ease-in-out;
}
.deliveryPageSelectedCards #icon-suppr img {
  width: 20px;
}
.deliveryPageSelectedCards .shipment-container {
  background-color: #101010;
  border-radius: 10px;
  padding: 15px;
}
.deliveryPageSelectedCards .shipment-container p {
  font-size: 14px;
}
.deliveryPageSelectedCards .card-custom h3 {
  font-size: 25px;
}
.deliveryPageSelectedCards .card-custom.card-product a {
  text-decoration: none;
}
.deliveryPageSelectedCards .container.secondary-content {
  height: 30px;
}
.deliveryPageSelectedCards .card-custom.selected-card {
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 430px;
  min-width: 235px;
}
.deliveryPageSelectedCards .card-custom.selected-card .extension {
  width: 50px;
  font-size: 10px;
}
.deliveryPageSelectedCards .card-custom.selected-card .top-content-card {
  width: 66px;
  height: 43px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  margin-right: 8px;
}
.deliveryPageSelectedCards .card-custom.selected-card .top-content-card img {
  position: absolute;
  width: calc(100% + 14px);
  max-width: inherit;
  display: block;
  left: -7px;
  top: -10px;
  transition: all ease 500ms;
}
.deliveryPageSelectedCards .card-custom.selected-card .content-card h5 {
  font-size: 1rem;
  max-width: 90px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.deliveryPageSelectedCards .card-custom.selected-card .content-card .ref {
  font-size: 9px;
  line-height: 1.2;
  color: #d9d9d9;
}
.deliveryPageSelectedCards .card-custom.selected-card input {
  font-size: 14px;
  background: #151515;
  border-radius: 10px;
  padding: 4px 10px;
  border: 0;
  max-width: 70px;
  max-height: 43px;
}
.deliveryPageSelectedCards #collapse-sell {
  max-width: 380px;
}
.deliveryPageSelectedCards label {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .deliveryPageSelectedCards #collapse-filter .col-lg-4 {
    width: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 991px) {
  .deliveryPageSelectedCards #collapse-filter .col-6 {
    width: calc(50% - 8px);
  }
}
.deliveryPageSelectedCards .display-elements.list > * .card-custom.card-product .content-card .container.secondary-content > div {
  display: flex !important;
}
.deliveryPageSelectedCards .display-elements.grid > * {
  flex: 0 0 auto;
}
@media screen and (min-width: 600px) {
  .deliveryPageSelectedCards .display-elements.grid > * {
    width: calc(33.3333% - 12px);
  }
}
@media screen and (min-width: 800px) {
  .deliveryPageSelectedCards .display-elements.grid > * {
    width: calc(33.3333333333% - 11px);
  }
}
@media screen and (min-width: 1400px) {
  .deliveryPageSelectedCards .display-elements.grid > * {
    width: calc(25% - 12px);
  }
}
.deliveryPageSelectedCards div[data-bs-toggle=collapse] {
  cursor: pointer;
}
.deliveryPageSelectedCards div[data-bs-toggle=collapse][aria-expanded=false] img {
  transform: rotate(0deg);
  transition: all ease 500ms;
}
.deliveryPageSelectedCards div[data-bs-toggle=collapse][aria-expanded=true] img {
  transition: all ease 500ms;
  transform: rotate(-180deg);
}
.deliveryPageSelectedCards .no-card h3,
.deliveryPageSelectedCards .no-card p,
.deliveryPageSelectedCards .no-card p a {
  color: #6a6a6a;
  transition: all ease 200ms;
}
.deliveryPageSelectedCards .no-card p a:hover {
  color: white;
}
@media screen and (min-width: 992px) {
  .deliveryPageSelectedCards #collapse-filter .col-lg-4 {
    width: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 375px) {
  .deliveryPageSelectedCards .lang {
    display: none !important;
  }
  .deliveryPageSelectedCards .note-main {
    display: none !important;
  }
}
.deliveryPageSelectedCards .relay {
  background-color: #101010;
  border-radius: 10px;
  padding: 15px;
}
.deliveryPageSelectedCards .relay .relay-card {
  flex-direction: row;
  grid-gap: 20px;
  gap: 20px;
  transition: box-shadow ease 300ms;
}
.deliveryPageSelectedCards .relay .relay-card .relay-container {
  width: 40%;
}
.deliveryPageSelectedCards .relay .relay-card .map {
  width: 70px;
  height: 60px;
}
.deliveryPageSelectedCards .relay .relay-card h6 {
  font-size: 14px;
  max-width: 140px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.deliveryPageSelectedCards .relay .relay-card p {
  font-size: 12px;
  margin-bottom: 0px;
  max-width: 140px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.deliveryPageSelectedCards .relay .relay-card .btn-green {
  font-size: 12px;
  padding: 5px 12px;
}

@media screen and (max-width: 1024px) {
  .deliveryPage .global-container {
    display: block !important;
  }
}
@media screen and (max-width: 769px) {
  .container-shipment {
    display: block !important;
  }
}
@media screen and (max-width: 769px) {
  .deliveryPageSelectedCards .card-custom.selected-card {
    width: 340px;
  }
}
@media screen and (max-width: 374px) {
  .deliveryPage .relay {
    padding-right: 0px !important;
  }
  .deliveryPage .relay .relay-card {
    grid-gap: 5px;
    gap: 5px;
  }
  .deliveryPage .relay .hidden-list {
    top: 0px;
    left: 0px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }
  .deliveryPage .map {
    display: none !important;
  }
}
.deliveryPagePayment .note-container .static-note {
  border-radius: 999px;
  padding: 5px;
  display: flex;
  justify-content: center;
}
.deliveryPagePayment .note-container .static-note.Neuf {
  background: linear-gradient(to left, #faac55, #fee992);
}
.deliveryPagePayment .note-container .static-note.Excellent {
  background-color: #3737c4;
}
.deliveryPagePayment .note-container .static-note.Excellent span {
  color: white !important;
}
.deliveryPagePayment .note-container .static-note.Bon {
  background-color: #1a841a;
}
.deliveryPagePayment .note-container .static-note.Bon span {
  color: white !important;
}
.deliveryPagePayment .note-container .static-note.Occasion {
  background-color: grey;
}
.deliveryPagePayment .note-container .static-note .note {
  font-weight: 500;
  font-size: 12px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.deliveryPagePayment .grey-line {
  width: 100%;
  height: 2px;
  background-color: #6a6a6a;
}
.deliveryPagePayment .btn-transparent-transparent {
  padding: 4px;
}
.deliveryPagePayment .credit-input {
  width: 280px;
  align-items: center;
}
.deliveryPagePayment .credit-input h4 {
  margin-right: 20px;
  margin-bottom: 0px;
}
.deliveryPagePayment .credit-input input {
  width: 85px;
}
.deliveryPagePayment #icon-suppr:hover::before {
  content: "Retirer la carte de la mise en vente";
  position: absolute;
  top: -60px;
  right: 10px;
  padding: 10px;
  border-radius: 15px;
  font-size: 13px;
  background: black;
  width: 155px;
  height: 60px;
  transition: opacity 0.2s ease-in-out;
}
.deliveryPagePayment #icon-suppr img {
  width: 20px;
}
.deliveryPagePayment .shipment-container {
  background-color: #101010;
  border-radius: 10px;
  padding: 15px;
}
.deliveryPagePayment .shipment-container p {
  font-size: 14px;
}
.deliveryPagePayment .card-custom h3 {
  font-size: 25px;
}
.deliveryPagePayment .card-custom.card-product a {
  text-decoration: none;
}
.deliveryPagePayment .container.secondary-content {
  height: 30px;
}
.deliveryPagePayment .card-custom.selected-card {
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 500px;
  min-width: 235px;
}
.deliveryPagePayment .card-custom.selected-card .extension {
  width: 50px;
  font-size: 10px;
}
.deliveryPagePayment .card-custom.selected-card .top-content-card {
  width: 66px;
  height: 43px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  margin-right: 8px;
}
.deliveryPagePayment .card-custom.selected-card .top-content-card img {
  position: absolute;
  width: calc(100% + 14px);
  max-width: inherit;
  display: block;
  left: -7px;
  top: -10px;
  transition: all ease 500ms;
}
.deliveryPagePayment .card-custom.selected-card .content-card h5 {
  font-size: 1rem;
  max-width: 90px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.deliveryPagePayment .card-custom.selected-card .content-card .ref {
  font-size: 9px;
  line-height: 1.2;
  color: #d9d9d9;
}
.deliveryPagePayment .card-custom.selected-card input {
  font-size: 14px;
  background: #151515;
  border-radius: 10px;
  padding: 4px 10px;
  border: 0;
  max-width: 70px;
  max-height: 43px;
}
.deliveryPagePayment #collapse-sell {
  max-width: 380px;
}
.deliveryPagePayment label {
  font-size: 14px;
}
@media screen and (min-width: 992px) {
  .deliveryPagePayment #collapse-filter .col-lg-4 {
    width: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 991px) {
  .deliveryPagePayment #collapse-filter .col-6 {
    width: calc(50% - 8px);
  }
}
.deliveryPagePayment .display-elements.list > * .card-custom.card-product .content-card .container.secondary-content > div {
  display: flex !important;
}
.deliveryPagePayment .display-elements.grid > * {
  flex: 0 0 auto;
}
@media screen and (min-width: 600px) {
  .deliveryPagePayment .display-elements.grid > * {
    width: calc(33.3333% - 12px);
  }
}
@media screen and (min-width: 800px) {
  .deliveryPagePayment .display-elements.grid > * {
    width: calc(33.3333333333% - 11px);
  }
}
@media screen and (min-width: 1400px) {
  .deliveryPagePayment .display-elements.grid > * {
    width: calc(25% - 12px);
  }
}
.deliveryPagePayment div[data-bs-toggle=collapse] {
  cursor: pointer;
}
.deliveryPagePayment div[data-bs-toggle=collapse][aria-expanded=false] img {
  transform: rotate(0deg);
  transition: all ease 500ms;
}
.deliveryPagePayment div[data-bs-toggle=collapse][aria-expanded=true] img {
  transition: all ease 500ms;
  transform: rotate(-180deg);
}
.deliveryPagePayment .no-card h3,
.deliveryPagePayment .no-card p,
.deliveryPagePayment .no-card p a {
  color: #6a6a6a;
  transition: all ease 200ms;
}
.deliveryPagePayment .no-card p a:hover {
  color: white;
}
@media screen and (min-width: 992px) {
  .deliveryPagePayment #collapse-filter .col-lg-4 {
    width: calc(33.3333333333% - 12px);
  }
}
@media screen and (max-width: 375px) {
  .deliveryPagePayment .lang {
    display: none !important;
  }
  .deliveryPagePayment .note-main {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .deliveryPagePayment .deliveryPage .global-container {
    display: block !important;
  }
}
@media screen and (max-width: 769px) {
  .deliveryPagePayment .container-shipment {
    display: block !important;
  }
}
@media screen and (max-width: 769px) {
  .deliveryPagePayment .card-custom {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
@media screen and (max-width: 374px) {
  .deliveryPagePayment .credit-input {
    flex-wrap: wrap !important;
  }
  .deliveryPagePayment .card-custom.selected-card {
    width: 235px !important;
  }
}

.favPage img#imgFav {
  max-width: 36px;
  cursor: pointer;
}
.favPage img#imgFav:hover {
  transition: 0.2s ease-in-out;
  transform: scale(1.2);
}
.favPage .selection {
  max-width: 500px;
}
.favPage .selection .selection-child-container {
  border-bottom: 2px solid #686d6f;
  cursor: pointer;
  width: 50%;
  display: flex;
  justify-content: center;
}
.favPage .selection .selection-child-container.active {
  border-bottom: 2px solid #2cb9ff;
}

.offerGradingSelectionPage .card-grading-offer-page {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(244, 244, 244, 0.1) 100%);
  text-decoration: none;
  box-shadow: 0px 4px 49px rgba(0, 7, 72, 0.12);
  -webkit-backdrop-filter: blur(12.5px);
  backdrop-filter: blur(12.5px);
  border-radius: 20px;
  display: flex !important;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.cards-details .rarity {
  border-radius: 999px;
  background: radial-gradient(circle at center, #393939 10%, transparent 100%);
  display: flex;
  justify-content: center;
  width: 40px;
  height: 25px;
}
@media screen and (max-width: 768px) {
  .cards-details .big-screen .logo-list, .cards-details .big-screen .extension, .cards-details .big-screen .rarity, .cards-details .big-screen .lang, .cards-details .big-screen .time {
    display: none !important;
  }
}
@media screen and (max-width: 500px) {
  .cards-details .no-grid .top-content-card {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .cards-details .container-arrow-expand {
    display: none !important;
  }
  .cards-details .collapsed-element .logo-list, .cards-details .collapsed-element .extension, .cards-details .collapsed-element .rarity, .cards-details .collapsed-element .lang, .cards-details .collapsed-element .time {
    display: none !important;
  }
}
.cards-details .note-new {
  color: #ffcb57;
}
.cards-details .note-excellent {
  color: #3737c4;
}
.cards-details .note-good {
  color: #1a841a;
}
.cards-details .note-occasion {
  color: grey;
}

@media screen and (min-width: 375px) {
  .home-page .display-elements.grid > * {
    width: 240px !important;
  }
}
.home-page .swiper-button-prev {
  color: #ffffff;
}
@media screen and (max-width: 759px) {
  .home-page .swiper-button-prev {
    display: none;
  }
}
.home-page .swiper-button-next {
  color: #ffffff;
}
@media screen and (max-width: 759px) {
  .home-page .swiper-button-next {
    display: none;
  }
}
.home-page .add-to-cart {
  padding: 8px 10px !important;
  position: absolute;
  bottom: 18px;
  right: -13px;
}
.home-page .add-to-cart-no-fav {
  padding: 8px 10px !important;
  position: absolute;
  bottom: -10px;
  right: -13px;
}
.home-page .container-ads {
  background: linear-gradient(106.9deg, #fee992 0.09%, #faac55 100.09%);
  border-radius: 32px;
  padding: 7px;
}
@media screen and (max-width: 650px) {
  .home-page .img-media {
    display: none;
  }
}
.home-page .container-blog {
  background: linear-gradient(106.9deg, #fee992 0.09%, #faac55 100.09%);
  border-radius: 32px;
  padding: 7px;
}
.home-page .container-blog .image {
  width: 100%;
  height: 100%;
}
.home-page .container-blog .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .container-blog .image .text {
  z-index: 2;
  background: rgba(95, 95, 95, 0.6705882353);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  max-width: 75%;
  text-align: center;
}
.home-page .hero-header .search-container {
  height: 35px;
}
.home-page .hero-header .search-container #search {
  border-radius: 20px;
}
.home-page .hero-header .tcg-bloc {
  width: 250px;
  transition: transform 0.15s ease-in;
  height: 140px;
  cursor: pointer;
}
.home-page .hero-header .tcg-bloc:hover {
  transform: scale(1.05);
  opacity: 1;
}
.home-page .hero-header .tcg-bloc.disabled-event {
  pointer-events: none;
}
.home-page .hero-header .tcg-bloc img {
  opacity: 0.8;
  -o-object-fit: contain;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transition: opacity 0.15s ease-in;
}
.home-page .hero-header .tcg-bloc img:hover {
  opacity: 1;
}
.home-page .hero-header .tcg-bloc p {
  z-index: 2;
  margin-bottom: 0px;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  top: 55px;
  background: rgba(0, 0, 0, 0.5098039216);
}
.home-page .hero-header .tcg-bloc span {
  font-size: 14px;
}
.home-page .recently-see .mud-carousel {
  height: 500px;
}
.home-page .recently-see .arrow {
  cursor: pointer;
  background-color: #f2f2f2;
  border: none;
  border-radius: 50%;
  color: #333;
  font-size: 30px;
  z-index: 10;
  height: 30px;
}
.home-page .recently-see .mud-icon-size-medium {
  font-size: 2rem;
}
.home-page .recently-see .arrow:hover {
  background-color: #ddd;
  color: #000;
}
.home-page .recently-see .left-arrow {
  position: absolute;
  left: 0;
  top: 50%;
}
.home-page .recently-see .right-arrow {
  position: absolute;
  right: 0;
  top: 50%;
}
.home-page .bloc-annonce {
  background-color: #111111;
  border-radius: 25px !important;
  height: 350px;
}
@media screen and (max-width: 650px) {
  .home-page .bloc-annonce {
    height: auto;
  }
}
.home-page .bloc-annonce .text h2 {
  font-size: 45px;
}
@media screen and (max-width: 650px) {
  .home-page .bloc-annonce .text h2 {
    font-size: 25px;
  }
}
.home-page .bloc-annonce .text p {
  font-size: 35px;
  font-weight: 600;
}
@media screen and (max-width: 650px) {
  .home-page .bloc-annonce .text p {
    font-size: 25px;
  }
}
.home-page .bloc-annonce .btn-orange {
  position: absolute;
  bottom: 30px;
  left: 46%;
}
@media screen and (max-width: 992px) {
  .home-page .bloc-annonce .btn-orange {
    position: static;
    position: initial;
  }
}
.home-page .bloc-annonce .image {
  width: 500px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 992px) {
  .home-page .bloc-annonce .image {
    display: none;
  }
}
.home-page .bloc-annonce .image img {
  position: absolute;
  width: 100%;
  top: 0;
}
.home-page .container-title {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 20px;
  gap: 20px; /* Ajustez l'espacement initial si nécessaire */
  position: relative;
  width: 100%;
  height: 280px;
}
@keyframes drawAndFadeStroke {
  0% {
    stroke-dashoffset: 1000; /* Commence avec le contour complet caché */
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0; /* Fin du dessin du contour */
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0; /* Maintient le contour dessiné */
    opacity: 0; /* Fait disparaître le contour */
  }
}
@keyframes fadeInFill {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.home-page .container-title .svg-elem-stroke {
  stroke-dasharray: 1000;
  animation: drawAndFadeStroke 2s ease-in-out forwards;
}
.home-page .container-title .svg-elem-fill {
  opacity: 0;
  animation: fadeInFill 1s ease-in-out 0.8s forwards;
}
.home-page .container-title .svg-container {
  animation: moveApart 1s ease-out forwards;
  animation-delay: 1s;
}
.home-page .container-title #svg-left {
  animation-name: moveLeft;
  position: absolute;
  left: calc(50% - 100px);
  bottom: 0;
}
.home-page .container-title #svg-right {
  animation-name: moveRight;
  position: absolute;
  right: calc(50% - 100px);
  top: 0;
}
.home-page .container-title .text-container {
  opacity: 0;
  animation: fadeInText 1s ease-out forwards;
  animation-delay: 2s;
}
@keyframes moveLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-250%);
  }
}
@keyframes moveRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(250%);
  }
}
@keyframes fadeInText {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  @keyframes moveLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-250%);
    }
  }
  @keyframes moveRight {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(250%);
    }
  }
}
@media screen and (max-width: 1065px) {
  .home-page .container-title {
    height: 150px;
  }
  .home-page .container-title #svg-left {
    left: calc(50% - 60px);
  }
  .home-page .container-title #svg-left svg {
    height: 150px;
  }
  .home-page .container-title #svg-right {
    right: calc(50% - 60px);
  }
  .home-page .container-title #svg-right svg {
    height: 150px;
  }
  @keyframes moveLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-300%);
    }
  }
  @keyframes moveRight {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(300%);
    }
  }
}
@media screen and (max-width: 768px) {
  .home-page .container-title {
    height: 175px;
  }
  .home-page .container-title #svg-left {
    left: calc(50% - 60px);
  }
  .home-page .container-title #svg-left svg {
    height: 150px;
  }
  .home-page .container-title #svg-right {
    right: calc(50% - 60px);
  }
  .home-page .container-title #svg-right svg {
    height: 150px;
  }
  @keyframes moveLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-250%);
    }
  }
  @keyframes moveRight {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(250%);
    }
  }
  .home-page .container-title .text-container {
    width: 60%;
  }
}
@media screen and (max-width: 600px) {
  .home-page .container-title {
    height: 120px;
  }
  .home-page .container-title #svg-left {
    left: calc(50% - 42px);
  }
  .home-page .container-title #svg-left svg {
    height: 100px;
  }
  .home-page .container-title #svg-right {
    right: calc(50% - 42px);
  }
  .home-page .container-title #svg-right svg {
    height: 100px;
  }
  @keyframes moveLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-250%);
    }
  }
  @keyframes moveRight {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(250%);
    }
  }
}
@media screen and (max-width: 425px) {
  .home-page .container-title {
    height: 120px;
  }
  .home-page .container-title .text-container h1 {
    font-size: 20px;
  }
  .home-page .container-title .text-container p {
    font-size: 14px;
  }
  .home-page .container-title #svg-left {
    left: calc(50% - 42px);
  }
  .home-page .container-title #svg-left svg {
    height: 100px;
  }
  .home-page .container-title #svg-right {
    right: calc(50% - 42px);
  }
  .home-page .container-title #svg-right svg {
    height: 100px;
  }
  @keyframes moveLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }
  @keyframes moveRight {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(200%);
    }
  }
  .home-page .container-title .text-container {
    width: 50%;
  }
}
@media screen and (max-width: 375px) {
  @keyframes moveLeft {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-150%);
    }
  }
  @keyframes moveRight {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(150%);
    }
  }
  .home-page .container-title .text-container {
    width: 50%;
  }
}

.grading-cardselection .display-elements.grid .top-content-card .note-container {
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.grading-cardselection .display-elements.grid .top-content-card .note-container .static-note {
  padding: 2px !important;
}