* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

@font-face {
    font-family: "Nimbus Sans L";
    src: url("../fonts/nimbus-sans-l/NimbusSanL-Regu-5zEaQ89.ttf");
}

:root {
    --color-primary: #F4F2EC;
    --color-secondary: #DADBD6;
    --red: #7B0000;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

body {
    font-family: "Nimbus San L", sans-serif;
    line-height: 24px;
    margin-top: 165px;
    background-color: var(--color-primary);
}

.body--no-margin-top {
    margin-top: unset;
}

.container {
    width: 80%;
    max-width: 1300px;
    margin: auto;
}

.container--medium {
    max-width: 1150px;
}

.container--small {
    max-width: 1000px;
}

.container--login {
    max-width: 500px;
}

.container--registration {
    max-width: 750px;
}

a {
    text-decoration: unset;
    color: inherit;
    cursor: pointer;
}

label {
    cursor: pointer;
}

input {
    background-color: transparent;
    border-style: none;
    padding: 10px 0;
    outline: none;
}

input::placeholder {
    opacity: 60%;
    color: black;
}

input[type="radio"] {
    cursor: pointer;
    outline: none;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 5px;
    border: 2px solid black;
    accent-color: var(--color-primary);
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    margin: unset;
    outline: none;
    padding: unset;
}

input[type="checkbox"]:checked {
    background-color: black;
    background-image: url("../images/icons/check-white-nCF98X2.svg");
    background-size: 15px;
    background-repeat: no-repeat;
    outline: none;
}

select {
    -webkit-appearance: none;
    appearance: none;
    color: black;
    background-image: url("../images/icons/chevron-down-H5vsKkC.svg");
    background-repeat: no-repeat;
    background-position: 100% center;
    background-color: transparent;
    font-size: inherit;
    border-style: none;
    font-family: inherit;
    width: 100%;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
    padding: 10px 0;
    outline: none;
}

.select--black {
    color: black;
}

button {
    all: unset;
    box-sizing: border-box;
    text-align: revert;
    cursor: pointer;
}

h1 {
    font-size: 3.5rem;
    font-weight: unset;
    line-height: 4.5rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: unset;
    line-height: 64px;
}

.h2 {
    font-size: 2.2rem;
    line-height: 40px;
}

h3 {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: unset;
}

/*@HEADER*/

header {
    background-color: var(--color-primary);
    color: black;
    padding: 45px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    transition: background-color 0.4s ease, color 0.4s ease, padding 0.4s ease;
}

.header__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__left {
    display: flex;
    gap: 72px;
}

.base__logo {
    max-width: 213px;
    width: 100%;
}

.base__logo--auctions-new {
    padding: 45px 0;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__profile-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__profile-icon {
    width: 30px;
}

.header__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.header__link img:not(.header__profile-icon) {
    width: 7px;
}

.header__mobile-toggle {
    display: none;
}

.header__mobile-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}

/*@FOOTER*/

.divider {
    border-top: 1px solid black;
}

.divider--grey {
    border-color: var(--color-secondary);
}

.divider--contact {
    margin: 14px 0;
}

footer {
    padding: 64px 0;
    background-color: white;
}

.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 44px;
    border-bottom: 1px solid black;
}

.footer__nav {
    display: flex;
    gap: 13px;
    margin: 50px 0 24px;
    font-size: 0.9rem
}

.footer__logos {
    display: flex;
    gap: 8px;
}

.footer__logos img {
    width: 24px;
}

.footer__bottom {
    padding-top: 44px;
    display: flex;
    font-size: 0.8rem;
}

.footer__glueglue {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.6rem;
    margin: 0 40px 0 30px;
}

.footer__glueglue img {
    width: 80px;
    margin-right: 20px;
}

/*@HOME*/

.hero {
    position: relative;
    height: 900px;
}

.hero__video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(244,242,236,0.5);
}

.hero__content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1000;
    padding: 200px 0;
}

.subtitle {
    margin: 24px 0 50px;
    width: 100%;
    max-width: 522px;
}

.subtitle--wide {
    margin: 24px 0 50px;
    width: 100%;
    max-width: 890px;
}

.feature {
    display: flex;
    margin-top: 200px;
    margin-bottom: 200px;
    justify-content: space-between;
}

.feature--primary {
    background-color: var(--color-primary);
    padding: 113px 0 93px 0;
    margin: unset;
}

.feature--secondary {
    background-color: var(--color-secondary);
    padding: 113px 0 93px 0;
    margin: unset;
}

.feature--image {
    gap: 46px;
    justify-content: unset;
}

.feature--right {
    flex-direction: row-reverse;
}

.feature__content {
    width: 65%;
}

.feature__content--right {
    text-align: right;
    width: unset;
}

.feature__content--image {
    width: 40%;
}

.feature__content--image-2 {
    width: 35%;
}

.feature__title--right {
    text-align: right;
}

.feature__bottom {
    display: flex;
    gap: 90px;
    margin-top: 60px;
}

