* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Firefox */
@-moz-document url-prefix() {
    html, #short-desc, .custom-options {
        scrollbar-width: thin;
        scrollbar-color: #D5D5D5 #F1F1F1;
    }
}

/* scrollbar styles */
html::-webkit-scrollbar, #short-desc::-webkit-scrollbar {
    width: 5px; 
}

html::-webkit-scrollbar-thumb, #short-desc::-webkit-scrollbar-thumb {
    background: #E6E6E6; 
    height: 87px;
    border-radius: 3px;
}

:root {
    --primary-color: #B50025;
    --secondary-color: #41AB5D;
    --footer-bg: #6E6E6E;
    --text-color: #2E2E2E;
    --text-color1: #4A4A4A;
    --text-color2: #2B2B2B;
    --page-bg: #F7F7F7;
    --border-color: #DBDBDB;
    --border-color-1: #D8D8D8;
}

.Container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 30px;
}

.bg-color { background: var(--page-bg); }

.content, .content1, .content2, .content3 { 
    display: flex; 
    width: 100%;
}

.content { max-width: 1260px; }
.content1 { flex-direction: column; max-width: 1260px; }
.content3 { flex-direction: column; max-width: 1054px; }
.content2 { flex-direction: column; align-items: center; max-width: 1000px; }

.hidden {
    display: none !important;
}

/* valid/invalid form fields */
.was-validated .form-control:valid,
.was-validated .form-control:invalid {
    background-image: none !important;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid,
.was-validated .bootstrap-select select:valid+.dropdown-toggle {
    border-color: var(--border-color) !important;
}

.was-validated .form-control:valid:focus,
.was-validated .form-select:valid:focus {
    box-shadow: none !important;
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple]):not([size]) {
    --bs-form-select-bg-icon: none !important;
}

.form-select {
    --bs-form-select-bg-img: none !important;
    background-image: url(../images/arrow-down-l.svg) !important;
    background-size: 8px 5px !important;
    background-position: right 22px center !important;
}

.form-floating > .form-control {
    min-height: unset !important;
}
/* valid/invalid form fields */

/* header top */
.top-header {
    border-bottom: 1px solid #E3E3E3;
    align-items: center;
    gap: 52px;
    height: 60px;
}

.top-header.authorized {
    gap: 26px;
}

.top-header.authorized .top-menu {
    margin: 0 auto 0 24%;
}

.top-menu {
    display: flex;
    align-items: center;
    gap: 82px;
    margin-left: auto;
}

.top-menu a {
    color: var(--text-color);
    text-decoration: none;
    font: 12px "BPG LE Studio 02 Caps";
    line-height: 15px;
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font: 12px "BPG LE Studio 02 Caps";
    line-height: 15px;
    -webkit-text-stroke: 0.5px var(--primary-color);
}

.language-change {
    position: relative;
}

.language-change p {
    margin-bottom: 0;
}

.language-change img {
    width: 22px;
    height: 14px;
    object-fit: contain;
}

.language-change > a {
    color: black;
    text-decoration: none;
    font: 10px "BPG LE Studio 02 Caps";
    line-height: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.language-change > a > p {
    display: flex;
    gap: 10px;
}

.language-change > a > p span {
    margin-top: 3px;
}

.language-change > a i {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.language-change i.active {
    transform: rotate(180deg);
}

.language-change ul {
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    top: 100%;
    margin: 0;
}

.language-change ul a {
    color: black;
    font: 10px "BPG LE Studio 02 Caps";
    line-height: 13px;
    text-decoration: none;
}

.language-change ul a p {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

/* header styles */
header {

    background: white;
    min-height: 80px;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 176px;
    height: 48px;
    object-fit: contain;
}

.menu {
    display: flex;
    gap: 30px;
    height: 46px;
}

.menu-item {
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.menu-item > a {
    color: black;
    text-decoration: none;
    display: flex;
    gap: 6px;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    -webkit-text-stroke: 0.5px var(--text-color);
}

.menu-item > a i {
    font-size: 8px;
    padding-top: 4px;
}

.menu-item > ul {
    background: rgba(46, 46, 46, 0.85);
    display: none;
    flex-direction: column;
    gap: 15px;
    grid-template-columns: 320px 1fr;
    list-style: none;
    padding: 25px 20px;
    position: absolute;
    top: 100%;
    z-index: 1000;
    margin-bottom: 0;
    min-width: 194px;
}

.menu-item > ul > li {
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
}

.menu-item > ul > li a {
    color: white;
    text-decoration: none;
}

.menu-item > ul ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    flex-grow: 1;
}

.menu-item > ul ul li {
    list-style: none;
    font: 12px "Helvetica";
    line-height: 15px;
    width: 100%;
}

.menu-item > ul ul li:first-child {
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    margin-bottom: 7px;
}

.menu-item > ul ul li a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    width: 100%;
}

.menu-item:hover > ul {
    display: flex;
}

.search-form {
    position: relative;
}

.search-form input {
    background: white;
    border: 1px solid #E3E3E3;
    color: black;
    font: 10px 'BPG Arial';
    line-height: 11px;
    padding: 0 35px 0 20px;
    width: 257px;
    height: 40px;
}

.search-form input:focus {
    outline: none;
}

.search-form input::placeholder {
    color: black;
}

.search-form button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    height: 15px;
}

.dropdownMenu {
    background: #294652;
    color: white;
    padding: 0 30px;
    position: absolute;
    top: 100%;
    width: 100%;
    height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    transition: height 0.5s ease;
}
  
.dropdownMenu.visible { height: calc(100vh - 80px); }

.dropdownMenu hr {
    border: 1px solid rgba(255, 255, 255, 0.17);
    opacity: 1;
    margin: 0 -30px;
}

.dropdownMenu .search-form {
    margin: 30px 0 10px;
    width: 100%;
}

.dropdownMenu .search-form input { 
    background: transparent;
    color: white;
    font-size: 12px;
    line-height: 16px;
    width: 100%;
}
.dropdownMenu .search-form input::placeholder { color: white; }

.mobile-nav, .mobile-item  {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 14px 'BPG Arial';
    line-height: 19px;
    width: 100%;
    padding: 20px 0;
}
.mobile-item { text-decoration: none; }

.mobile-nav-items, .child-nav-items {
    font: 14px "BPG Arial";
    line-height: 19px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 0;
    overflow: hidden;
    padding-left: 20px;
    transition: max-height 0.3s ease;
}
.child-nav-items { gap: 15px; }
.mobile-nav-items.visible, .child-nav-items.visible { max-height: 1000px; }
.mobile-nav-items > a, .child-nav-items > a {
    color: white;
    text-decoration: none;
}

.child-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 14px 'BPG Arial';
    line-height: 19px;
    width: 100%;
    /* padding: 20px 0; */
}

.mobile-language {
    display: flex;
    align-content: center;
    gap: 10px;
    margin: 30px 0 80px;
}

.mobile-language a > img {
    border: 1px solid white;
    width: 22px;
    height: 14px;
    object-fit: cover;
}

/* footer */
.footer-container {
    background: var(--footer-bg);
    min-height: 392px;
    padding: 120px 30px;
}

.footer-content {
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 100px;
}

.footer-logo { margin-bottom: 32px; }
.footer-logo img {
    width: 310px;
    height: 90px;
    object-fit: contain;
}