.feature__bottom div {
    flex: 1;
}

.feature__bottom p {
    margin-top: 10px;
}

.feature__image {
    max-width: 635px;
    width: 100%;
}

.feature__image--2 {
    max-width: 390px;
}

.feature__image--3 {
    max-width: 507px;
}

.feature__key-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: -26px 0 56px 0;
}

.explore {
    background-color: var(--color-primary);
    padding: 113px 0 93px 0;
}

.explore__carousel {
    margin-top: 68px;
    display: flex;
    padding: 0 10%;
    overflow-x: scroll;
    scrollbar-width: none;
}

.explore__carousel::-webkit-scrollbar {
    display: none;
}

.faq {
    margin: 32px auto 62px auto;
}

.faq__body {
    margin-top: -40px;
}

.faq__item {
    border-bottom: 1px solid black;
    padding: 40px 0;
}

.faq__question {
    font-size: 2rem;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq__question img {
    transition: transform .4s ease-in-out;
}

.faq__answer {
    display: none;
    padding-top: 24px;
    padding-right: 25px;
}

/*@MEMBERSHIP*/

.membership {
    margin-bottom: 50px;
}

.membership__image {
    width: 100%;
}

.membership__strip {
    text-align: center;
    margin: 30px 0;
}

.membership__cards {
    display: flex;
    gap: 32px;
}

.membership__card {
    flex: 1;
    padding: 24px 24px 5px 24px;
    border: 1px solid black;
}

.membership__card-top {
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.membership__card-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.membership__card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
    height: 260px;
}

.membership__card-features--profile {
    height: unset;
}

.membership__card-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.membership__card-feature img {
    width: 24px;
}

.membership__card-bottom {
    margin-top: 60px;
}

/*@ABOUT US*/

.about-us__section {
    margin-bottom: 80px;
}

.about-us__section p, .about-us__section ul {
    margin-top: 26px;
    padding-left: 0;
    list-style-position: inside;
}

/*@HOW WORKS*/

.how-works__content {
    margin-bottom: 200px;
    margin-top: 100px;
}

.how-works__switch {
    display: flex;
    width: 100%;
    justify-content: center;
}

.how-works__steps {
    margin-top: 80px;
}

.how-works__row {
    display: flex;
    margin-bottom: 40px;
    gap: 30px;
}

.how-works__step {
    flex: 1;
}

.how-works__step h2 {
    margin-bottom: 16px;
}

/*PRIVATE SALES*/

.private-sales__body {
    display: flex;
    gap: 40px;
    margin: 80px 0;
}

.private-sales__empty-state {
    max-width: 400px;
    text-align: center;
    margin: 80px auto;
}

/*@CONTACT US*/

.contact {
    padding-bottom: 50px;
}

.contact__form {
    border: 1px solid black;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 50px;
}

.contact__form-row, .auctions-new__form-row, .profile__form-row, .auctions-progress__form-row {
    display: flex;
    gap: 48px;
}

.auctions-progress__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact__form-row div, .auctions-new__form-row div, .profile__form-row div, .auctions-progress__form-row div {
    /*flex: 1;*/
    gap: 17px;
    width: 100%;
}

.auctions-new__form-row div .error-message, .profile__form-row div .error-message, .contact__form-row div .error-message, .auctions-progress__form-row div .error-message {
    margin-top: 17px;
}


/*@AUCTIONS*/

.auctions__top {
    display: flex;
    justify-content: space-between;
}

.auctions__search {
    display: flex;
    align-items: center;
    border-bottom: 1px solid black;
    margin-top: 48px;
    padding-bottom: 8px;
    gap: 12px;
}

.auctions__search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.auctions__search button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.auctions__filters {
    margin-top: 32px;
}

.auctions__filters-results {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.auctions__filters-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.auctions__filters-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-dropdown {
    position: relative;
}

.filter-dropdown__trigger {
    cursor: pointer;
    background: transparent;
    border: 1px solid black;
    color: black;
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    letter-spacing: 0.02em;
    font-family: inherit;
    font-size: 1rem;
}

.filter-dropdown__trigger img {
    width: 14px;
    transition: transform 0.2s;
}

.filter-dropdown--active .filter-dropdown__trigger {
    background: black;
    color: white;
}

.filter-dropdown--active .filter-dropdown__trigger img {
    filter: invert(1);
}

.filter-dropdown--open .filter-dropdown__trigger img {
    transform: rotate(180deg);
}

.filter-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--color-primary, #f5f5f0);
    border: 1px solid black;
    border-radius: 10px;
    padding: 8px 0;
    min-width: 180px;
    z-index: 9999;
}

.filter-dropdown--open .filter-dropdown__menu {
    display: block;
}

.filter-dropdown__option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-dropdown__option:hover {
    background: var(--color-secondary, #f5f5f0);
}

.filter-dropdown__option input {
    cursor: pointer;
}

.filter-dropdown__search {
    padding: 12px 16px;
    border-bottom: 1px solid black;
}

.filter-dropdown__search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    font-family: inherit;
    color: black;
}

.filter-dropdown__search-input::placeholder {
    color: #999;
}

.filter-dropdown__options {
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: black transparent;
}

.filter-dropdown__options::-webkit-scrollbar {
    width: 4px;
}

.filter-dropdown__options::-webkit-scrollbar-track {
    background: transparent;
}

.filter-dropdown__options::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 4px;
}

.auctions__active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border: none;
    border-radius: 6px;
    background: var(--color-secondary);
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    color: black;
}

.filter-chip__remove {
    width: 14px;
    height: 14px;
    display: flex;
}

.auctions__clear-filters {
    font-size: 0.9rem;
    color: black;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 8px;
}

.filter-dropdown__footer {
    padding: 10px 12px;
    border-top: 1px solid black;
}

.filter-dropdown__apply {
    width: 100%;
    padding: 10px;
    border: 1px solid black;
    border-radius: 32px;
    background: transparent;
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    color: black;
}

.auctions__grid {
    display: grid;
    grid-template-columns: auto auto auto;
    margin: 68px 0;
}

/*@AUCTIONS NEW BASE*/

.auctions-new-base__top {
    display: flex;
    align-items: center;
    gap: 16px;
    text-transform: uppercase;
}

.auctions-new-base__progress {
    display: flex;
    align-items: flex-start;
    margin: 50px auto;
}

.auctions-new-base__progress-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    width: 40px;
    overflow: visible;
}

.auctions-new-base__progress-step > div:last-child {
    white-space: nowrap;
}

.auctions-new-base__progress-line {
    flex: 1;
    height: 2px;
    background-color: grey;
    margin-top: 20px;
    z-index: 0;
}

.auctions-new-base__progress-line--active {
    background-color: black;
}

.auctions-new-base__progress-label {
    color: grey;
}

.auctions-new-base__progress-label--active {
    color: black;
}

.auctions-progress-bar__top {
    display: flex;
    align-items: center;
    gap: 16px;
    text-transform: uppercase;
}

.auctions-progress-bar__steps {
    display: flex;
    align-items: flex-start;
    margin: 50px auto;
}

.auctions-progress-bar__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    width: 40px;
    overflow: visible;
}

.auctions-progress-bar__step > div:last-child {
    white-space: nowrap;
}

.auctions-progress-bar__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F4F2EC;
    border: 2px solid #777776;
    color: #777776;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.auctions-progress-bar__number--current {
    border-color: black;
    color: black;
}

.auctions-progress-bar__line {
    flex: 1;
    height: 2px;
    background-color: grey;
    margin-top: 20px;
    z-index: 0;
}

.auctions-progress-bar__line--active {
    background-color: black;
}

.auctions-progress-bar__label {
    color: grey;
}

.auctions-progress-bar__label--active {
    color: black;
}

.auctions-new-base__footer {
    border-top: 1px solid black;
}

.auctions-new-base__bottom {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    padding: 32px 0;
}

.auctions-new__section, .auctions-progress__section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 80px;
}

.auctions-new__form-top {
    display: flex;
    justify-content: space-between;
}

.auctions-new__form-top--gap {
    justify-content: unset;
    align-items: flex-end;
    gap: 16px;
}

/*@AUCTIONS NEW*/

.auctions-new__label-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.auctions-new__prestige-feature {
    display: flex;
    gap: 16px;
    font-size: 0.7rem;
}

.auctions-new__prestige-feature img {
    width: 16px;
}

.auctions-new__form-row--half {
    width: calc(50% - 24px);
}

.toggle {
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background-color: var(--color-primary);
    border: 1px solid black;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s;
}


.toggle::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: black;
    top: 3px;
    left: 3px;
    transition: transform 0.2s, background-color 0.2s;
}

.toggle--active {
    background-color: black;
    border-color: black;
}

.toggle--active::after {
    background-color: var(--color-primary);
    transform: translateX(20px);
}

input:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.profile__label:has(input:disabled),
.profile__label:has(.country__chips) {
    border-bottom-color: rgba(0, 0, 0, 0.3);
}


.input-price {
    background-image: url("../images/icons/euro-u0bsinK.svg");
    background-repeat: no-repeat;
    background-position: 0;
    padding-left: 30px;
}

.auctions-new__hero {
    display: flex;
    justify-content: space-between;
    gap: 200px;
    margin: 80px auto;
}

.auctions-new__hero-item {
    padding-top: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-secondary);
}

.auctions-new__hero-item:first-child {
    padding-top: unset;
}

.auctions-new__hero-item:last-child {
    border: unset;
    padding-bottom: unset;
}

.auctions-new__hero-item p {
    margin-top: 8px;
    margin-bottom: 20px;
}

.auctions-new-overview, .auctions-new-products {
    margin-bottom: 80px;
}

.auctions-new-details {
    margin-bottom: 50px;
}