.footer-content > .creator { display: none; }
.creator {
    color: rgba(255, 255, 255, 0.49);
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.creator span:first-child {
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.creator span:last-child {
    font: 10px 'Segoe';
    line-height: 14px;
}

.creator span:last-child a {
    color: unset;
    text-decoration: none;
}

.footer-contact > p:first-child {
    color: white;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    margin-bottom: 20px;
} 

.footer-contact > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 275px;
}

.footer-contact > div > div,
.footer-contact > div > a {
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contact > div:first-of-type { margin-bottom: 30px; }

.social-links {
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
}

.social-links a {
    background: rgba(220, 220, 220, 0.7);
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
}
.social-links a:hover { background: var(--primary-color); }

.icon {
    background: rgba(209, 209, 209, 0.4);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29px;
    height: 29px;
    transition: all 0.3s ease;
}

.icon i {
    font-size: 10px;
}

.footer-contact > div > div:hover .icon,
.footer-contact > div > a:hover .icon {
    background: var(--primary-color);
}

.footer-contact span {
    color: white;
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    max-width: 226px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
}

/* main banner */
.main-banner {
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 46px;
}
.mobile-banner-swiper { display: none !important; }

.main-banner-container {
    position: relative;
    width: calc(100% - 412px);
}

.main-slide {
    width: 100% !important;
    height: 435px !important;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev-arrow, .next-arrow {
    background: rgb(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 10;
}

.prev-arrow:hover, .next-arrow:hover {
    background: var(--primary-color);
    color: white;
}

.prev-arrow {
    left: 30px;
}

.prev-arrow:hover {
    left: 20px
}

.next-arrow {
    right: 30px;
}

.next-arrow:hover {
    right: 20px;
}

.banner-info {
    background: rgb(251, 251, 251, 0.9);
    border-radius: 5px;
    width: 300px;
    padding: 30px;
    position: absolute;
    left: 52px;
    bottom: 44px;
}

.banner-auth {
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    margin-bottom: 5px;
}

.banner-desc {
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 17px;
}

.banner-info a, 
.catalogue-info a {
    color: unset;
    text-decoration: none;
    font: 12px 'Gilroy GEO';
    line-height: 15px;
}

.single-news {
    background: #F8F8F8;
    padding: 30px 30px 46px 30px;
    width: 392px;
}

.single-news > img:first-child {
    width: 100%;
    height: 146px;
    object-fit: cover;
    margin-bottom: 21px;
}

.single-news > p {
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 36px;
}

.single-news > a {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    width: 186px;
    height: 50px;
    transition: all 0.3s ease;
}

.single-news > a:hover {
    background: var(--text-color);
}

/* auction prev */
.auctions-prev {
    background: #E9E9E9;
    padding: 30px 30px 55px;
}

.slide-title {
    font: 24px "Helvetica Roman";
    line-height: 29px;
    margin-bottom: 30px;
}

.ongoing-auction-swiper, .planned-auction-swiper {
    width: 100% !important;
    padding-bottom: 60px !important;
    margin-bottom: 30px;
}

.swiper1 .swiper-pagination-bullet {
    background: white;
    border-radius: 50%;
    color: white;
    width: 10px;
    height: 10px;
    opacity: 1;
}

.swiper1 .swiper-pagination-bullet-active {
    background: #CBCBCB;
}

.auction-card {
    background: white;
    border-radius: 5px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
}
.buy-card { padding: 30px 25px; }

.lot-num {
    color: #7A7A7A;
    font: 16px "Helvetica Light";
    line-height: 20px;
    margin-bottom: 15px;
}

.lot-img-cont {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
}

.lot-img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lot-bid-num, .lot-bid {
    background: var(--text-color);
    border-radius: 15px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    width: 84px;
    height: 30px;
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.add-to-fave {
    background: transparent;
    border: none;
    position: absolute;
    right: 20px;
    bottom: 24px;
}

.add-to-fave svg {
    fill: rgba(255, 255, 255, 0.51);
    transition: all 0.3s ease;
}

.add-to-fave:hover svg,
.add-to-fave.active svg {
    fill: var(--primary-color);
}

.lot-info {
    position: absolute;
    top: 15px;
    left: 20px;
}

.lot-info .toggle-button {
    background: rgb(233, 233, 233, 0.65);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.hidden-info {
    background: rgba(46, 46, 46, 0.7);
    border-radius: 3px;
    display: none;
    padding: 11px;
    width: 148px;
    margin-left: 20px;
    margin-top: -9px;
}

.hidden-info.visible {
    display: block;
}

.hidden-info p {
    color: white;
    font: 8px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 48px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
}

.lot-name {
    font: 14px 'Helvetica';
    line-height: 17px;
    text-align: center;
    height: inherit;
    height: 51px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 25px;
}

.time-left {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
}

.time-left > span {
    color: #787878;
    font: 12px "Helvetica Roman";
    line-height: 15px;
}

.time-left p {
    display: flex;
    gap: 2px;
    margin-bottom: 0;
}

.time-left p span:first-child {
    font: 16px 'Helvetica Roman';
    line-height: 20px;
}

.time-left p span:last-child {
    color: #787878;
    font: 10px 'Helvetica Roman';
    line-height: 12px;
    padding-top: 6px;
}

.bid-link, .result-status1 {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    width: 186px;
    height: 50px;
}

/* buy sell preview */
.buy-sell-info {
    display: flex;
    gap: 30px;
    margin-bottom: 57px;
}

.buy-sell-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-left: 50px;
    z-index: 1;
    width: 50%;
    height: 200px;
}

.buy-sell-item:first-child {
    background-image: url(../images/buysell1.png);
}

.buy-sell-item:last-child {
    background-image: url(../images/buysell2.png);
}

.buy-sell-item::before, .buy-item-head::before,
.sell-item-head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: all 0.3s ease;
}

.buy-sell-item *, .buy-item-head *, .sell-item-head * {
    position: relative;
    z-index: 2;
}

.buy-sell-item > p:first-child {
    color: white;
    font: 22px 'BPG LE Studio 02 Caps';
    line-height: 29px;
    margin-bottom: 5px;
}

.buy-sell-item > p:nth-child(2) {
    color: white;
    font: 30px 'Helvetica Roman';
    line-height: 36px;
    margin-bottom: 0;
}

.learn-more {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: unset;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 60px;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.buy-sell-item:hover .learn-more {
    background: var(--primary-color);
    color: white;
    right: 50px;
}

.buy-sell-item:hover::before {
    background: rgba(0, 0, 0, 0.7);
}

.catalogue-swiper {
    width: 100% !important;
    padding-bottom: 50px !important;
}

.catalogue-slide {
    height: 264px !important;
}

.catalogue-slide > img:first-child {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalogue-info {
    background: rgb(251, 251, 251, 0.9);
    border-radius: 5px;
    width: 300px;
    padding: 20px 30px;
    position: absolute;
    left: 50px;
    bottom: 15px;
}

.catalogue-name {
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    margin-bottom: 10px;
}

.catalogue-desc {
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    height: 30px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 15px;
}

/* subscripiion form */
.subscription-container { padding: 84px 30px; }
.subs-bg { background: #F8F8F8; }

.subs-title {
    font: 20px 'BPG LE Studio 02 Caps';
    line-height: 26px;
    margin-bottom: 20px;
    max-width: 531px;
    text-align: center;
}

.subs-title1 {
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    margin-bottom: 56px;
}

.subs-form-cont {
    width: 100%;
}

.subs-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 30px;
    margin-bottom: 30px;
    width: 100%;
}

.subs-form > input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #C8C8C8;
    color: var(--footer-bg);
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    padding-bottom: 20px;
    width: 100%;
}

.subs-form input:focus {
    outline: none;
}

.subs-form input::placeholder {
    color: var(--footer-bg);
}

.subs-categories {
    position: relative;
}

.subs-categories-head {
    border-bottom: 1px solid #C8C8C8;
    color: var(--footer-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 16px 'Helvetica Roman';
    line-height: 20px;
    padding-bottom: 20px;
}

.subs-categories-head p {
    margin-bottom: 0;
}

.subs-categories-head i {
    color: black;
    font-size: 12px;
    transition: all 0.3s ease;
}

.subs-categories-head.active i {
    transform: rotate(180deg);
}

.categories {
    background: white;
    display: flex;
    flex-direction: column;
    gap: 13px;
    position: absolute;
    top: 100%;
    width: 100%;
    max-height: 0;
    padding: 0 30px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.categories.visible {
    max-height: 500px;
}

.subs-option:first-child {
    margin-top: 20px;
}

.subs-option:last-child {
    margin-bottom: 20px;
}

.subs-option {
    display: flex;
    gap: 18px;
}

.subs-option label {
    color: var(--footer-bg);
    font: 12px "Helvetica Roman";
    line-height: 15px;
}

.subs-option input {
    background: transparent !important;
    border: 1px solid var(--text-color);
    border-radius: 50% !important;
    cursor: pointer;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2px;
}

.subs-option input:checked::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: #131E33;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: background 0.3s ease;
}

.agreement {
    font: 14px 'Helvetica Light';
    line-height: 19px;
    margin-bottom: 40px;
}

.subs-form-cont button {
    background: #6C6C6C;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    width: 186px;
    height: 45px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.subs-form-cont button:hover {
    background: var(--primary-color);
}

/* login page */
.login-register {
    display: flex;
    width: 100%;
    min-height: 600px;
}

.login-content {
    background: #E9E9E9;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 87px;
    width: 54%;
    min-height: 100%;
}

.login-form {
    width: 407px;
}

.login-form > p:first-of-type {
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 22px;
    margin-bottom: 23px;
    text-align: center;
}

.login-form .valid-feedback,
.login-form .invalid-feedback {
    width: 13px !important;
    height: 13px !important; 
    position: absolute !important;
    right: -6px;
    top: 10px;
}

.login-form label {
    font: 14px 'Helvetica Roman';
    line-height: 19px;
}

.login-form input {
    border-radius: 0;
    font: 14px 'Helvetica Roman';
    line-height: 19px !important;
    height: 55px !important;
}

.login-form > div:first-of-type {
    margin-bottom: 15px;
}

.login-form > div:nth-of-type(2) {
    margin-bottom: 19px;
}

.forgot-password {
    color: var(--footer-bg);
    text-decoration: none;
    display: block;
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 16px;
    max-width: 180px;
    margin-bottom: 22px;
}

.login-btn, .register-btn, .sell-btn {
    background: #212121; 
    border: none;
    color: white;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    height: 55px;
    width: 100%;
    transition: all 0.3s ease;
}

.login-btn:hover, .register-btn:hover, .sell-btn:hover {
    background: var(--primary-color);
}

.registration-btn {
    background-image: url('../images/register-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 46%;
    min-height: 100%;
}

.registration-btn::before {
    background-color: black;
    opacity: 0.39;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.registration-btn a {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    width: 310px;
    height: 55px;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 82px;
    z-index: 2;
}

.registration-btn a:hover {
    background: black;
}

/* logged user */
.logged-user {
    position: relative;
}

.logged-user button, .mobile-user {
    background: var(--text-color);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    width: 25px;
    height: 25px;
    margin: 10px 0;
}
.mobile-user { display: none; margin: 0 0 0 auto; }
#menu-toggle-button { display: none; }

.logged-user > div {
    background: white;
    border: 1px solid #F2F2F2;
    border-radius: 5px;
    display: none;
    position: absolute;
    list-style: none;
    line-height: unset;
    padding: 30px;
    width: 540px;
    top: 100%;
    right: -20px;
    z-index: 1001;
}

.logged-user > div p {
    color: black;
    -webkit-text-stroke: 0.5px var(--text-color2);
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 18px;
    margin: 0 0 20px auto;
}

.logged-user-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    column-gap: 20px;
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

.logged-user a {
    background: #F2F2F2;
    border-radius: 5px;
    color: black;
    display: flex;
    align-items: center;
    padding-left: 20px;
    font: 12px 'Helvetica';
    line-height: 18px;
    text-decoration: none;
    min-height: 40px;
    transition: all 0.3s ease;
}

.logged-user a:hover {
    background: var(--text-color);
    color: white;
}

.logged-user-nav a:last-child {
    gap: 10px
}

.logged-user:hover > div {
    display: flex;
    flex-direction: column;
}

/* about us page */
.about-us-head {
    background-image: url(../images/about-us-bg.png);
}

.buy-item-head {
    background-image: url(../images/buy-item.png);
    background-position: center;
    margin-bottom: 30px;
}

.sell-item-head {
    background-image: url(../images/sell-item.png);
    background-position: center;
    margin-bottom: 30px;
}

.about-us-head, .buy-item-head, .sell-item-head {
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 214px;
}

.about-us-title, .experts-head-title {
    background: rgba(46, 46, 46, 0.58);
    color: white;
    display: flex;
    align-items: center;
    font: 20px 'BPG LE Studio 02 Caps';
    line-height: 26px;
    height: 80px;
    padding-left: calc((100% - 1000px) / 2);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.about-us-title p, .experts-head-title p {
    margin-bottom: 0;
}

.about-us-cont {
    padding-top: 30px;
    padding-bottom: 60px;
}

.about-us-text, .buy-item-text {
    font: 14px "Helvetica Roman";
    line-height: 17px;
}

.about-us-text *, .buy-item-text * {
    font-family: "Helvetica Roman" !important;
}

/* catalogue page */
.catalogue-container {
    background: var(--page-bg);
    padding-top: 40px;
    padding-bottom: 200px;
}

.catalogue-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.catalogue-filter-heading {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.catalogue-filter-heading span {
    -webkit-text-stroke: 0.5px black;
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 22px;
}

.mobile-filter-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 5px;
    width: 60px;
    height: 40px;
}

.filter {
    background: white;
    border-radius: 5px;
    padding: 30px;
    width: 300px;
}

.filter > p:first-child {
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    -webkit-text-stroke: 0.5px black;
    margin-bottom: 0;
}

.filter hr {
    border-color: #E9E9E9;
    opacity: 1;
    margin: 20px 0 15px;
}

.filter-item {
    margin-bottom: 16px;
}

.filter-title {
    color: var(--primary-color);
    -webkit-text-stroke: 0.5px var(--primary-color);
    font: 12px 'BPG LE Studio 02 Caps';
    line-height: 15px;
    margin-bottom: 20px;
}

.category-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 12px 'Helvetica';
    line-height: 15px;
}

.category-title i {
    color: #707070;
    font-size: 10px;
    transition: all 0.3s ease;
}

.category-items {
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
}

.category-items-cont {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    gap: 10px;
}

.category-item label {
    color: var(--footer-bg);
    cursor: pointer;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
}

.check {
    background: transparent;
    border: 1px solid #E9E9E9;
    border-radius: 3px;
    cursor: pointer;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 15px;
    height: 15px;
    transition: all 0.3s ease;
}

.check:checked,
.check:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.filter-title1 {
    color: var(--footer-bg);
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    margin-left: -24px;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.reset {
    background: transparent;
    border: none;
    color: #B5B4B4;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
}

.reset:focus {
    outline: none;
}

.category-grid-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: calc(100% - 320px);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    column-gap: 20px;
    row-gap: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 17px;
}

.prev-page, .next-page {
    background: #C8C8C8;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev-page:hover, .next-page:hover {
    background: var(--text-color);
}

.prev-page i, .next-page i {
    font-size: 10px;
}

.pagination-buttons {
    display: flex;
    gap: 17px;
}

.pagination-buttons button {
    background: transparent;
    border: none;
    color: #929395;
    cursor: pointer;
    font: 13px 'BPG Mrgvlovani Caps 2010';
    line-height: 18px;
}

.pagination-buttons button.active {
    color: var(--text-color);
}

/* product page */
.product-container {
    background: var(--page-bg);
    padding: 40px 30px 90px;
}

.product-heading {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 30px;
}

.product-heading a {
    color: var(--text-color1);
    text-decoration: none;
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
}

.product-heading i {
    color: var(--text-color1);
    font-size: 7px;
}

.product {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 70px;
}

.product-details { width: 54.4%; }

.product-images {
    display: flex;
    gap: 19px;
    margin-bottom: 40px;
}

.product-img-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-img-button {
    border-radius: 5px;
    cursor: pointer;
    width: 99px;
    height: 84px;
}

.product-img-button img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-swiper, .product-slide {
    width: 455px;
    height: 460px;
}

.product-slide img {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loupe {
    display: none;
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid black;
    box-shadow: 5px 5px 12px black;
    background: rgba(0, 0, 0, 0.25);
    cursor: crosshair;
    overflow: hidden;
    z-index: 1000;
}
.loupe img {  position: absolute; }

.faq > p:first-child {
    font: 20px "Helvetica Roman";
    line-height: 24px;
    margin-bottom: 15px;
}
.faq-items { padding-left: 27px; }
.product-info .faq { display: none; }

.question {
    border-bottom: 1px solid #D1D1D1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.question p {
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
    -webkit-text-stroke: 0.5px var(--text-color);
    margin: 0;
}

.question .toggle-icon.minus {
    display: none;
}

.answer {
    color: var(--text-color1);;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    overflow: hidden;
    height: 0;
    transition: all 0.3s ease;
}

.answer-content {
    padding: 30px 0 10px;
}

.product-info { width: 42.9%; }

.desc-table {
    background: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px 40px;
    margin-bottom: 30px;
}

.desc-table > div {
    display: flex;
    gap: 45px;
    align-items: center;
}

.desc-table > div span:first-child {
    -webkit-text-stroke: 0.5px var(--text-color);
    width: 225px;
}

.price-num {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-bottom: 20px;
}

.price-num > p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.num span:first-child {
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    -webkit-text-stroke: 0.5px var(--text-color);
}

.num span:last-child {
    color: var(--text-color1);;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.price span:first-child {
    color: var(--primary-color);
    font: bold 14px "Helvetica";
    line-height: 17px;
}

.price span:last-child {
    color: black;
    font: 18px "Helvetica Roman";
    line-height: 22px;
}

.product-info .name {
    color: black;
    font: 18px "Helvetica Roman";
    line-height: 22px;
    margin-bottom: 20px;
}

.product-info .time-left {
    gap: 15px;
    margin-bottom: 15px;
}

.product-info .time-left > span {
    color: var(--primary-color);
    font: bold 14px "Helvetica";
    line-height: 17px;
    min-width: 155px;
}

.product-info .time-left p span:first-child {
    font-size: 14px;
    line-height: 17px;
}

.product-info .time-left p span:last-child {
    padding-top: 4px;
}

.start-finish, .status-text, .price-history {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.start-finish span:first-child,
.status-text span:first-child,
.price-history span:first-child {
    color: var(--primary-color);
    font: bold 14px "Helvetica";
    line-height: 17px;
    min-width: 155px;
}

.start-finish span:last-child,
.status-text span:last-child {
    font: 14px 'Helvetica';
    line-height: 17px;
}

.price-history button {
    background: var(--text-color2);
    border: none;
    color: white;
    font: 12px 'Helvetica';
    line-height: 16px;
    width: 150px;
    height: 40px;
    transition: all 0.3s ease;
}
.price-history button:hover { background: var(--primary-color); }

.prod-preview, .prod-preview1 {
    display: none;
}

.prod-preview.active, .prod-preview1.active {
    background: white;
    border-radius: 2px;
    display: grid;
    grid-template-columns: 1fr 1.11fr;
    column-gap: 11px;
    row-gap: 17px;
    padding: 24px 14px;
    margin-bottom: 20px;
}

.prod-preview p,
.prod-preview1 p {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    margin-bottom: 0;
}

.prod-preview p span:first-child,
.prod-preview1 p span:first-child {
    color: var(--text-color);
    font: 10px "BPG Mrgvlovani Caps 2010";
    line-height: 13px;
    -webkit-text-stroke: 0.5px var(--text-color);
}

.prod-preview p span:last-child,
.prod-preview1 p span:last-child {
    color: var(--text-color1);
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.additional-info {
    background: white;
    border-radius: 2px;
    padding: 42px 20px 42px 55px;
    filter: drop-shadow(0px 3px 19px rgba(0, 0, 0, 0.05));
    margin-bottom: 35px;
}

.additional-info:last-of-type {
    margin-bottom: 0;
}

.additional-info p:first-child {
    color: var(--text-color);
    font: 26px 'Helvetica Roman';
    line-height: 31px;
    -webkit-text-stroke: 0.5px var(--text-color);
    margin-bottom: 30px;
}

.additional-info p:nth-of-type(2) {
    color: #757575;
    font: 14px "Helvetica";
    line-height: 17px;
    margin-bottom: 30px;
}

.additional-info button {
    background: var(--primary-color);
    border: none;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 210px;
    height: 50px;
    transition: all 0.3s ease;
}

.additional-info button:hover {
    background: var(--text-color);
}

.additional-info a {
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 11px;
    transition: all 0.3s ease;
}

.additional-info a:hover {
    gap: 31px;
}

.additional-info a span {
    color: var(--primary-color);
    font: bold 16px "Helvetica";
    line-height: 20px;
}

.additional-info a i {
    font-size: 20px;
}

.auction-btn {
    border: none;
    border-radius: 2px;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 100%;
    height: 45px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.participate-btn {
    background: var(--primary-color);
}

.participate-btn:hover {
    background: #B21E38;
}

.guarantee-btn {
    background: var(--text-color);
}

.guarantee-btn:hover {
    background: var(--text-color1);
}

.notification-btn {
    background: var(--footer-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
}

.notification-btn:hover {
    background: #5D5D5D;
}

.notification-cont {
    position: relative;
}

.notify {
    background: #F2F2F2;
    border-radius: 3px;
    display: none;
    align-items: flex-start;
    justify-content: space-between;
    padding: 25px 60px 25px 25px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    top: -115px;
}

.notify.active {
    display: flex;
}

.notify span:first-child {
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    padding-top: 6px;
}

.notify button {
    background: transparent;
    border: none;
    color: var(--footer-bg);
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    position: absolute;
    top: 7px;
    right: 17px;
}

.notify label {
    color: var(--footer-bg);
    font: 12px 'Helvetica Roman';
    line-height: 15px;
}

.participate {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 47px;
    margin-bottom: 20px;
}

.participate.active {
    display: flex;
}

.bid-time {
    background: linear-gradient(to right, white 50%, #B21E38 50%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 129px;
    height: 129px;
}

.bid-time p {
    background: var(--border-color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 25px 'Gilroy GEO';
    line-height: 27px;
    margin-bottom: 0;
    width: 114px;
    height: 114px;
}

.choose-bid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.choose-bid-form {
    display: flex;
    align-items: center;
    gap: 7px;
}

.choose-bid-form input {
    background: white;
    border: 1px solid #E6E6E6;
    border-radius: 3px;
    font: bold 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    padding-left: 20px;
    width: 160px;
    height: 45px;
}

.choose-bid-form input:focus {
    outline: none;
}

.choose-bid-form button {
    background: white;
    border: 1px solid #E6E6E6;
    border-radius: 3px;
    color: #A8A8A8;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 49px;
    height: 45px;
}

.commission {
    background: rgba(110, 110, 110, 0.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    width: 100%;
    height: 22px;
}

.commission span:first-child {
    font: 8px 'BPG Mrgvlovani Caps 2010';
    line-height: 11px;
}

.commission span:last-child {
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
}

.add-bid {
    background: var(--secondary-color);
    border: none;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 100%;
    height: 45px;
}

.choose-bid > p:last-child {
    display: flex;
    gap: 7px;
    margin-bottom: 0;
}

.choose-bid > p:last-child span:first-child {
    color: var(--text-color);
    font: 10px "BPG Mrgvlovani Caps 2010";
    line-height: 13px;
}

.choose-bid > p:last-child span:last-child {
    color: var(--text-color1);
    font: 10px "BPG Mrgvlovani";
    line-height: 13px;
}

.secret-bid {
    background: var(--text-color);
    border-radius: 3px;
    padding: 24px 24px 16px;
    margin-bottom: 15px;
}

.secret-bid-check {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
}

.secret-bid-check label {
    color: white;
    font: 14px "Helvetica Roman";
    line-height: 17px;
}

.secret-bid-check .check:checked,
.secret-bid-check .check:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.secret-bid-controls {
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font: 12px "BPG Mrgvlovani Caps 2010";
    line-height: 16px;
    word-wrap: 100%;
    height: 45px;
}

.secret-bid-controls button {
    background: transparent;
    border: none;
    color: #A8A8A8;
}

.secret-bid-controls span {
    color: var(--text-color);
    -webkit-text-stroke: 0.5px var(--text-color);
}

.check1 {
    background: transparent !important;
    border: 1px solid var(--footer-bg);
    border-radius: 50% !important;
    cursor: pointer;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 15px;
    height: 15px;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 0;
}

.check1:checked::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background: var(--footer-bg);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: background 0.3s ease;
}

.similar-auctions { width: 100%; }
.similar-auction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.success-message, .finished-message {
    background: var(--secondary-color);
    border-radius: 5px;
    color: white;
    padding: 33px 24px 33px 16px;
    margin-bottom: 20px;
}

.finished-message {
    background: var(--footer-bg);
}

.success-message > p:first-child,
.finished-message > p:first-child {
    font: 18px 'BPG Mrgvlovani Caps 2010';
    line-height: 25px;
    margin-bottom: 18px;
    text-align: center;
}

.success-message > p:nth-of-type(2),
.finished-message > p:nth-of-type(2) {
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 29px;
    text-align: center;
}

.success-message div,
.finished-message div {
    background: white;
    border: 1px solid #E6E6E6;
    border-radius: 3px;
    color: var(--text-color);
    -webkit-text-stroke: 0.5px var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font: 19px 'BPG Mrgvlovani Caps 2010';
    line-height: 26px;
    width: 100%;
    height: 45px;
}

/* buy sell info pages */
.buy-item-title {
    color: white;
    padding-left: calc((100% - 1000px) / 2);
    top: 110px;
}

.buy-item-title p:first-child {
    font: 22px 'BPG LE Studio 02 Caps';
    line-height: 29px;
    margin-bottom: 5px;
}

.buy-item-title p:last-child {
    font: 30px 'Helvetica Roman';
    line-height: 36px;
    margin-bottom: 0;
}

.buy-item-text { margin-bottom: 80px;}

.buy-item-cont, .sell-item-cont {
    width: 100%;
    margin-bottom: 70px;
}

.buy-item-cont { background-image: url(../images/buysell3.png) !important; }
.sell-item-cont { background-image: url(../images/buysell4.png) !important; }

/* product purchase page */
.product-desc {
    background: white;
    border-radius: 5px;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    padding: 20px 22px;
    margin-bottom: 30px;
}

.product-desc * {
    font: 12px 'Helvetica Roman' !important;
    line-height: 15px !important;
}

.purchase-actions {
    display: flex;
    gap: 22px;
    margin-bottom: 40px;
}

.purchase-actions button:first-child { background: var(--text-color); margin-bottom: 0; }
.purchase-actions button:first-child:hover { background: #414141; }
.purchase-actions button:last-child { background: var(--primary-color); margin-bottom: 0; }
.purchase-actions button:last-child:hover { background: #B21E38; }

.cart-message {
    position: fixed;
    top: -400px;
    right: 71px;
    width: 380px;
    transition: all 0.5s ease;
    overflow: hidden;
    z-index: 1000;
}

.cart-message.active {
    top: 178px;
}

.added-preview {
    background: white;
    border-radius: 5px;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.16));
    padding: 25px 35px;
    margin-bottom: 10px;
    width: 364px;
}

.added-preview > div {
    gap: 20px;
    margin-bottom: 18px;
}

.img-container, .img-container img { width: 60px; height: 60px; border-radius: 5px; }
.img-container img { object-fit: contain; }

.added-preview .text {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    max-width: 180px;
}

.added-preview > a {
    background: var(--text-color);
    border-radius: 2px;
    color: white;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 100%;
    height: 45px;
    transition: all 0.3s ease;
}

.added-preview > a:hover { background: #414141; }
.added-preview > a span:last-child { display: none; }
.added-preview > a:hover span:last-child { display: flex; }
.added-preview > a:hover span:first-child { display: none; }

#close-message {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 0px;
}

/* cart page */
.cart-container {
    background: var(--page-bg);
    padding: 50px 30px 200px;
}

.cart-heading, .cart-heading1 {
    display: flex;
    align-items: center;
    gap: 9px;
    font: 20px 'Helvetica';
    line-height: 24px;
    margin-bottom: 23px;
}

.cart-heading span, .cart-heading1 span {
    -webkit-text-stroke: 0.5px black;
}

.cart-heading1 {
    margin: 10px 0 30px;
}

.cart-heading div {
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    width: 40px;
    height: 40px;
}

.cart-details {
    display: flex;
    gap: 20px;
}

.products-in-cart {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 66.7%;
}

.product-in-cart {
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    filter: drop-shadow(0px 3px 19px rgba(0, 0, 0, 0.05));
    padding: 20px 25px 20px 20px;
}

.product-in-cart > img:first-child {
    border-radius: 5px;
    width: 200px;
    height: 144px;
    object-fit: cover;
}

.product-in-cart-desc {
    width: calc(100% - 230px);
}

.product-in-cart-desc p {
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 8px;
}

.product-in-cart-desc .title, .lot-card-info .title, 
.order-info .title {
    font: 14px 'Helvetica';
    line-height: 17px;
    height: 34px;
}

.product-in-cart-desc .desc {
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    height: 45px;
}

.product-in-cart-desc .price span:first-child {
    color: var(--text-color);
}

.del-item {
    background: transparent;
    border: none;
    color: var(--primary-color);
    display: flex;
    font: 10px 'Helvetica';
    line-height: 12px;
    margin-top: -2px;
}

.bill-rules {
    width: 31.4%;
}

.bill {
    background: white;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 26px 30px 38px;
}

.bill > p:first-child {
    font: 16px 'Helvetica';
    line-height: 20px;
    margin-bottom: 28px;
}

.bill-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 26px;
}

.bill hr {
    border-color: var(--border-color-1);
    opacity: 1;
    margin: 0 0 24px 0;
}

.total-price {
    margin-bottom: 40px;
}

.total-price span:first-child {
    font: 16px 'Helvetica';
    line-height: 20px;
}

.total-price span:last-child {
    font: bold 14px 'Helvetica';
    line-height: 17px;
}

.bill-link {
    background: var(--text-color);
    color: white;
    text-decoration: none;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    width: 100%;
    height: 50px;
    transition: all 0.3s ease;
}

.bill-link:hover {
    background: var(--primary-color);
}

/* delivery pages */
.delivery-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%
}

.personal-info, .delivery-form,
.pay-content {
    width: 66.7%;
}

.data-title {
    color: #3A3A3A;
    -webkit-text-stroke: 0.5px #3A3A3A;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    margin-bottom: 20px;
}

.personal-info .invalid-feedback span, .account-form .invalid-feedback span,
.select-new-address .invalid-feedback span, .register-form .invalid-feedback span {
    color: var(--primary-color);
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding-left: 5px;
}

.personal-info label, .select-new-address label {
    color: black !important;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.personal-info input, .address-input input,
.register-form input, .sell-form input, .account-form input {
    border-color: var(--border-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 50px !important;
    padding-left: 21px !important;
}

.register-form .form-floating > label,
.register-form .form-floating > .form-control,
.account-form .form-floating > label,
.account-form .form-floating > .form-control,
.sell-form .form-floating > label,
.sell-form .form-floating > .form-control,
.personal-info .form-floating > label,
.personal-info .form-floating > .form-control,
.select-new-address .form-floating > label,
.select-new-address .form-floating > .form-control {
    padding-left: 21px !important;
}

.name-inputs {
    display: flex;
    gap: 22px;
    margin-bottom: 10px;
}

.name-inputs > div {
    width: 48.5%;
}

.phone-input {
    margin-bottom: 20px;
}

.personal-info > .phone-input {
    margin-bottom: 40px;
}

.phone-input > span:first-child {
    color: #8D8D8D;
    font: 9px 'BPG Mrgvlovani';
    line-height: 12px;
}

.personal-info > .phone-input {
    margin-bottom: 24px;
}

.phone {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.phone #number, .trustee-phone {
    width: calc(100% - 124px);
}

.phone button {
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'BPG Mrgvlovani' !important;
    line-height: 19px;
    height: 50px;
    width: 124px !important;
}

.phone .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 124px !important;
}

.phone .bootstrap-select .dropdown-menu {
    min-width: 220px;
}

.phone .bootstrap-select .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.phone input {
    font-size: 14px;
    line-height: 19px;
}

#addTrustee {
    color: black;
    cursor: pointer;
    -webkit-text-stroke: 0.5px black;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'Helvetica';
    line-height: 15px;
    width: 225px;
    height: 37px;
    transition: all 0.3s ease;
}

#clearTrustee {
    color: var(--primary-color);
    cursor: pointer;
    font: 12px 'Helvetica';
    line-height: 15px;
}

#addTrustee:hover {
    background: var(--text-color);
    color: white;
    -webkit-text-stroke: 0.5px white;
}

.contact-info-btn {
    background: var(--text-color);
    border: none;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 260px;
    height: 50px;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.contact-info-btn:hover {
    background: var(--primary-color);
}

.delivery-options {
    color: var(--text-color2);
    display: flex;
    gap: 40px;
    font: 14px 'Helvetica';
    line-height: 17px;
    margin-bottom: 27px;
}

.check2 {
    border: 1px solid var(--text-color2);
    background: transparent;
    border-radius: 3px !important;
    cursor: pointer;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 20px;
    height: 20px;
    position: relative;
    margin-right: 7px;
    transition: all 0.3s ease;
}

.check2:checked {
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
}

.check2:checked::after {
    background: none;
    border-radius: 0 !important;
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

.self-delivery {
    background: white;
    border-radius: 5px;
    font: 12px 'Helvetica';
    line-height: 17px;
    padding: 22px 27px 22px 20px;
    margin-bottom: 20px;
}

.self-delivery p {
    margin-bottom: 0;
}

.choose-address {
    position: relative;
}

.choose-address select, .choose-city select {
    border-color: var(--border-color-1);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px !important;
    height: 50px !important;
    min-height: 50px !important;
    margin-bottom: 30px;
    padding: 0 0 0 20px !important;
}

.choose-city select {
    margin-bottom: 20px;
    padding: 22px 0 .625rem 20px !important;
}

.choose-city label {
    color: #8D8D8D !important;
    padding-left: 20px !important;
}

.comment {
    border-color: var(--border-color-1) !important;
    font: 12px 'BPG Mrgvlovani' !important;
    line-height: 16px;
    resize: none;
    height: 86px;
    padding: 15px 20px !important;
    margin-bottom: 20px;
}

.comment::placeholder {
    color: #8D8D8D !important;
}

.select-new-address .data-title {
    color: var(--primary-color);
    -webkit-text-stroke: 0.5px var(--primary-color);
}

.address-input {
    margin-bottom: 20px;
}

.delivery-method {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.delivery-method label {
    color: var(--text-color2) !important;
    cursor: pointer;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    max-width: calc(100% - 40px);
}

.info-block {
    background: white;
    border: 1px solid #F6F6F6;
    border-radius: 5px;
    color: #757575;
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    padding: 30px 18px;
}

/* pay page */
.pay-content > .products-in-cart {
    width: 100%;
}

.pay-content .desc { margin-bottom: 23px; }
.pay-content .price { margin-bottom: 0; }

.info-blocks {
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 45px;
    padding: 25px 30px;
    margin-bottom: 20px;
}

.contact-block div {
    background: var(--primary-color);
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
}

.contact-block p:first-of-type {
    color: var(--text-color2);
    font: bold 10px "Helvetica";
    line-height: 14px;
    margin-bottom: 9px;
}

.contact-block p:nth-of-type(2) {
    color: #757575;
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    margin-bottom: 0;
}

.pay-methods, .pay-methods-1 {
    background: white;
    border-radius: 5px;
    padding: 30px 30px 20px;
    margin-bottom: 20px;
}

.pay-methods > p:first-child {
    font: 14px 'Helvetica';
    line-height: 19px;
    margin-bottom: 14px;
}

.pay-methods button {
    background: #E9E9E9;
    border: none;
    border-radius: 5px;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.pay-methods button:hover {
    background: var(--primary-color);
    color: white;
}

.pay-methods div { gap: 8px; }

.pay-methods-1 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pay-methods-1 button {
    background: var(--text-color2);
    border: none;
    border-radius: 5px;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    height: 45px;
}

.pay-methods-1 button:last-child {
    background: var(--primary-color);
}

/* sell page */
.sell-container { padding: 40px 30px 90px; }

.page-title {
    color: var(--text-color);
    font: 24px 'Helvetica';
    line-height: 32px;
    margin-bottom: 25px;
}

.sell-prompt {
    display: flex;
    align-items: flex-start;
}

.sell-prompt > div {
    background: var(--primary-color);
    color: white;
    font: 14px 'Helvetica';
    line-height: 19px;
    padding: 85px 50px;
    width: 48%;
    height: 430px;
}

.sell-prompt > div p {
    margin-bottom: 25px;
}

.sell-prompt > div p:first-child {
    font: 20px 'Helvetica';
    line-height: 27px;
    margin-bottom: 30px;
}

.sell-prompt > div a {
    background: var(--text-color);
    color: unset;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 100%;
    height: 45px;
    transition: all 0.3s ease;
}

.sell-prompt > div a:hover {
    background: black;
}

.sell-prompt > img {
    border: 5px solid var(--text-color);
    width: 52%;
    height: 430px;
    object-fit: cover;
}

/* upload item without auth */
.sell-no-auth {
    max-width: 1054px;
    gap: 30px;
}

.sell-no-auth > img:first-child {
    width: 344px;
    height: 470px;
    object-position: left;
    object-fit: cover;
}

.sell-no-auth div p:first-child {
    color: var(--text-color);
    font: 24px 'Helvetica';
    line-height: 27px;
    margin-bottom: 55px;
}

.sell-no-auth div p:last-child {
    color: var(--text-color);
    font: 18px 'Helvetica';
    line-height: 22px;
    margin-bottom: 0;
}

.sell-no-auth div p:last-child a {
    color: var(--primary-color);
    text-decoration: none;
}

/* registration page */
.registartion-container { padding: 40px 30px 150px; }

.register-content {
    max-width: 1054px;
    gap: 30px;
}

.register-content > img:first-child,
.sell-auth > img:first-child {
    width: 32.6%;
    height: 930px;
    object-fit: cover;
    object-position: left;
}

.register-form, .sell-form {
    width: 64.5%;
}

.register-form label, .sell-form label,
.account-form label {
    color: #8D8D8D !important;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.choose-person, .selling-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.person-type, .sell-type {
    border: 1px solid #D4D4D4;
    border-radius: 5px;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 184px;
    height: 45px;
    transition: all 0.3s ease;
}

.person-type.active, .sell-type.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.person-type label, .sell-type label {
    color: var(--text-color) !important;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.person-type.active label, .sell-type.active label {
    color: white !important;
}

.choose-person input, .selling-options input {
    display: none;
}

.form-title {
    color: var(--text-color);
    font: 14px 'Helvetica';
    line-height: 17px;
    margin-bottom: 20px;
}

.fullname-register {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.fullname-register > div {
    width: 48.5%;
}

.phone-input {
    margin-bottom: 20px;
}

.personal-info > .phone-input {
    margin-bottom: 40px;
}

.phone-input > span:first-child {
    color: #8D8D8D;
    font: 9px 'BPG Mrgvlovani';
    line-height: 12px;
}

.phone {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.phone button {
    background: transparent;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'BPG Mrgvlovani' !important;
    line-height: 19px;
    height: 50px;
    width: 124px !important;
}

.phone .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 124px !important;
}

.phone .bootstrap-select .dropdown-menu {
    min-width: 220px;
}

.phone button {
    background: white;
}

.phone button:hover {
    border-color: var(--border-color);
    background: transparent;
}

.phone .bootstrap-select .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.phone #number, .trustee-phone,
.register-phone {
    width: calc(100% - 124px);
}

.register-city select, .passport-type select,
.selling-category select, .edit-city select {
    border-color: var(--border-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px !important;
    height: 50px !important;
    min-height: 50px !important;
    margin-bottom: 20px;
    padding: 22px 0 .625rem 20px !important;
}

.register-address, .identification-num, .passport-issue, .agree-terms,
.register-email, .register-pass, .confirm-pass, .edit-address, .edit-email,
.edit-pass {
    margin-bottom: 20px;
}

.eye-icon {
    position: absolute;
    right: 20.5px;
    top: 23px;
    transform: translateY(-50%);
    cursor: pointer;
}

.was-validated .form-control:invalid ~ .eye-icon {
    top: 23px;
}
  
.eye-icon img {
    width: 14.5px;
    height: 11.5px;
}

.service-agreement a {
    color: #014878;
    text-decoration: none;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
}

.agree-terms .form-check {
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.agree-terms label {
    color: var(--text-color) !important;
    font-size: 10px;
}

.agree-terms input {
    height: 20px !important;
    width: 20px !important;
    padding-left: 0 !important;
}

.register-btn { 
    font-family: "BPG Mrgvlovani Caps 2010";
    margin-bottom: 30px;
    width: 260px; 
}

.account-login {
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.account-login a {
    color: #014878;
    text-decoration: none;
}

/* upload item (with auth) */
.sell-auth {
    max-width: 1054px;
    gap: 30px;
}

#lot-name { margin-bottom: 15px; }
#lot-price { height: 60px !important; margin-bottom: 20px; }

#short-desc {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    padding: 20px;
    resize: none;
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
}

#short-desc:focus {
    outline: none;
}

.sell-btn { 
    font-family: "BPG Mrgvlovani Caps 2010";
    width: 390px; 
}

.file-upload-container {
    background: white;
    border-radius: 10px;
    padding: 36px 31px;
    margin-bottom: 30px;
}

.file-input {
    display: none;
}

.custom-file-upload {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 25px;
}

.custom-file-upload div p {
    color: #6B6B6B;
    margin-bottom: 0;
}

.custom-file-upload div p:first-child {
    color: black;
    font: bold 12px 'Helvetica';
    line-height: 15px;
    margin-bottom: 5px;
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.file-item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.file-item::before {
    content: "";
    position: absolute;
    left: 160px;
    bottom: 0;
    width: calc(100% - 160px);
    height: 1px;
    background: var(--border-color-1);
    z-index: 1;
}

.file-item:last-child { margin-bottom: 35px; }

.file-item > img:first-child {
    width: 130px;
    height: 75px;
    object-fit: cover;
}

.file-item > p:first-of-type {
    color: #6B6B6B;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 15px;
    width: calc(100% - 220px);
}

.delete-btn {
    background-image: url('../images/trash.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 13px;
    height: 15px;
    margin-bottom: 15px;
}

.delete-btn:hover {
    background-image: url('../images/trash-1.svg');
}

/* personal cabinet / personal info */
.cabinet-container { padding: 50px 30px 150px; }

.cabinet-title {
    color: black;
    -webkit-text-stroke: 0.5px var(--text-color2);
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 18px;
    margin-bottom: 30px;
}

.cabinet-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.account-nav {
    background: white;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    width: 270px;
}

.account-nav a {
    background: #F2F2F2;
    border-radius: 5px;
    color: unset;
    display: flex;
    align-items: center;
    font: 14px 'Helvetica';
    line-height: 18px;
    text-decoration: none;
    padding-left: 20px;
    width: 100%;
    height: 50px;
    transition: all 0.3s ease;
}

.account-nav a:hover, .account-nav a.active {
    background: var(--text-color);
    color: white;
}
.account-nav a svg { margin-right: 10px; }

.account-content { width: calc(100% - 290px); }
.mob-acc-heading { display: none; }

.account-form {
    background: white;
    border-radius: 5px;
    width: 100%;
}
.account-form:nth-of-type(1) { padding: 30px 54px 36px 30px; }
.account-form:nth-of-type(2) { padding: 0 54px 30px 30px; }

.account-form .form-title {
    font-family: 'Helvetica Roman';
}

.pass-change > p:first-child {
    color: var(--text-color);
    font: 18px 'Helvetica';
    line-height: 22px;
    margin-bottom: 20px;
}

.edit-btn {
    background: var(--text-color);
    border: none;
    color: white;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: 260px;
    height: 45px;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: var(--primary-color);
}

/* my autions (personal cabinet) */
.my-auctions-msg {
    color: black;
    -webkit-text-stroke: 0.5px var(--text-color2);
    display: inline-flex;
    margin: 90px 0 0 40px;
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 18px;
}

.my-auctions, .my-orders, .my-sales, .my-faves {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.lot-card, .order-card {
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.04));
    padding: 20px 77px 20px 20px;
    position: relative;
}

.lot-card > img:first-child, .order-card > img:first-child {
    width: 200px;
    height: 145px;
    object-fit: cover;
}

.lot-card-info, .order-info { width: calc(100% - 220px); }

.lot-card-info .title {
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 23px;
}

.lot-card-info .lot-num { margin-bottom: 20px; }
.finished-auction .title, .finished-auction .lot-num { margin-bottom: 10px; }

.lot-details, .order-details {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.finished-auction .lot-details { gap: 10px; }

.lot-details p, .order-details p {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}

.lot-details p span:first-child, .order-details p span:first-child {
    color: var(--primary-color);
    font: bold 12px 'Helvetica';
    line-height: 15px;
}

.lot-details p span:last-child, .order-details p span:last-child {
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.lot-bid {
    position: absolute;
    right: 27px;
    top: 71px;
    left: unset;
    margin-bottom: 0;
}

.ongoing .lot-bid, .complete .lot-bid { top: unset; bottom: 21px; }

.in-detail, .fave-card .buy {
    border: 1px solid #707070;
    border-radius: 16px;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 12px 'Helvetica Roman';
    line-height: 15px;
    width: 145px;
    height: 30px;
    position: absolute;
    bottom: 21px;
    right: 27px;
    transition: all 0.3s ease;
}

.fave-card .buy i { display: none; }

.in-detail:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.lot-history {
    background: white;
    border-radius: 5px;
    color: #4A4A4A;
    display: flex;
    column-gap: 70px;
    row-gap: 17px;
    flex-wrap: wrap;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding: 32px 27px 32px 40px;
    filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.04));
}

.lot-history p {
    display: flex;
    gap: 10px;
    margin: 0;
    min-width: 175px;
}

.lot-history span:first-child {
    color: var(--text-color);
    -webkit-text-stroke: 0.5px var(--text-color);
    font-family: "BPG Mrgvlovani Caps 2010";
}

/* direct(my) orders / (personal cabinet) */
.order-info .title {
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 23px;
}

.order-details p span:first-child { min-width: 125px;}
.finished-order .title { margin-bottom: 16px; }
.finished-order .order-details { gap: 10px; }

.my-orders .info-blocks {
    gap: 50px;
    margin: 0;
}

.inner-order-card .in-detail { width: 180px; }

/* my sales / (personal cabinet) */
.custom-select {
    position: relative;
    margin-bottom: 20px;
}

.custom-select-head {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 226px;
    height: 40px;
}

.custom-select-head p {
    color: #8D8D8D;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    margin-bottom: 0;
}

.custom-select-head i {
    font-size: 10px;
    transition: all 0.3s ease;
}

.custom-select-head.active { border-bottom: none; border-radius: 5px 5px 0 0; }
.custom-select-head.active i { transform: rotate(180deg); }

.custom-options {
    background: white;
    border-radius: 0 0 5px 5px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding: 0 16px 0 25px;
    position: absolute;
    top: 100%;
    width: 226px;
    max-height: 0;
    overflow: auto;
    z-index: 1;
}

.custom-options.visible {
    max-height: 175px;
    border: 1px solid var(--border-color);
    border-top: 0;
}

/* scrollbar styles */
.custom-options::-webkit-scrollbar {
    width: 3px; 
}

.custom-options::-webkit-scrollbar-thumb {
    background: #ECECEC; 
    height: 38px;
    border-radius: 2px;
}

.custom-option label {
    cursor: pointer;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.custom-option input {
    display: none;
}

.custom-option:first-child {
    padding-top: 17px;
}

.custom-option:last-child {
    padding-bottom: 23px;
}

.sales-card .delete {
    background: transparent;
    border: none;
    color: var(--primary-color);
    -webkit-text-stroke: 0.5px var(--primary-color);
    font: 10px 'BPG Mrgvlovani Caps 2010';
    line-height: 13px;
    position: absolute;
    bottom: 21px;
    right: 27px;
}
.sales-card .delete img { display: none; }

/* my faves (personal cabinet) */
.fave-card .buy {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    bottom: 60px;
}

.fave-card .buy:hover { background: #B21E38; border-color: #B21E38; }

/* address book (personal cabinet) */
.address-container {
    background: white;
    border-radius: 5px;
    filter: drop-shadow(0px 3px 19px rgba(0, 0, 0, 0.05));
    padding: 26px 26px 30px 30px;
    margin-bottom: 10px;
}

.address-container > p:first-child {
    font: 16px 'Helvetica';
    line-height: 20px;
    margin-bottom: 15px;
}

.address-book {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.address-card {
    border: 1px solid #EDECE7;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 50px 0 20px;
    width: 100%;
    height: 56px;
}

.address-icon {
    background: var(--primary-color);
    border-radius: 5px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    width: 29px;
    height: 29px;
}

.address-content { width: calc(100% - 90px); }
.address-actions { cursor: pointer; position: relative; }
.address-name {
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    margin-bottom: 0;
}

.additional-comment {
    color: #585858;
    font: 8px 'BPG Mrgvlovani';
    line-height: 11px;
    margin: 5px 0 0 0;
}

.address-actions button:first-child {
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    margin: 10px 0;
    width: 19px;
    height: 3px;
}

.actions-list {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 19px rgba(0, 0, 0, 0.16);
    display: none;
    list-style: none;
    padding: 20px;
    position: absolute;
    top: 100%;
    right: -21px;
    width: 206px;
    height: 130px;
    z-index: 55;
}

.actions-list li {
    background: #F6F6F6;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding-left: 17px;
    width: 100%;
    height: 40px;
    transition: all 0.3s ease;
}

.actions-list li:hover {
    background: #EBEBEB;
}

.actions-list.visible {
    display: flex;
    flex-direction: column;
    gap: 10px;
} 

.address-book-form {
    width: 100%;
    padding: 20px 0;
}

.address-book-form label {
    color: #8D8D8D;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.address-book-form input {
    color: black;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    height: 50px !important;
    padding-left: 21px !important;
}

.address-book-form .invalid-feedback span {
    color: #D90236;
    font: 10px 'BPG Mrgvlovani';
    line-height: 13px;
    padding-left: 5px;
}

.address-book-form .form-floating > label,
.address-book-form .form-floating > .form-control {
    padding-left: 21px !important;
}

.address-book-form textarea {
    font: 12px "BPG Mrgvlovani";
    line-height: 16px;
    resize: none;
    height: 86px !important;
    margin-bottom: 30px;
}

.add-address-btn {
    background: var(--text-color);
    border: none;
    color: white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 225px;
    height: 37px;
    transition: all 0.3s ease;
}

.add-address-btn:hover { background: var(--primary-color); }
.new-address-btn {
    background: transparent;
    border: none;
    font: 12px 'Helvetica';
    line-height: 16px;
    margin-left: 30px;
    width: 225px;
    height: 37px;
    transition: all 0.3s ease;
}

.new-address-btn:hover {
    background: var(--text-color);
    color: white;
}

#newAddressForm {
    background: white;
    border-radius: 5px;
    padding: 26px 26px 21px 30px;
    margin-top: 20px;
}

#newAddressForm > p:first-child {
    font: 12px 'Helvetica';
    line-height: 16px;
    margin-bottom: 20px;
}

#newAddressForm > div:last-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.hidenewAddress {
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: underline;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

/* subscription page (cabinet) */
.subscription-form {
    background: white;
    border-radius: 5px;
    padding: 25px 43px 40px 30px;
}

.subscription-form > p:first-child {
    font: 16px 'Helvetica';
    line-height: 21px;
    margin-bottom: 20px;
}

.subscription-form > p:nth-child(2) {
    font: 12px 'Helvetica';
    line-height: 16px;
    margin-bottom: 17px;
}
.subscription-form > p:nth-child(2) span { color: var(--primary-color); }
.subscription-form > p:nth-child(3) {
    color: var(--footer-bg);
    font: 16px 'Helvetica Roman';
    line-height: 21px;
    margin-bottom: 0;
}

.subscription-form hr {
    border-color: #C8C8C8;
    opacity: 1;
    margin: 20px 0 22px;
}

.subscription-form .subs-option {
    margin-bottom: 16px;
}

.subscription-form > p:last-of-type {
    font: 14px 'Helvetica Roman';
    line-height: 19px;
    margin-bottom: 28px;
}

/* experts page */
.experts-container { padding: 40px 30px 150px; } 
.experts-content {  max-width: 996px; }

.experts-head {
    background-image: url(../images/experts-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 320px;
    margin-bottom: 30px;
}
.experts-head-title { padding-left: 45px; }

.experts-content-text, .experts-content-text *,
.expert-text, .expert-text * {
    font: 14px 'Helvetica Roman' !important;
    line-height: 17px !important;
}
.experts-content-text { margin-bottom: 40px; }

.experts-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.expert-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.expert-preview {
    background: #F2F2F2;
    padding: 35px 20px 20px;
    position: relative;
    transition: all 0.3s ease;
}
.expert-card:hover .expert-preview { background: var(--primary-color); }

.expert-preview .status {
    color: var(--primary-color);
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}
.expert-card:hover .status { color: white; }
.expert-card:hover .name { color: white; -webkit-text-stroke-color: white; }

.explore-more {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font: 10px 'Helvetica Roman';
    gap: 0px;
    line-height: 12px;
    position: relative;
    margin-right: 20px;
    transition: all 0.3s ease;
}
.explore-more span { display: none; }
.expert-card:hover .explore-more { margin-right: 0; gap: 20px; }
.expert-card:hover .explore-more span { display: flex; }

.explore-more div {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: black;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease;
}
.expert-card:hover .explore-more div { color: white; }

/* inner expert page */
.current-expert {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 100px;
}

.current-expert > img {
    width: 390px;
    height: 400px;
    object-fit: cover;
}

.expert-description {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: calc(100% - 410px);
}

.expert-info {
    background: #F2F2F2;
    padding: 25px 30px;
}

.expert-info .name, .other-experts-title,
.expert-preview .name {
    font: 16px 'BPG LE Studio 02 Caps';
    line-height: 21px;
    -webkit-text-stroke: 0.5px black;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.expert-info .status {
    color: var(--primary-color);
    font: 14px 'Helvetica Roman';
    line-height: 17px;
    margin-bottom: 20px;
}

.expert-info a {
    color: black;
    text-decoration: none;
    font: 14px 'BPG LE Studio 02 Caps';
    line-height: 19px;
    -webkit-text-stroke: 0.5px black;
}

.contact-expert {
    background: var(--border-color);
    color: black;
    text-decoration: none;
    font: 16px 'BPG Mrgvlovani Caps 2010';
    line-height: 22px;
    width: 185px;
    height: 50px;
    transition: all 0.3s ease;
}
.contact-expert:hover { background: var(--primary-color); color: white; }
.other-experts-title { margin-bottom: 30px; }

#guaranteeModal .modal-content { min-width: 600px !important; left: -50px; }

.guarantee-header {
    color: var(--text-color2);
    -webkit-text-stroke: 0.5px var(--text-color2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 14px 'BPG Mrgvlovani Caps 2010';
}

.guarantee-header button, .price-header button,
.current-price-header button {
    background: transparent;
    border: none;
    color: var(--primary-color);
    -webkit-text-stroke: 0.5px var(--primary-color);
}

.guarantee-methods {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.guarantee-methods button {
    border: none;
    color: white;
    -webkit-text-stroke: 0.5px white;
    font: 12px 'BPG Mrgvlovani Caps 2010';
    line-height: 16px;
    width: 170px;
    height: 45px;
}

.guarantee-methods button:first-child:before {
    content: '';
    background: var(--text-color2);
    height: 100%;
    width: 1px;
    position: absolute;
    right: -10px;
    top: 0;
}

.guarantee-methods button:first-child {
    background: var(--text-color);
    position: relative;
    transition: all 0.3s ease;
}
.guarantee-methods button:first-child:hover { background: var(--primary-color); }

.guarantee-methods button:nth-child(2), .guarantee-methods button:last-child {
    border-radius: 23px;
    -webkit-text-stroke-color: transparent;
} 
.guarantee-methods button:nth-child(2) { background: #FD671A; }
.guarantee-methods button:last-child { background: #00ADF1; }

.guarantee-terms {
    color: var(--text-color);
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
}

.guarantee-terms span {
    color: var(--primary-color);
    font-family: "BPG Mrgvlovani Caps 2010";
    margin-right: 10px;
}

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

.price-header div {
    color: var(--text-color);
    display: flex;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    width: calc(100% - 40px);
}

.price-header div p {
    -webkit-text-stroke: 0.5px var(--text-color);
    flex: 1;
    margin-bottom: 0;
}

.price-body {
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
    font: 12px 'BPG Mrgvlovani';
    line-height: 16px;
    overflow-y: auto;
    height: 200px;
}

.price-body div {
    display: flex;
    width: calc(100% - 40px);
}

.price-body div span {
    flex: 1;
}

.price-body::-webkit-scrollbar, .choose-items::-webkit-scrollbar { display: none; }
.price-body, .choose-items {
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

.bid-status {
    display: none;
    flex-direction: column;
    font: 14px 'BPG Mrgvlovani Caps 2010';
    line-height: 19px;
    margin-bottom: 20px;
}
.bid-status span, .bid-status p:last-child { color: var(--secondary-color); }
.bid-status p { margin-bottom: 0; }
.bid-status.active { display: flex; }
.bid-status p:last-child { display: none; }

.bid-status p:first-child { margin-bottom: 15px; }
.bid-status p:first-child span:first-child { color: unset; }

.bid-status.another-message p:nth-child(2),
.bid-status.another-message p:nth-child(3) { display: none; }
.bid-status.another-message p:last-child { display: inline-flex; }

.current-price-header { 
    border: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-price-header div {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 20px;
    font: 14px 'BPG Mrgvlovani';
    line-height: 19px;
}

.current-price-header div span:last-child {
    color: var(--primary-color);
    -webkit-text-stroke: 0.5px var(--primary-color);
}

.auction-card .start-finish {
    flex-direction: column;
    align-items: unset;
    gap: 5px;
    span:first-child { min-width: unset; }
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    column-gap: 20px;
    row-gap: 30px;
}

.result-status {
    color: var(--text-color);
    --webkit-text-stroke: 0.5px var(--text-color);
    font: 14px "Helvetica";
    line-height: 17px;
    margin-bottom: 10px;
}

.result-status1 {
    border: none;
    width: 200px;
}