.auctions-new-products__buttons {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.auctions-new-products-details {
    margin: 50px auto;
}

.products-table__title {
    display: flex;
    gap: 24px;
    align-items: center;
}

.products-table__title--margin {
    margin: 32px 0 16px 0;

}

.products-table__title-item {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.products-table__wrapper {
    border: 1px solid black;
    padding: 24px;
}

.products-table__wrapper--auctions-details {
    margin-bottom: 50px;
}

.products-table__scroll {
    overflow-x: scroll;
    overflow-y: auto;
    max-height: 750px;
    overscroll-behavior: none;
    scrollbar-width: thin;
    scrollbar-color: black var(--color-primary);
    scrollbar-gutter: stable;
    padding-bottom: 24px;
    padding-right: 24px;
}

.products-table__scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.products-table__scroll::-webkit-scrollbar-track {
    background: var(--color-primary);
}

.products-table__scroll::-webkit-scrollbar-thumb {
    background: black;
}

.products-table__scroll::-webkit-scrollbar-corner {
    background: var(--color-primary);
}

#products-table_wrapper {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

#products-table {
    border-collapse: collapse;
    width: auto !important;
    min-width: 100%;
}

#products-table thead th {
    background: var(--color-primary);
    border-right: none;
    border-left: none;
    box-shadow: 0 1px 0 0 black;
    padding: 16px 20px;
    white-space: nowrap;
    font-weight: normal;
    text-align: left !important;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1;
}

#products-table thead th.sorting,
#products-table thead th.sorting_asc,
#products-table thead th.sorting_desc {
    background-image: none;
}

#products-table tbody tr {
    background: var(--color-primary);
    height: 93px;
}

#products-table tbody tr td {
    border-bottom: 1px solid var(--color-secondary);
    border-right: none;
    border-left: none;
    padding: 16px 20px;
    white-space: nowrap;
    text-align: left !important;
}

#products-table thead th:first-child,
#products-table tbody tr td:first-child:not(.dataTables_empty) {
    text-align: center !important;
}

#products-table tbody tr:last-child td {
    border-bottom: none;
}

#products-table tbody tr:hover td {
    background: transparent;
}

.products-table__delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.auctions-new-products__bottom {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.auctions-new-products__retail {
    font-size: 2rem;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
}

.auctions-new-review {
    margin-bottom: 50px;
}

.auctions-new__label--disabled {
    opacity: 0.6;
}

.auctions-new-review .auctions-new__label {
    color: black;
    border-bottom-color: rgba(0, 0, 0, 0.5);
}

.auctions-new-review input:disabled,
.auctions-new-review select:disabled,
.auctions-new-review textarea:disabled {
    opacity: 0.5;
    cursor: default;
}

.auctions-new-review .toggle[disabled] {
    pointer-events: none;
}

/* @SWAL OVERRIDES */

.swal2-container {
    z-index: 40000 !important;
}

/* @LIGHTBOX OVERRIDES */

#lightboxOverlay {
    z-index: 49999 !important;
}

#lightbox {
    z-index: 50000 !important;
}

#lightbox .lb-closeContainer {
    display: none !important;
}

/*@AUCTIONS DETAILS*/

.auctions-details__top {
    display: flex;
    align-items: center;
    gap: 16px;
    text-transform: uppercase;
}

.auctions-details__top-row {
    display: flex;
    justify-content: space-between;
}

.auctions-details__gallery {
    margin-top: 48px;
}

.auctions-details__gallery-main {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
}

.auctions-details__gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.auctions-details__gallery-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.auctions-details__gallery-thumb {
    width: 127px;
    height: 66px;
    padding: 0;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.auctions-details__gallery-thumb--active {
    border-color: white;
}

.auctions-details__gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.auctions-details__body {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.auctions-details__left, .auctions-details__right {
    flex: 1;
    flex-shrink: 0;
}

.auctions-details__block {
    border: 1px solid black;
    padding: 24px;
    margin: 24px 0;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auctions-details__block--bids-history {
    margin: 0 0 50px 0;
    max-height: 600px;
    overflow-y: auto;
}

.auctions-details__chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.auctions-details__chips .chip span {
    text-transform: uppercase;
}

.auctions-details__retails {
    display: flex;
    gap: 40px;
}

.auctions-details__retails span {
    font-weight: bold;
}

.auction-details__banner {
    padding: 16px 5%;
    position: sticky;
    z-index: 30000;
    bottom: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 12px;
    background-color: var(--color-primary);
    border-top: 1px solid black;
}

.auctions-details__bids {
    display: flex;
    flex-direction: column;
}

.auctions-details__bids-top {
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 20px;
    display: flex;
    font-size: 1.1rem;
    justify-content: space-between;
    margin-bottom: 5px;
}

.auctions-details__bid {
    border-bottom: 1px solid var(--color-secondary);
    padding: 16px 0;
}

.auctions-details__bid:last-child {
    border-bottom: unset;
}

.auctions-details__bid-flex {
    display: flex;
    font-size: 1.1rem;
    justify-content: space-between;
    margin-bottom: 5px;
}

.auctions-details__bid-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auctions-details__remaining, .auctions-details__current-bid {
    display: flex;
    flex-direction: column;
}

.auctions-details__current-bid {
    text-align: right;
}

.auctions-details__msrp {
    text-transform: uppercase;
    text-align: right;
    margin: 15px 0;
    font-weight: 300;
    letter-spacing: 10%;
}

.auction-details__bids-history {
    margin-top: 50px;
    display: flex;
    gap: 50px;
}

.auction-details__bids-history div {
    flex: 1;
}

/*@USER PROFILE*/

.profile-header {
    margin-bottom: 50px;
}

.profile-header__buttons {
    display: flex;
    width: 100%;
}

.profile-header__buttons .button {
    flex: 1;
}

.profile {
    margin-bottom: 50px;
}

.profile__empty-state {
    text-align: center;
    width: 30%;
    margin: 150px auto;
}

.profile__empty-state p {
    margin: 16px 0 40px 0;
}

.profile__membership {
    width: 40%;
}

.profile__membership h2 {
    margin-bottom: 30px;
}

.profile__membership .button {
    margin-top: 36px;
}

.profile-card {
    max-width: 60%;
    margin: auto;
    padding: 60px 0;
}

.profile-card__label {
    margin-bottom: 16px;
}

.profile-card__box {
    border: 1px solid #000;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.profile-card__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-card__type {
    font-size: 1rem;
    font-weight: 500;
}

.profile-card__number {
    margin-top: 10px;
    font-size: 2.3rem;
}

.profile-card__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
}

.profile-card__empty h1 {
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0;
}

.profile-card__empty > p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.profile-card__chips {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*AUCTIONS PROGRESS*/

.auctions-progress {
    margin-bottom: 70px;
}

.auctions-progress h1 {
    text-transform: uppercase;
}

.auctions-progress__subtitle {
    margin: 30px 0;
}

.auctions-progress__dispute {
    margin-bottom: 40px;
}

.auctions-progress__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.auctions-progress__download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auctions-progress__field {
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    padding: 10px 14px;
    gap: 10px;
}

.auctions-progress__field-label {
    white-space: nowrap;
}

.auctions-progress__field-file {
    display: flex;
    align-items: center;
    gap: 8px;
}

.auctions-progress__field-value {
    font-size: 1.375rem;
    font-style: italic;
}

.auctions-progress__field-file a {
    display: flex;
}

/*@AUTHENTICATION*/

.authentication {
    margin-top: -165px;
    padding: 6% 0;
}

.authentication__logo {
    display: block;
    margin: 0 auto 100px auto;
}

.authentication__login-h1 {
    margin-bottom: 32px;
}

.authentication__h3 {
    margin: 24px 0;
}

.authentication__form, .profile__form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 80px auto 40px auto;
}

.authentication__form#registration-form {
    margin: 0 auto 40px auto;
}

.authentication__form h1 {
    margin-top: 80px;
}

.authentication__label, .auctions-new__label, .profile__label {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid black;
    gap: 20px;
    padding-bottom: 10px;
}


.auctions-new-review .auctions-new__label--no-border,
.auctions-new__label--no-border,
.profile__label--no-border {
    border-bottom: none;
    padding-bottom: 0;
}

.authentication__label--checkbox, .auctions-new__label--checkbox {
    flex-direction: unset;
    align-items: center;
    border-bottom: unset;
    gap: 12px;
}


.authentication .label--password,
.profile .label--password {
    position: relative;
}

.authentication .label--password .password-visibility-toggle,
.profile .label--password .password-visibility-toggle {
    position: absolute;
    right: 0;
    bottom: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.custom-upload {
    border: 1px solid black;
    padding: 50px 0 30px 0;
    box-sizing: border-box;
    background-image: url("../images/icons/upload-Ac47hw1.svg");
    background-repeat: no-repeat;
    background-position: center 20px;
    cursor: pointer;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 7px;
}

.custom-upload--has-file {
    background-position: left 12px center;
    flex-direction: unset;
    align-items: start;
    border-radius: 6px;
    padding: 12px 12px 12px 48px;
    justify-content: space-between;
}

.custom-upload__span {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

.custom-upload--has-file span {
    position: unset;
    transform: unset;
}

.authentication__policy {
    width: 90%;
    margin-bottom: 26px;
}

.authentication__policy ul {
    margin: 26px 0;
    list-style-position: inside;
}

.authentication-thank-you {
    display: flex;
    gap: 48px;
}

.authentication-thank-you img {
    width: 100%;
    max-width: 303px;
}

.authentication-thank-you div {
    place-self: flex-end;
}

/*@CARD AUCTION*/

.card-auction {
    width: 376px;
    padding: 0 16px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.card-auction__divider {
    border-right: 1px solid black;
}

.card-auction__divider:last-child {
    border-right: none;
}

.card-auction__image {
    height: 229px;
    background-size: cover;
    background-position: center;
    background-image: url("../images/card-auction-placeholder-O60ochK.webp");
    background-repeat: no-repeat;
    position: relative;
}

.card-auction__chips {
    position: absolute;
    top: 5%;
    left: 5%;
    display: flex;
    gap: 15px;
}

.card-auction__content {
    padding: 16px;
}

.card-auction__title {
    font-weight: bold;
    margin-bottom: 24px;
}

.card-auction__retail {
    display: flex;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px solid black;
}

.card-auction__money {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
}

.card-auction__money-right {
    text-align: right;
}

.card-auction__money-percentage {
    font-size: 0.8rem;
}

/*CARD AUCTION PROFILE*/

.card-auction-profile {
    display: flex;
    padding: 24px;
    border: 1px solid black;
    justify-content: space-between;
    margin-bottom: 16px;
}

.card-auction-profile__left, .card-auction-profile__right {
    display: flex;
    gap: 30px;
}

.card-auction-profile__info {
    font-size: 0.9rem;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-auction-profile__left > div:first-child .card-auction-profile__info {
    width: 250px;
}

.card-auction-profile__right a {
    width: 115px;
    height: 80%;
    margin: auto;
}

/*@CARD PRIVATE SALES*/

.card-private-sales {
    display: flex;
    flex: 1;
    max-width: 50%;
    gap: 24px;
    padding-right: 24px;
}

.card-private-sales__image {
    width: 100%;
    max-width: 305px;
    max-height: 393px;
    object-fit: cover;
}

.card-private-sales__content {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 12px;
    height: 463px;
}

/*@CHIPS*/

.chip {
    background-color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 12px;
    border-radius: 36px;
    border: 1px solid black;
    font-size: 0.9rem;
    white-space: nowrap;
}

.chip--small {
    padding: 0 12px;
}

.chip--transparent {
    background-color: unset;
}

.country__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -18px;
}

.country__chips--profile {
    margin-top: unset;
    margin-bottom: 10px;
}

.chip--country {
    border-radius: 6px;
    padding: 3px 7px;
    cursor: pointer;
    border-style: unset;
    background-color: var(--color-secondary);
}

.chip--country .chip__remove {
    width: 24px;
}

.chip--countdown {
    position: absolute;
    top: 5%;
    left: 5%;
}

.chip img {
    width: 20px;
}

.cover-photos__chips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(185px, calc(50% - 4px)), 1fr));
    gap: 8px;
    padding-right: 5%;
    row-gap: 30px;
}

.chip--photo {
    position: relative;
    padding: 0;
    border: none;
    overflow: hidden;
    border-radius: 0;
    width: 100%;
    height: 86px;
}

.chip--photo .chip__thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.chip__remove-photo {
    position: absolute;
    background-color: var(--color-primary);
    border-radius: 6px;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/*@OTHERS*/

.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.hidden {
    display: none;
}

.invisible {
    opacity: 0;
}

.visible {
    opacity: 1;
}

.underlined {
    text-decoration: underline;
}

.centered {
    text-align: center;
}

.price-net-earnings {
    margin-top: 6px;
    font-size: 0.85rem;
}

.error-message {
    margin-top: -17px;
    padding: 6px 10px;
    border: 1px solid var(--red);
    color: var(--red);
    font-weight: bold;
}

.error-message-fixed {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding: 6px 10px;
    border: 1px solid var(--red);
    color: var(--red);
    font-weight: bold;
}

.error-message--fit-content {
    width: fit-content;
}

.error-message--info img {
    width: 20px;
}


/*@SWAL*/

.swal2-popup {
    border-radius: 24px;
    width: 80%;
    max-width: 500px;
    padding: 56px 44px;
    color: black;
    background: var(--color-primary);
}

.swal2-title {
    font-size: 2.2rem;
    line-height: 40px;
    font-weight: unset;
    padding: 0;
}

.swal-icon {
    width: 2em;
    height: 2em;
    margin: 0 auto .6em auto;
}

.swal2-actions {
    gap: 15px;
    margin: 1.25em 0 0 0
}

.swal2-close {
    color: black;
    position: absolute;
    top: 16px;
    right: 16px;
}

.swal2-text-left {
    text-align: left;
    padding-left: unset;
    padding-right: unset;

}

/*@BUTTONS*/

.button {
    border: 1px solid black;
    border-radius: 32px;
    padding: 20px 32px;
    width: fit-content;
    height: fit-content;
    letter-spacing: 10%;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.button--black {
    background-color: black;
    color: white;
}

.button--no-outline {
    border: unset;
}

.button--delete {
    color: var(--red);
    margin-right: auto;
}

.button--square {
    border-radius: unset;
}

.button--square-2 {
    border-radius: 6px;
}

.button input {
    display: none;
}

.button:has(input:checked) {
    background-color: black;
    color: white;
}

.button--full {
    width: 100%;
}

.button--small {
    padding: 6px 12px;
    letter-spacing: unset;
}

.button--centered {
    margin: auto;
}

.button--right {
    margin-left: auto;
}

.custom-upload__button {
    margin: 35px auto 0 auto;
}

.authentication__login-button {
    margin-top: 24px;
}

.authentication__registration-button {
    width: 60%;
}

.card-private-sales__content-button {
    margin-top: auto;
}

.contact__form-button {
    width: 50%;
}

.button--auctions-new {
    width: 250px;
}

.button--auction-products {
    width: 347px;
}

/* @CONNECT CARD MODAL */

.connect-card-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 60000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 24px 16px;
}

.connect-card-modal__panel {
    background: var(--color-primary);
    border-radius: 16px;
    width: 100%;
    max-width: 530px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
    position: relative;
}

.connect-card-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.bid-amount-field {
    display: flex;
    align-items: center;
    border-bottom: 1px solid currentColor;
    padding: 8px 0;
    gap: 6px;
}

.bid-amount-field__input {
    flex: 1;
    border: none;
    background: none;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
    color: inherit;
    min-width: 0;
}

.bid-amount-field__input::placeholder {
    color: inherit;
    opacity: 0.5;
}

/* remove browser arrows on number input */
.bid-amount-field__input::-webkit-outer-spin-button,
.bid-amount-field__input::-webkit-inner-spin-button { -webkit-appearance: none; }
.bid-amount-field__input[type=number] { -moz-appearance: textfield; }

.connect-card-modal__bid-terms {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.connect-card-modal__bid-terms p {
    margin: 0;
}

.connect-card-modal__panel h1 {
    font-size: 2rem;
    margin: 0;
}

.connect-card-modal__panel > p {
    margin: 0;
}

.connect-card-modal__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.connect-card-modal__payment-element {
    width: 100%;
    min-height: 180px;
}

.connect-card-modal__checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 0;
}

.connect-card-modal__checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}

.connect-card-modal__error {
    color: #c0392b;
    font-size: 0.875rem;
}

.connect-card-modal__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.connect-card-modal__chips .chip span {
    text-transform: uppercase;
}

.connect-card-modal__divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.15);
}

.connect-card-modal__buy-now-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.connect-card-modal__buy-now-price {
    font-size: 2.5rem;
    line-height: 1.2;
}

/*@MEDIA QUERIES*/

@media (max-width: 1100px) {

    /*@HEADER*/

    header {
        padding: 35px 0;
    }

    .header__link,
    .header__right {
        display: none;
    }

    .header__mobile-toggle {
        display: flex;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .header__mobile-menu {
        display: flex;
        flex-direction: column;
        background-color: #F4F2EC;
        padding: 0 5%;
        gap: 24px;
    }

    .header__mobile-menu.open {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        padding: 24px 5%;
        margin-top: 35px;
        border-top: 1px solid black;
    }

    .header__mobile-menu a {
        font-size: 1rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    body {
        margin-top: 120px;
    }


    /*@HOME*/

    .container {
        width: 90%;
        max-width: 1100px;
        margin: auto;
    }

    .hero {
        height: 750px;
    }

    .hero__content {
        padding: 130px 0;
    }

    .feature {
        flex-direction: column;
        margin-top: 80px;
        margin-bottom: 80px;
        gap: 40px;
    }

    .feature--right {
        flex-direction: column;
    }

    .feature__content {
        width: 100%;
    }


    .feature__bottom {
        flex-direction: column;
        gap: 40px;
        margin-top: 32px;
    }

    .feature--right .feature__bottom div {
        text-align: right;
    }

    .feature__image {
        max-width: 100%;
    }

    .feature__image--2,
    .feature__image--3 {
        max-width: 100%;
    }

    .feature__key-points {
        gap: 20px;
    }

    .feature--primary {
        padding: 60px 0;
    }

    .explore {
        padding: 60px 0;
    }

    .explore__carousel {
        margin-top: 40px;
        padding: 0 4%;
    }

    .card-auction {
        max-width: 320px;
    }

    .faq {
        margin-bottom: 62px;
    }

    .faq__question {
        font-size: 1.4rem;
    }

    /*@FOOTER*/

    .footer__nav {
        font-size: 0.8rem;
        text-align: center;
        gap: 10px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 24px;
    }

    .footer__glueglue {
        margin: 0;
    }

    /*@MEMBERSHIP*/

    .membership {
        margin-bottom: 50px;
    }

    .membership__cards {
        flex-direction: column;
    }

    .membership__card a {
        margin-bottom: 24px;
        font-size: 0.7rem;
    }

    .membership__card-features {
        height: unset;
    }

    .membership__card-bottom {
        margin-top: unset;
    }

    /*@ABOUT US*/

    .about-us__section {
        margin-bottom: 50px;
    }

    .about-us__section p, .about-us__section ul {
        margin-top: 17px;
    }

    /*@HOW WORKS*/

    .private-sales__body {
        flex-direction: column;
        margin: 0 0 50px 0;
        gap: 30px;
    }

    /*@AUCTIONS*/

    .auctions__top,
    .auctions-details__top-row {
        flex-direction: column;
        gap: 24px;
    }

    .auctions__filters-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .auctions__filters-group {
        gap: 8px;
    }

    /*@AUCTION NEW*/

    .auctions-new__hero {
        flex-direction: column;
        gap: 24px;
        margin: 20px 0;
    }

    .auctions-new__section, .auctions-progress__section {
        margin-top: 50px;
    }

    .auctions-new-overview, .auctions-new-details, .auctions-new-products {
        margin-bottom: 50px;
    }

    .auctions-new-base__progress-label {
        font-size: 0.7rem;
    }

    /*@AUCTIONS DETAILS*/

    .auctions-details__gallery {
        margin-top: 24px;
    }

    .auctions-details__gallery-main {
        height: 280px;
    }

    .auctions-details__gallery-thumb {
        display: none;
    }

    .auctions-details__body {
        flex-direction: column;
        gap: 0;
        margin: 24px auto;
    }

    .auctions-details__left .auctions-details__block:first-child {
        margin: 0 auto;
    }

    .auctions-details__right {
        margin: 0 auto;
    }

    .auctions-details__left,
    .auctions-details__right {
        width: 100%;
    }

    .auctions-details__retails {
        gap: 20px;
    }

    .auctions-details__bids-top {
        flex-direction: column;
        gap: 5px;
    }

    .auctions-details__current-bid {
        text-align: unset;
        align-self: unset;
    }

    .auction-details__bids-history {
        flex-direction: column;
        gap: 24px;
        margin-top: 24px;
    }

    .auctions-details__block--bids-history {
        max-height: unset;
    }

    .auction-details__banner {
        flex-direction: column;
        padding: 16px 5%;
        gap: 8px;
    }

    .button--auctions-new {
        width: 100%;
    }

    /*@CONTACT US*/

    .contact__form {
        gap: 32px;
    }

    .contact__form-row, .auctions-new__form-row, .profile__form-row {
        flex-direction: column;
        gap: 32px;
    }

    .auctions-progress__form-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .profile__form-row div:empty,
    .auctions-progress__form-row div:empty {
        display: none;
    }

    /*@AUCTIONS PROGRESS*/

    .auctions-progress-bar__steps {
        margin: 24px auto;
    }

    .auctions-progress-bar__label {
        display: none;
    }

    .auctions-progress__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact__form-button {
        width: fit-content;
    }

    /*@AUTHENTICATION*/

    .authentication__logo {
        margin: -80px auto 60px auto;
    }


    .authentication__form {
        margin: 50px auto 10px auto;
    }

    .authentication__form h1 {
        margin-top: 40px;
    }

    /*@CARD AUCTION*/

    .card-private-sales {
        max-width: unset;
        flex-direction: column;
        border-bottom: 2px solid black;
        padding: 0 0 10px 0;
    }

    .card-private-sales__content {
        height: unset;
        margin-bottom: 15px;
    }

    /*@BUTTONS*/

    .button {
        padding: 14px 22px;
        font-size: 0.85rem;
    }

    .button--small {
        padding: 6px 12px;
        letter-spacing: unset;
        font-size: 0.8rem;
    }

    .custom-upload__button {
        margin: 55px auto 0 auto;
    }

    .authentication__registration-button {
        width: unset;
    }

    /*@OTHERS*/

    h1 {
        font-size: 2.2rem;
        line-height: 2.8rem;
    }

    h2 {
        font-size: 1.8rem;
        line-height: 2.4rem;
    }

    .h2 {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    h3 {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }

    /*@USER PROFILE*/

    .profile-header__buttons {
        overflow-x: auto;
        scrollbar-width: none;
        align-items: stretch;
    }

    .profile-header__buttons::-webkit-scrollbar {
        display: none;
    }

    .profile-header__buttons .button {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .profile__empty-state {
        width: 100%;
        margin: 60px auto;
    }

    .profile__membership {
        width: 100%;
    }

    .profile__form {
        margin: 50px auto 20px auto;
    }

    .profile-card {
        padding: 0 0 30px 0;
    }

    .profile-card__chips {
        gap: 5px;
        justify-content: center;
    }

    .card-auction-profile {
        flex-direction: column;
        gap: 16px;
    }

    .card-auction-profile__left {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .card-auction-profile__left > div:first-child .card-auction-profile__info {
        width: unset;
    }

    .card-auction-profile__right {
        justify-content: flex-start;
    }

    /*@SWAL*/

    .swal2-popup {
        padding: 20px;
        width: 90%;
    }

    .swal2-title {
        font-size: 1.7rem;
    }

    .swal2-html-container {
        padding: 10px;
        font-size: 1rem;
    }

}

