@import 'settings.css';
@import 'head-menu.css';
@import 'paragraphs.css';
@import 'dialogs.css';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    /* scroll-behavior: smooth; */
}

.btn {
    background-color: var(--accent-color-2);
    color: #fff;
    transition: 0.3s ease;
    padding: 10px 25px;
    text-decoration: none;
    display: flex;
    width: max-content;
    cursor: pointer;
    text-transform: uppercase;
    /* margin: 2px; */
}
.btn:hover {
    background-color: var(--accent-color-1);
    box-shadow: 0 0 0 2px #fff, 0 0 25px -10px #000;
}

.btn.btn--inverted {
    background-color: var(--accent-color-1);
    color: #fff;
}
.btn.btn--inverted:hover {
    background-color: var(--accent-color-2);
    box-shadow: 0 0 0 2px #fff, 0 0 25px -10px #000;
}

.btn.btn--transparent {
    background-color: transparent;
    box-shadow: 0 0 0 1px var(--accent-color-1);
    color: var(--accent-color-1);
}
.btn.btn--transparent:hover {
    background-color: transparent;
    box-shadow: 0 0 0 1px var(--accent-color-2), 0 0 25px -10px #000;
    color: var(--accent-color-2);
}

.sect-ttl {
    font-size: clamp(30px, 4vw, 46px);
    color: #000000;
    font-weight: 300;
}
.sect-ttl span {
    color: var(--accent-color-2);
}

.h-slider {
    margin-bottom: -200px;
    min-height: 700px;
    max-height: 1000px;
}
.swiper.h-swiper {
    width: 100%;
    height: 100vh;
    max-height: 1000px;
}

.h-swiper .swiper-slide {
    position: relative;
}

.swiper.h-swiper .swiper-button-next,
.swiper.h-swiper .swiper-button-prev {
    top: 35% !important;
    color: #fff !important;
    font-weight: 300 !important;
}

.swiper-slide__content {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 70%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100%;
    color: #fff;
    max-width: 80%;
    padding-inline: var(--block-padding);
}
.swiper-slide__content__img {
    max-width: 700px;
    height: 100%;
    padding: 50px 0 50px 50px;
}
.swiper-slide__content__img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}
.swiper-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    --h-overlay-width: 300px;
}
.swiper-slide__overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--h-overlay-width);
    height: 100%;
    background: rgba(196, 196, 196, 0.5);
    transform: skew(20deg);
}
.swiper-slide__overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% + var(--h-overlay-width) + 10px);
    width: 100%;
    height: 100%;
    background: rgba(196, 196, 196, 0.789);
    transform: skew(20deg);
}
.swiper-slide .swiper-slide__bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide__content__txt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px 0;
    max-height: 650px;
    overflow-y: auto;
    overflow-x: hidden;
}
.swiper-slide__content__txt .btn {
    padding: 20px 25px;
    margin: 40px 2px 2px 2px;
}
.swiper-slide__content__txt h1 {
    font-weight: bold;
    font-size: clamp(25px, 3vw, 65px);
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}
.swiper-slide__content__txt a {
    margin-top: 40px;
}

.h-main-tabs {
    padding-top: 0;
    min-height: 400px;
    position: relative;
    z-index: 4;
}
.h-main-tabs .block {
    width: 90%;
    margin: 0 auto;
    background-color: var(--bg-color-1);
}
.main-tabs {
    display: flex;
    justify-content: stretch;
}
.tab-content {
    padding: 40px;
}
.main-tabs.tab-buttons {
    /* overflow-y: visible;
    overflow-x: hidden; */
}
.main-tabs .tab-button {
    background-color: var(--accent-color-1);
    font-size: 26px;
    font-size: clamp(10px, 3vw, 30px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    width: 100%;
    padding: 8px;
    transition: 0.3s ease;
    box-shadow: 0 -10px 0 0px rgba(0, 0, 0, 0.22);
}
.tab-button.tab-button--arrow > span {
    padding-right: 20px;
    position: relative;
}
.tab-button.tab-button--arrow > span::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #a8d1da;
}
.tab-button.active.tab-button--arrow > span::after {
    border-top: 10px solid var(--accent-color-1);
}
.main-tabs .tab-button.active {
    background-color: var(--bg-color-1);
    color: #1e1e1e;
    box-shadow: 0 -10px 0 0px rgba(255, 255, 255, 0.22), 5px 0 5px -3px rgba(0, 0, 0, 0.22);
    z-index: 1;
}

.inner-tabs.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 240px));
    justify-content: center;
    grid-gap: 40px 20px;
    margin-top: 20px;
}

.products-grid__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
    background-color: #fff;
    max-width: 236px;
    text-align: center;
    padding: 15px;
    box-shadow: 0 30px 35px -30px rgba(0, 0, 0, 0.22);
}
.products-grid__item:hover {
    transform: scale(1.1);
    box-shadow: 0 0 35px -10px rgba(0, 0, 0, 0.22);
}
.products-grid__item > img {
    display: block;
    max-width: 100%;
    margin: 0 auto 20px auto;
    transition: 0.3s ease;
}

.products-grid__item > div p {
    font-size: 16px;
    line-height: 110%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
}
.products-grid__item > div small {
    font-size: 12px;
    color: var(--accent-color-1);
}

.auction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 350px));
    justify-content: center;
    grid-gap: 40px 20px;
    margin-top: 20px;
}
.auction-grid__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
    background-color: #fff;
    color: #000;
    max-width: 100%;
    text-align: center;
    border: 1px solid #e0e0e0;
    padding: 30px 15px;
    box-shadow: 0 30px 35px -30px rgba(0, 0, 0, 0.22);
}
.auction-grid__item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px -10px rgba(0, 0, 0, 0.22);
}

.auction-grid__item > img {
    display: block;
    max-width: 165px;
    margin: 25px auto;
    transition: 0.3s ease;
}
.auction-grid__item .auction-grid__item__time {
    margin-bottom: 20px;
}
.auction-grid__item .auction-grid__item__loc {
    margin-bottom: 30px;
    width: 80%;
}
.auction-grid__item .auction-grid__item_details {
    border: 1px solid var(--accent-color-1);
    color: var(--accent-color-1);
    padding: 10px 15px;
}
.viewAllAuctionsLink {
    display: block;
    width: max-content;
    margin: 50px auto 0 auto;
    font-weight: 300;
    font-size: 22px;
    line-height: 26px;
    text-decoration-line: underline;
    color: #000000;
}

.inner-tabs .tab-button {
    /* font-size: 20px; */
    font-size: clamp(12px, 3vw, 20px);
    /* line-height: 24px; */
    text-transform: uppercase;
    color: #000000;
    padding: 3px 45px;
    border-bottom: 3px solid #e0e0e0;
    transition: 0.3s ease;
}
.inner-tabs .tab-button.active {
    border-bottom: 3px solid var(--accent-color-1);
    color: var(--accent-color-1);
}
.points {
    background-image: url(/img/backgrounds/specs_block_bg.jpg);
    background-color: #05252cd5;
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.points-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 75px 0;
}
.points__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 220px;
    text-align: center;
    margin: 20px;
    color: #fff;
    text-decoration: none;
}
.points__item h5 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}
.points__item > img {
    width: 95px;
    height: 95px;
    margin-bottom: 20px;
}

.vendors-slider {
    padding: 70px 0;
}
.vendors-slider .sect-ttl {
    margin-bottom: 30px;
}
.vendors-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev,
.vendors-swiper .swiper-button-prev {
    color: #bdbdbd !important;
}
.vendors-slider .swiper-wrapper {
    align-items: center;
}
.vendors-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
}
.grid-1fr-3fr {
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.question-block {
    background-color: var(--accent-color-1);
    padding: 75px;
    color: #fff;
}
.question-block h1 {
    font-weight: bold;
    font-size: 30px;
    line-height: 110%;
    text-transform: uppercase;
}
.question-block__ttl {
    margin-bottom: 50px;
}
.question-block form {
    width: 90%;
    margin-left: auto;
}
.question-block input {
    padding: 10px;
    margin-bottom: 35px;
}
.question-block form button {
    font-size: 16px;
    line-height: 110%;
    text-transform: uppercase;
    color: #05252c;
    background-color: #a8d1da;
    padding: 10px;
    width: 100%;
    text-align: center;
    margin-top: 35px;
    transition: 0.3s ease;
}
.question-block form button:hover {
    background-color: var(--accent-color-1);
    box-shadow: 0 0 35px -10px rgba(0, 0, 0, 0.624);
    color: #fff;
}

.testimonials {
    padding: 45px 55px;
    background-color: var(--bg-color-1);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
}
.testimonials-grid__item {
    background-color: #fff;
    padding: 35px;
    box-shadow: 0 30px 35px -30px rgba(0, 0, 0, 0.22);
}
.testimonials-grid__item__quote {
    padding-left: 40px;
    position: relative;
    line-height: 150%;
    margin-top: 25px;
}
.testimonials-grid__item__quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 20px;
    background-image: url(/img/icons/hm_quotes_icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.contactus-ad {
    background-image: url(/img/backgrounds/cut_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
}
.contactus-ad > div {
    display: flex;
    align-items: center;
    gap: 50px;
}
.contactus-ad__text {
    display: flex;
    flex-direction: column;
    text-align: right;
    flex: 0 0 65%;
}
.contactus-ad__text h1 {
    font-weight: 300;
    font-size: clamp(22px, 3vw, 50px);
    text-align: right;
    text-transform: uppercase;
    color: #05252c;
}
.contactus-ad__text b {
    /* font-size: 40px; */
    font-size: clamp(16px, 3vw, 40px);
    text-align: right;
    letter-spacing: -0.04em;
    color: var(--accent-color-1);
}
.contactus-ad > div > a {
    color: var(--accent-color-1);
    padding: 25px;
    border: 1px solid var(--accent-color-1);
    /* font-size: 26px; */
    font-size: clamp(16px, 3vw, 26px);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: max-content;
    transition: 0.3s ease;
}
.contactus-ad > div > a:hover {
    background-color: var(--accent-color-1);
    box-shadow: 0 0 35px -10px rgba(0, 0, 0, 0.624);
    color: #fff;
}

.grid-3fr-1fr {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-gap: 40px;
}
.h-certificates {
    padding: 55px;
}
.h-certificates__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}
.h-certificates__grid__item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.h-certificates__grid__item img {
    max-width: 100%;
}

.sale-block {
    background-image: url(/img/backgrounds/hm_sale_bg.jpg);
    background-color: #05252cd5;
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 55px;
    text-decoration: none;
}
.sale-block > div {
    position: sticky;
    top: 130px;
}
.sale-block:hover .sale-block__offer > h2,
.sale-block:hover .sale-block__offer > h1 {
    color: var(--accent-color-2);
}
.sale-block__offer p {
    color: #fff;
}
.sale-block__ttl {
    font-weight: bold;
    font-size: clamp(25px, 3vw, 52px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #a8d1da;
}
.sale-block__offer {
    border: 1px solid #a8d1da;
    padding: 15px;
    margin: 20px 0;
}
.sale-block__offer > h2:first-of-type {
    /* font-size: 39.6967px; */
    font-size: clamp(25px, 3vw, 40px);
    line-height: 100%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    transition: 0.3s ease;
    text-align: center;
}
.sale-block__offer > h1 {
    font-weight: 800;
    /* font-size: 99.2417px; */
    font-size: clamp(35px, 5vw, 99px);
    line-height: 110%;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    transition: 0.3s ease;
    text-align: center;
}
.sale-block__offer > h2:last-of-type {
    font-weight: bold;
    /* font-size: 37.6674px; */
    font-size: clamp(25px, 3vw, 37px);
    text-transform: uppercase;
    color: #ffffff;
    transition: 0.3s ease;
    text-align: center;
}
.sale-block .sale-block__link {
    display: block;
    font-size: 18px;
    letter-spacing: 0.02em;
    color: #a8d1da;
}
/* || FOOTER || */
.f-top {
    background-color: var(--bg-color-1);
    padding-block: 45px;
}
.f-top__item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    column-gap: 7%;
}
.f-logo-block > a {
    display: block;
    margin-bottom: 50px;
}
.f-logo-block > a > img {
    max-width: 100%;
}
.f-logo-block > div a {
    margin-right: 30px;
}

.f-offers-block,
.f-info-block {
    border-right: 1px solid #e0e0e0;
}
.f-title {
    font-size: 16px;
    line-height: 110%;
    text-transform: uppercase;
    padding-left: 20px;
    position: relative;
}
.f-title::after {
    content: '\005C \005C ';
    position: absolute;
    top: 0px;
    left: 0;
    width: 20px;
    height: 20px;
    transition: 0.2s ease;
    color: var(--accent-color-2);
}
.f-links {
    margin-top: 20px;
    list-style: none;
}
.f-links a {
    display: block;
    text-decoration: none;
    color: #333333;
    padding: 2px 0;
    transition: 0.3s ease;
}
.f-links a:hover {
    color: var(--accent-color-1);
}
.f-contact-block > p {
    padding-left: 20px;
    color: #828282;
}
.f-contact-block__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    margin-top: 35px;
}
.f-contact-block__contact {
    display: flex;
    gap: 10px;
}
.f-contact-block__contact a {
    white-space: nowrap;
    color: #333333;
    text-decoration: none;
}
.f-bottom {
    background-color: #bdbdbd;
}
.f-bottom__item {
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #828282;
}
.f-bottom__item a {
    color: #828282;
}

.subscription {
    position: fixed;
    top: 300px;
    right: -210px;
    z-index: 8;
    width: 300px;
    box-shadow: 0px 28px 42px -31px rgba(0, 0, 0, 0.3);
}
.subscription__top {
    display: flex;
    background-color: var(--accent-color-2);
}
.subscription__open-trigger {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 90px;
    cursor: pointer;
}
.subscription__form-trigger {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    background-color: #edbe37;
    cursor: pointer;
}
.subscription__form-trigger h4 {
    font-weight: normal;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 5px;
}
.subscription__form-trigger h5 {
    font-weight: normal;
    font-size: 12px;
    text-transform: uppercase;
    color: #000000;
}

.subscription__bottom {
    background-color: var(--accent-color-2);
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}
.subscription.subscription--active .subscription__bottom {
    max-height: 500px;
}
.subscription__bottom h4 {
    font-weight: bold;
    font-size: 16px;
    line-height: 110%;
    text-transform: uppercase;
    color: #ffffff;
}
.subscription__bottom p {
    color: #fff;
    margin-bottom: 17px;
}
.subscription__bottom form {
    padding: 20px;
}
.subscription__bottom button {
    font-size: 16px;
    line-height: 110%;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--accent-color-1);
    padding: 10px;
    width: 100%;
    text-align: center;
    margin-top: 35px;
    transition: 0.3s ease;
}
.subscription__bottom input {
    margin-bottom: 9px;
    padding: 8px;
}
.subscription__bottom button:hover {
    /* background-color: #a8d1da; */
    background-color: var(--accent-color-2);
    box-shadow: 0 0 35px -10px rgba(0, 0, 0, 0.624);
    color: #fff;
}

/* || PAGE HEAD || */
.page-head {
    background-color: var(--overlay-color);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
    min-height: 300px;
    padding-top: 60px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
}
.page-head__container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding-inline: var(--block-padding);
}
.page-head__title {
    font-weight: 300;
    font-size: 65px;
    font-size: clamp(35px, 4vw, 65px);
    /* line-height: 65px; */
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}
.page-head__breadcrumbs {
    background-color: rgba(5, 37, 44, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: fit-content;
    margin: 0 auto;
    margin-top: 10px;
    padding: 5px 20px;
}
.page-head__breadcrumbs > .page-head__crumb {
    display: block;
    color: #a8d1da;
    font-size: 16px;
    /* line-height: 150%; */
    text-decoration: none;
    padding: 0 15px 0 20px;
    position: relative;
}
.page-head__breadcrumbs > .page-head__crumb.page-head__crumb--no-hover:hover {
    text-decoration: none;
}
.page-head__breadcrumbs > .page-head__crumb:hover {
    text-decoration: underline;
}
.page-head__breadcrumbs > .page-head__crumb:not(:first-child)::before {
    content: '/';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 20px;
    transition: 0.2s ease;
    color: #a8d1da;
}
.page-head__links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: fit-content;
    margin: 0 auto;
    margin-top: 47px;
}
.page-head__link {
    font-weight: normal;
    font-size: clamp(14px, 2vw, 20px);
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.508);
    margin: 5px 10px;
    transition: 0.3s ease;
}
.page-head__link.page-head__link--openAuction {
    position: relative;
    padding-right: 45px;
}
.page-head__link.page-head__link--openAuction::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background-color: var(--accent-color-2);
    background-image: url(/img/icons/hm_auction_icon.svg);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.3s ease;
}
.page-head__link.page-head__link--openAuction:hover {
    padding: 10px 15px;
    padding-left: 45px;
    background-color: var(--accent-color-2);
}
.page-head__link.page-head__link--openAuction:hover::after {
    right: calc(100% - 40px);
}
.page-head__link:hover {
    box-shadow: 0 0 0 2px var(--accent-color-2);
}
.page-head__link.page-head__link--active {
    background-color: var(--accent-color-2);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.508), 0 0 20px -5px rgba(255, 255, 255, 0.289);
}

/* || Categories || */
.categories-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(200px, 400px)); */
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    /* grid-template-rows: 400px; */
    grid-gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.categorie-card {
    width: 100%;
    transition: 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 48px 42px -41px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.categorie-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 20px 42px -41px var(--accent-color-1);
}
.categorie-card .categorie-card__img {
    background-color: #fff;
    width: 100%;
    height: 256px;
    object-fit: scale-down;
}
/* .categorie-card .categorie-card__img img {
    width: 100%;
    height: 256px;
    object-fit: scale-down;
} */
.categorie-card .categorie-card__txt {
    background-color: #f9f9f9;
    padding: 13px;
    text-align: center;
    /* height: 100%; */
}
.categorie-card .categorie-card__title {
    font-weight: bold;
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
}
.categorie-card__qty {
    display: block;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #828282;
    margin: 5px 0 10px 0;
}
.categorie-card__link {
    display: block;
    width: max-content;
    margin: 0 auto;
    background-color: var(--accent-color-1);
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 8px 15px;
}

/* || Vendors || */
.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 260px));
    justify-content: center;
    grid-gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.vendor-card {
    width: 100%;
    transition: 0.3s ease;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 48px 42px -41px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 28px 20px;
}
.vendor-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 20px 42px -41px var(--accent-color-1);
}
.vendor-card .vendor-card__title {
    font-weight: bold;
    font-size: clamp(14px, 2vw, 18px);
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 18px;
}
.vendor-card .vendor-card__img {
    background-color: #fff;
    width: 100%;
    height: 110px;
    object-fit: scale-down;
}
.vendor-card__link {
    display: block;
    width: max-content;
    margin: 35px auto 0 auto;
    background-color: var(--accent-color-1);
    font-size: 14px;
    color: #ffffff;
    padding: 8px 15px;
}

/* || New auction || */
.new-auction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    grid-gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.new-auction-grid.new-auction-grid--search {
    padding-top: 0;
}
.new-auction-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 0 30px;
    grid-template-areas:
        'new-auction-card__txt-top new-auction-card__logo'
        'new-auction-card__txt-bottom new-auction-card__txt-bottom'
        'new-auction-card__buttons new-auction-card__buttons';
    width: 100%;
    background-color: #fff;
    padding: 35px 53px;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 48px 42px -41px rgba(0, 0, 0, 0.1);
}

.new-auction-card__row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    margin-bottom: 20px;
}
.new-auction-card__row .new-auction-card__buttons-wrapper {
    min-width: 150px;
}
.new-auction-card__buttons-wrapper .btn {
    margin: 5px;
}
.new-auction-card__title {
    margin-bottom: 30px;
}

.new-auction-card__txt-top {
    grid-area: new-auction-card__txt-top;
}
.new-auction-card__logo {
    grid-area: new-auction-card__logo;
}
.new-auction-card__logo > img {
    max-width: 100%;
}
.new-auction-card__txt-bottom {
    grid-area: new-auction-card__txt-bottom;
}
.new-auction-card__buttons {
    grid-area: new-auction-card__buttons;
}
.new-auction-card__row-inner-rigrt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.new-auction-card__row-inner-rigrt > a {
    color: var(--accent-color-1);
    white-space: nowrap;
    display: block;
    margin-right: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.new-auction-card__buttons .new-auction-card__row .new-auction-card__buttons-wrapper {
    width: fit-content;
    display: flex;
}

.new-auction-card__buttons .btn {
    margin-right: 10px;
    white-space: nowrap;
    /* height: max-content; */
}

/* || AUCTION || */
.auction-specs {
    padding: 71px 0 54px 0;
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 100px;
    justify-content: space-between;
}
.auction-specs__title {
    font-weight: 300;
    font-size: clamp(30px, 4vw, 46px);
    color: #000000;
    margin-bottom: 40px;
}
.auction-specs__txt-block {
    flex: 0 0 60%;
}
.auction-specs__txt-block .new-auction-card__buttons-wrapper {
    margin-top: 40px;
    display: flex;
}
/* .auction-specs__map {
    justify-self: center;
} */
.auction-specs__map .auction-specs__map-iframe {
    width: 100%;
    height: 100%;
    border: 5px solid #fff;
    box-shadow: 0px 15px 25px -10px rgba(0, 0, 0, 0.253);
}
.auction-specs__map a {
    color: #000;
}
.auction-specs__map img {
    max-width: 100%;
    min-width: 300px;
}

.auction-content-grid {
    padding: 71px 0 54px 0;
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 100px;
    justify-content: space-between;
}
.auction-content-grid__title {
    font-weight: bold;
    font-size: 24px;
    color: #000000;
}
.auction-list__item {
    padding: 40px 0;
}
.auction-list__item__title {
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}
.auction-list__item__title::before {
    content: '\005C \005C';
    position: absolute;
    color: var(--accent-color-1);
    top: 0;
    left: 0;
    width: 20px;
    height: 16px;
    transform-origin: left;
    transition: transform 0.3s ease;
}
.auction-list__item__txt p {
    margin-bottom: 3px;
    font-size: clamp(14px, 2vw, 16px);
}
.auction-list__item__txt {
    line-height: 150%;
}

.auction-gallery__items {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: sticky;
    top: 140px;
    padding: 40px 0;
}
.auction-gallery__items > a {
    display: block;
    padding-right: 15px;
    margin-bottom: 10px;
}
.auction-gallery__items img {
    /* width: 100%; */
    max-width: 100%;
    object-fit: cover;
}
.fancy-auction-gallery.fancybox__container {
    --fancybox-bg: rgba(0, 0, 0, 0.618);
    --fancybox-thumbs-width: 210px;
    --fancybox-thumbs-height: 140px;
    --fancybox-accent-color: var(--accent-color-1);
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
    --carousel-button-color: rgb(51, 51, 51);
}
.fancy-auction-gallery .fancybox__toolbar {
    background: var(--fancybox-bg);
    text-shadow: none;
}
.fancy-auction-gallery .fancybox__carousel {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #fff;
    margin-top: 30px;
}
.fancy-auction-gallery .fancybox__thumbs {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    margin-bottom: 30px;
    opacity: 1;
    padding: 0 100px 60px 100px;
}
.fancy-auction-gallery .fancybox__toolbar {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 30px;
    background-color: #fff;
}
.fancy-auction-gallery .fancybox__slide {
    padding: 64px 100px 20px 100px;
}

/* || PAST AUCTIONS || */
.past-auction-grid {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.past-auction-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 48px 42px -41px rgb(0 0 0 / 10%);
    padding: 25px 0;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}
.past-auction-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 20px 42px -41px var(--accent-color-1);
}
.past-auction-card .past-auction-card__status {
    background-color: var(--accent-color-1);
    font-size: 16px;
    color: #fff;
    padding: 10px 34px;
    text-transform: uppercase;
    text-align: center;
}
.past-auction-card .past-auction-card__title {
    font-size: clamp(14px, 2vw, 18px);
    padding: 33px 24px;
    text-align: center;
}
.past-auction-card .past-auction-card__img {
    max-width: 90%;
    height: 130px;
    object-fit: scale-down;
    display: block;
    margin: 0 auto;
}
.past-auction-card .past-auction-card__specs {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 15px;
    padding: 24px 34px;
}

/* || Contact Us Page || */
.contact-block {
    padding: 50px 0;
    /* width: 90%; */
    margin: 0 auto;
    display: flex;
}
.contact-content {
    max-width: 400px;
    flex: 1 0 100%;
    display: flex;
    flex-direction: column;

    border-right: 1px solid #e0e0e0;
}
.contact-content > div > * {
    font-family: var(--secondary-font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    text-decoration: none;
}
.contact-content > div {
    margin-bottom: 70px;
    padding-left: 50px;
    position: relative;
}
.contact-content > div > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
}

.contact-content .contact-content__ttl,
.contact-form .contact-content__ttl {
    display: flex;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent-color-1);
    font-size: 18px;
    margin-bottom: 15px;
}
.contact-content__socials {
    display: flex;
}
.contact-content__socials a {
    display: inline-block;
    margin-right: 25px;
}
.contact-form {
    width: 100%;
    padding: 0 10%;
}
.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
}
.contact-form form input,
.contact-form form textarea,
.contact-form form .file-upload {
    margin-bottom: 15px;
    background-color: #f2f2f2;
}

.contact-form form > div:first-child,
.contact-form form textarea {
    grid-column: 1/3;
    margin-bottom: 30px;
}
.contact-form form .btn {
    display: flex;
    width: max-content;
    justify-content: center;
    padding: 20px 50px;
}
.map {
    display: block;
    width: 100%;
    height: 80vh;
    background-image: url(/img/misc/hm_contact_map.jpg);
    background-position: 64% 0;
    background-size: cover;
}

/* || NEWS || */
.sect-with-menu {
    display: grid;
    grid-template-columns: max-content 1fr;
    max-width: var(--max-width);
    margin: 0 auto;
}
.swm__side-block {
    width: 30vw;
    min-width: 200px;
    max-width: 530px;
    /* background-color: var(--backgroud-color-1); */
}

.swm__menu__title {
    background-color: #e0e0e0;
    padding: 6px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.swm__menu ul {
    position: sticky;
    top: 120px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    overflow-x: hidden;
}
.swm__menu {
    background-color: var(--backgroud-color-1);
    padding-left: 100px;
    padding-right: 0;
    padding-bottom: 50px;
    padding-top: 30px;
    height: 100%;
    max-height: calc(100% - 335px);
}
.swm__menu.swm__menu--services {
    height: fit-content;
    max-height: unset;
    background-color: var(--bg-color-1);
}
.swm__register.swm__menu--services {
    height: auto;
    padding: 0;
}
.swm__register.swm__menu--services .question-block {
    min-width: unset;
}

.swm__menu ul {
    list-style: none;
}
.swm__menu ul li {
    padding: 5px 30px 10px 20px;
    position: relative;
    /* border-left: 3px solid #e0e0e0; */
}
.swm__menu ul li:before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0px;
    width: 13px;
    height: 13px;
    background-image: url(/img/icons/hm_arrow_right_small.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.swm__menu ul li.active {
    /* border-left: 3px solid var(--accent-color-2); */
}
.swm__menu ul li.active a {
    font-weight: 600;
    color: var(--accent-color-1);
}
.swm__menu ul li a {
    display: block;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #333333;
    text-transform: uppercase;
}

.swm__register {
    background-color: #a8d1da33;
    padding-left: 100px;
    padding-right: 0;
    padding-bottom: 50px;
    padding-top: 30px;
    height: 335px;
    display: flex;
    align-items: center;
}
.swm__register__form {
    border: 1px solid #a8d1da;
    padding: 11px 21px;
    margin-right: 20px;
}
.swm__register__form__title {
    color: var(--accent-color-1);
    font-weight: bold;
    font-size: clamp(18px, 2vw, 30px);
    text-transform: uppercase;
}
.swm__register__form__sub-title {
    margin: 8px 0 16px 0;
}
.swm__register__submit button {
    font-size: 16px;
    line-height: 110%;
    text-transform: uppercase;
    color: #05252c;
    background-color: #a8d1da;
    width: fit-content;
    padding: 10px 20px;
    text-align: center;
    margin-top: 25px;
    transition: 0.3s ease;
}
.swm__register__submit button:hover {
    background-color: var(--accent-color-1);
    box-shadow: 0 0 35px -10px rgb(0 0 0 / 62%);
    color: #fff;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 50px 30px;
    margin: 50px auto;
}
.news-grid__ttl {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    color: #1e1e1e;
    margin-top: 50px;
}
.news-grid__item {
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333;
}
.news-grid__item .news-grid__img img {
    width: 100%;
    height: auto;
    max-height: 285px;
    object-fit: cover;
}
.news-grid__item .news-grid__date {
    color: #bdbdbd;
    position: relative;
    padding-left: 30px;
    margin: 20px 0;
}
.news-grid__item .news-grid__date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background-image: url(/img/icons/hm_calendar_icon.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.news-grid__item .news-grid__title,
.news-grid__item .news-grid__text {
    margin-bottom: 25px;
}
.news-grid__item .news-grid__title h3 {
    text-transform: uppercase;
    font-size: clamp(16px, 2vw, 20px);
}
.news-grid__item .news-grid__learn {
    color: var(--accent-color-1);
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
.pagination .pagination__item {
    display: inline-block;
    padding: 10px;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: 0 5px;
    text-decoration: none;
    color: #333;
    background-color: var(--bg-color-1);
    border-radius: 5px;
}
.pagination .pagination__item.active {
    background-color: var(--accent-color-1);
    color: #fff;
}

.news-date {
    display: flex;
    align-items: center;
    color: #bdbdbd;
    position: relative;
    padding-left: 30px;
    font-weight: 400;
    font-size: 14px;
}
.news-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 100%;
    background-image: url(/img/icons/hm_calendar_icon.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.swm__main-block.news-main {
    width: 90%;
    margin: 0 auto;
}

.swm__main-block.news-main.search-auction {
    padding: 40px 0;
}
.swm__main-block.swm__main-block--services {
    width: 100%;
}
/* .swm__main-block.news-main .img-c .pr-ov-section-txt {
    padding: 30px 10px 30px 5%;
} */
.news-ttl {
    width: 100%;
    padding: 0 20px;
    margin: 30px auto;
    border-left: 3px solid var(--accent-color-1);
    text-transform: uppercase;
}
.news-ttl h1 {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
}

.newsInner-pagination {
    /* background-color: var(--bg-color-1); */
    width: 100%;
    margin-left: auto;
    margin-bottom: 50px;
    /* margin: 0 auto; */
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.newsInner-pagination__item {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    /* margin-top: 50px;
    margin-bottom: 50px; */
    text-decoration: none;
    color: #333333;
}
.newsInner-pagination__item.next {
    text-align: right;
    margin-left: auto;
}
.newsInner-pagination__item.next .news-date {
    width: max-content;
    margin-left: auto;
}
.newsInner-pagination__prev-head,
.newsInner-pagination__next-head {
    position: relative;

    color: #0d2d47;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
.newsInner-pagination__prev-head {
    padding-left: 30px;
}
.newsInner-pagination__next-head {
    padding-right: 30px;
}
.newsInner-pagination__prev-head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background-image: url(/img/icons/hm_news_arrow_left.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.newsInner-pagination__next-head::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background-image: url(/img/icons/hm_news_arrow_right.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.newsInner-pagination__prev-txt,
.newsInner-pagination__next-txt {
    margin-bottom: 15px;
    /* font-size: 16px; */
}

/* || SERVICES || */
.swm__main-block.swm__main-block--services .pr-ov-section {
    padding: 30px 5%;
}
/* #econolease_calculator {
    height: 100vh;
    max-height: 600px;
} */
.embed-container {
    position: relative;
    /* padding-bottom: 100%; */
    height: 100%;
    min-height: 600px;
    overflow-y: auto;
    max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
}

/* || FAQ || */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 27%);
    padding-top: 50px;
    padding-bottom: 50px;
    /* column-gap: 55px; */
}

.faq-grid .question-block {
    position: sticky;
    top: 100px;
}
.faq-grid .question-block form {
    margin: 0;
}

.faq-grid .faq-grid__ttl {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    color: #1e1e1e;
    margin-bottom: 30px;
    padding: 0 5%;
}

ul.accordion-list {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-left: 5%;
    padding-right: 5%;
    margin: 0;
    list-style: none;
    /* background-color: #f9f9fa; */
}
ul.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background-color: #f2f2f2;
    margin: 0 auto 15px auto;
    border: 1px solid #eee;
    cursor: pointer;
}
ul.accordion-list li.active h3:after {
    transform: rotate(180deg);
    background-image: url(/img/icons/hm_minus_icon.svg);
}
ul.accordion-list li h3 {
    font-weight: 700;
    position: relative;
    display: block;
    width: calc(100% - 40px);
    height: auto;
    padding: 0 25px 0 0;
    margin: 0;
    font-size: 15px;
    letter-spacing: 0.01em;
    cursor: pointer;
    margin: 20px;
}
ul.accordion-list li h3:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 19px;
    height: 19px;
    background-color: var(--accent-color-1);
    background-image: url(/img/icons/hm_plus_icon.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80%;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
}
ul.accordion-list li div.answer {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    /* margin-top: 20px; */
    padding: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    cursor: pointer;
    background-color: #fff;
}
ul.accordion-list li div.answer .answer__container {
    border-left: 1px solid #a8d1da;
    margin: 0 30px;
}
ul.accordion-list li div.answer p {
    position: relative;
    display: block;
    font-weight: 300;
    cursor: pointer;
    line-height: 150%;
    padding: 15px 40px;
    font-size: 14px;
}

/* || PRODUCTS || */

.products-page-layout {
    position: relative;
}
.products-page-layout__left {
    background-color: var(--bg-color-1);
    position: absolute;
    display: flex;
    justify-content: flex-end;
    width: 25%;
    height: 100%;
}
.pr-filtersTrigger {
    position: fixed;
    right: 0;
    top: 280px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color-1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;
}
.pr-filtersTrigger svg {
    color: #fff;
    fill: #fff;
    width: 20px;
    height: 20px;
}
.products-page-layout__main {
    padding: 30px 5% 30px 47px;
    padding-left: 28%;
    min-height: 70vh;
}
.products-page-layout__content {
    margin: 30px;
    margin-right: 0;
    padding-right: 30px;
    max-width: 325px;
    height: max-content;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    position: sticky;
    top: 100px;
}
.filter-accordion {
    margin-bottom: 5px;
}
.filter-accordion.filter-accordion--active .filter-accordion__content {
    max-height: 100vh;
    overflow: auto;
}
.filter-accordion__head {
    background-color: var(--accent-color-1);
    color: #fff;
    text-transform: uppercase;
    padding: 5px 25px 5px 10px;
    cursor: pointer;
    position: relative;
}
.filter-accordion.filter-accordion--active .filter-accordion__head::after {
    transform: translateY(-50%) rotate(180deg);
    background-image: url(/img/icons/hm_minus_icon.svg);
}
.filter-accordion__head:after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 19px;
    height: 19px;
    background-color: var(--accent-color-1);
    background-image: url(/img/icons/hm_plus_icon.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80%;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
}
.filter-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.ppll__search {
    margin: 10px 0;
}
.ppll__search input {
    padding: 8px 13px;
    border: 1px solid #e0e0e0;
}
.ppll__sub-head {
    background-color: #e0e0e0;
    padding: 7px 10px;
    display: flex;
    justify-content: space-between;
}
.ppll__sub-head__ttl {
    text-transform: uppercase;
}
.ppll__sub-head__clear {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.02em;
    color: #828282;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.ppll__sub-head__clear:hover {
    color: var(--accent-color-1);
}
.ppll__categories {
    margin-top: 10px;
}
.ppll__categories select {
    padding: 8px 13px;
    border: 1px solid #e0e0e0;
    margin-top: 5px;
}

.ppll__sub-categories {
    padding: 15px 10px 15px 40px;
    display: flex;
    flex-direction: column;
}
.pretty.pretty--wrap {
    margin-bottom: 15px;
    white-space: normal;
}
.pretty.pretty--wrap .state label:before,
.pretty .state label:after,
.pretty.p-svg.pretty--wrap .state .svg {
    top: 0;
}
.pretty.active.pretty--wrap .pretty__label {
    /* font-weight: 600; */
    text-shadow: 0 0 1px #000;
}
.pretty.pretty--wrap input {
    width: calc(1em + 2px);
    height: calc(1em + 2px);
}
.pretty.pretty--wrap .pretty__label {
    cursor: pointer;
    padding-left: 25px;
    text-indent: unset;
}

.products-grid-actions {
    display: flex;
    justify-content: flex-end;
}

.products-grid-actions.products-grid-actions--with-ttl {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.products-grid-actions > .products-grid-actions__ttl {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    text-align: center;
    color: #1e1e1e;
    margin-bottom: 10px;
}

.products-grid-actions .products-grid-actions__sort {
    display: flex;
    white-space: nowrap;
    align-items: center;
    margin-bottom: 10px;
}
.products-grid-actions .products-grid-actions__sort select {
    background-color: #f9f9f9;
    padding: 5px 15px;
    margin-left: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    grid-auto-columns: min-content;
    justify-content: flex-start;
    grid-gap: 16px;
    /* padding-top: 50px; */
    padding-bottom: 50px;
}
.product-card {
    /* max-width: 270px; */
    padding: 0 11px 18px 11px;
    border: 1px solid #bdbdbd;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card__img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: 210px;
    object-fit: scale-down;
}
.product-card__price {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000000;
    display: block;
    text-align: center;
    margin-top: 5px;
}
.product-card__descr {
    
    text-align: center;
    margin: 10px 0 20px 0;
}
.product-card__descr > span {
    font-size: 16px;
    line-height: 14px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #828282;
    background-color: #f2f2f2;
    width: fit-content;
    margin: 0 auto 15px auto;
    display: block;
    padding: 3px 5px;
}
.product-card__descr > small {
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.product-card__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

@media screen and (max-width: 500px) {
    .product-card__buttons {
        flex-direction: column;
    }
}
.product-card__buttons > * {
    padding: 10px 0;
    width: 100%;
    font-size: 12px;
    text-align: center;
    justify-content: center;
    margin: 2px;
}
.product-card__buttons .btn.btn--inverted {
    border: 1px solid var(--accent-color-1);
}
.product-card__buttons .btn.btn--inverted:hover {
    border-color: var(--accent-color-2);
    color: #fff;
}

/* || PRODUCT INNER || */
.pr-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    grid-template-rows: max-content max-content 0.9fr 1.4fr;
    gap: 20px 80px;
    grid-auto-flow: row;
    grid-template-areas:
        'pr-grid__img pr-grid__head'
        'pr-grid__img pr-grid__downloads'
        'pr-grid__img pr-grid__descr'
        'pr-grid__img pr-grid__specs';
    width: 100%;
    padding-bottom: 50px;
    padding-top: 50px;
    /* height: 100%; */
}
.pr-grid p {
    line-height: 150%;
}

.pr-grid__head {
    grid-area: pr-grid__head;
}

.pr-grid__downloads {
    grid-area: pr-grid__downloads;
}

.pr-grid__descr {
    grid-area: pr-grid__descr;
}

.pr-grid__specs {
    grid-area: pr-grid__specs;
}

.pr-grid__img {
    position: sticky;
    top: 100px;
    grid-area: pr-grid__img;
    border: 1px solid #bdbdbd;
    height: max-content;
}
.pr-grid__img::after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-image: url(/img/icons/hm_zoom_icon.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.pr-grid__img img {
    display: block;
    width: 100%;
    max-width: 500px;
    object-fit: scale-down;
    margin: 0 auto;
}

.pr-grid__head {
    display: flex;
    justify-content: space-between;
}
.pr-grid__head__title {
    font-weight: 300;
    font-size: clamp(25px, 3vw, 46px);
    line-height: 50px;
    /* identical to box height, or 109% */

    color: #000000;
}
.pr-grid__head__sub-title {
    font-size: 16px;
    line-height: 150%;
    color: #828282;
}
.pr-grid__head .btn {
    height: max-content;
    white-space: nowrap;
}

.pr-grid__inner-ttl {
    font-weight: bold;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 22px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--accent-color-1);
    margin-bottom: 10px;
}
.pr-grid__downloads__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.pr-grid__downloads__links > a {
    display: flex;
    height: 32px;
    align-items: center;
    padding-left: 32px;
    position: relative;
    color: #000;
    text-decoration: none;
    margin-right: 15px;
    margin-bottom: 15px;
}
.pr-grid__downloads__links > a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 34px;
    background-image: url(/img/icons/pdf_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.pr-grid__specs__row {
    display: grid;
    grid-template-columns: minmax(100px, 200px) 1fr;
    gap: 20px;
    margin-bottom: 10px;
}

.go-back {
    font-size: 16px;
    line-height: 110%;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 40px;
}
.go-back:hover img {
    margin-right: 15px;
}
.go-back img {
    transform: rotate(90deg);
    margin-right: 10px;
    transition: 0.3s ease;
}

/* [PROFILE PAGE] */
.btn-action {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-color: var(--bg-color-1);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bdbdbd;
    transition: 0.3s ease;
}
.btn-action.delete {
    background-color: tomato;
    border: none;
}
.btn-action.delete svg path {
    fill: #fff;
}
.btn-action:hover {
    background-color: var(--accent-color-2);
    color: #fff;
}
#prof-top-nav {
    padding: 70px 0 40px 0;
    background-color: #fff;
}
.profile .breadcrumbs-list {
    margin: 0;
}
.prof-sect-ttl {
    display: flex;
    color: var(--accent-color-dark);
    margin-bottom: 40px;
}
.prof-sect-inner-ttl {
    display: block;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #1e1e1e;
    padding-left: 20px;
    margin-bottom: 30px;
    position: relative;
}

.prof-sect-inner-ttl::after {
    content: '\005C\005C';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    color: var(--accent-color-1);
}

.prof-sect-ttl img {
    margin-right: 10px;
}
.prof-sect {
    background-color: #fff;
    padding: 38px 47px;
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}
.prof-sect.ps-flex {
    display: flex;
}
.prof-sect-item:not(:last-of-type) {
    /* border-right: 1px solid #e0e0e0; */
}
.prof-sect.ps-flex .prof-sect-item {
    padding: 0;
}
.prof-sect-item {
    width: 100%;
    padding-right: 50px;
    margin-bottom: 20px;
    position: relative;
}
.prof-sect-item:not(:last-of-type)::after {
    content: '';
    position: absolute;
    background-color: #e0e0e0;
    width: 1px;
    height: 100%;
    top: 0;
    right: -25px;
}
.prof-sect-item .btn--trans {
    text-transform: unset;
    justify-content: center;
    align-items: center;
    min-width: 130px;
    padding: 12px 15px;
}
.prof-sect-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}
.prof-sect-buttons > * {
    margin-right: 5px;
}

.prof-sect-row {
    width: 100%;
    display: grid;
    gap: 15px 20px;
    /* grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); */
    grid-template-columns: minmax(100px, 150px) minmax(150px, 1fr);
    white-space: pre-wrap;
}
.prof-sect .btn-arrow {
    height: max-content;
}
.prof-sect-row input {
    padding: 2px 10px;
    border: 1px solid #e0e0e0;
}
.psr-col1 {
    color: var(--accent-color-1);
}
.general-contact-line {
    position: relative;
    margin-bottom: 30px;
}
.general-contact-line .contact-line-actions {
    position: absolute;
    top: 0;
    right: -100px;
}
.contact-line {
    margin-bottom: 10px;
}
.contact-line-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.contact-line-edit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
}
.contact-line-edit input {
    padding: 2px 10px;
    border: 1px solid #e0e0e0;
    margin-right: 10px;
}
.contact-line-actions {
    display: flex;
}
.contact-line-view .psr-col1,
.contact-line-edit .psr-col1 {
    margin-right: 5px;
}
.contact-line-actions button {
    margin-right: 10px;

    width: 30px;
    height: 30px;
}
.contact-line-actions button:hover path {
    fill: #fff;
}
.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.acp-form {
    text-align: initial;
}
.acp-form input,
.acp-form textarea {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
}
.btn-side-menu {
    display: none;
    margin: 10px 10px 10px auto;
}
.btn-side-menu svg {
    margin-left: 10px;
}
.btn-side-menu.sm-filter {
    margin: 0;
    align-items: center;
}
.btn-side-menu.sm-filter svg {
    margin: 0;
    width: 15px;
    height: 100%;
    fill: #d8d8d8;
    transition: 0.3s ease;
}
.btn-side-menu.sm-filter:hover svg {
    transform: scale(1.2);
}
.btn-side-menu.sm-filter {
    display: none;
}

/* || MY ORDER || */
.cart-ttl {
    padding: 40px 0;
}
.cart-ttl h1 {
    position: relative;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #000;
    padding-left: 20px;
}

.cart-ttl h1::after {
    content: '\005C\005C';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    color: var(--accent-color-1);
}
.table-wrapper {
    padding-bottom: 50px;
}
.table-wrapper.table-wrapper--orders {
    padding-bottom: 0;
}
.pr-table-img {
    padding: 10px !important;
}
.pr-table-img img {
    max-width: 100px;
    max-height: 100%;
}

.cart-ttl__details {
    margin-top: 35px;
}
.cart-ttl__row {
    display: grid;
    grid-template-columns: 150px 1fr;
    margin-bottom: 10px;
}
.cart-ttl__row span {
    color: var(--accent-color-1);
}

.cart-footer {
    margin-bottom: 30px;
}
.cart-footer__grid {
    display: grid;
    /* width: max-content; */
    grid-template-columns: max-content max-content;
    max-width: 428px;
    justify-self: flex-end;
    justify-items: flex-end;
    justify-content: flex-end;
    margin-left: auto;
}
.cart-footer__grid.cart-footer__grid--quote {
    display: block;
    width: 100%;
    max-width: unset;
}
.cart-footer__grid b {
    width: 150px;
}
.cart-footer__span-block {
    grid-column: 1/3;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}
.cart-footer__span-block .btn:first-of-type {
    margin-right: 10px;
}

/* || ABOUT PAGE || */
.testimonials-slider {
    padding: 70px 0;
}
.testimonials-slider .sect-ttl {
    margin-bottom: 50px;
}
.testimonials-swiper.swiper {
    padding: 0 40px;
}
.testimonials-slider .swiper-wrapper {
    padding: 30px 0;
}
.trips {
    padding: 50px 0;
}
.trips__head {
    max-width: 800px;
    text-align: center;
    margin: 0 auto 40px auto;
}
.trips__head .sect-ttl {
    margin-bottom: 28px;
}
.trips__head p {
    line-height: 150%;
}
.trips__images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 15px;
}
.trips__images img {
    width: 100%;
    height: 365px;
    object-fit: cover;
}

/* || SOPPING CART || */
.cart-empty-msg {
    padding: 20px;
    display: none;
    text-align: center;
}
.pr-qty-box {
    display: flex;
    align-items: center;
    max-width: 200px;
}
.pr-qty-box > div {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
    /* margin-left: 15px; */
}
.pr-qty-box > div input.pr-qty {
    padding: 0 10px;
    text-align: center;
    background-color: transparent;
}
/* Chrome, Safari, Edge, Opera */
.pr-qty-box > div input.pr-qty ::-webkit-outer-spin-button,
.pr-qty-box > div input.pr-qty ::-webkit-inner-spin-button {
    /* display: none; */
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.pr-qty-box > div input.pr-qty [type='number'] {
    -moz-appearance: textfield;
    display: none;
}
.pr-qty-box button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 42px;
    height: 42px;
    border-right: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    transition: 0.3s ease;
}
.pr-qty-box button:hover {
    background-color: var(--accent-color-1);
    font-weight: 700;
    color: #fff;
}
.pr-qty-box .pr-qty {
    max-width: 100px;
}

.delete-from-cart {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    /* background-color: var(--bg-color-1); */
    background-color: tomato;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #bdbdbd; */
    transition: 0.3s ease;
}
.delete-from-cart:hover {
    background-color: var(--accent-color-1);
    color: #fff;
}

.cart-footer__grid.cart-footer__grid--quote label {
    display: block;
    margin-bottom: 5px;
}
.cart-footer__grid.cart-footer__grid--quote textarea {
    border: 1px solid #e0e0e0;
}

/* [CHECKOUT-SELECTION-POPUP START] */
#checkout-selection .carousel__button {
    border: 2px solid var(--accent-dark-color);
    top: 15px;
    right: 15px;
    color: var(--accent-dark-color);
}

.checkout-selection {
    display: flex;
    padding: 32px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 20px;
    max-width: 1100px;
}
.checkout-selection__inner {
    flex: 1;
    background-color: var(--accent-color-2);
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.checkout-selection__inner form {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 50px;
}
.checkout-selection__inner form a {
    color: #fff;
    text-decoration: underline;
}
.checkout-selection__inner form input {
    width: 100%;
    margin-bottom: 10px;
}
.checkout-selection__ttl {
    font-weight: 500;
    font-size: clamp(25px, 3vw, 36px);
    text-align: center;
    letter-spacing: -0.04em;
    color: #ffffff;
}
.checkout-selection__guest {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

/* [CHECKOUT-SELECTION-POPUP END] */

/* [CHECKOUT STEP 1 START] */

.checkout-1 {
    padding: 100px 0 100px 0;
}
.checkout-1 > .btn {
    margin-left: auto;
}
.checkout-1__fieldset-wrapper {
    background-color: rgba(168, 209, 218, 0.2);
    padding: 23px 20px 45px 20px;
    margin-bottom: 40px;
}
.checkout-1__ttl {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    text-align: center;
    color: #1e1e1e;
    margin-bottom: 35px;
}
.checkout-1__fieldset {
    border: none;
}
.checkout-1__fieldset-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}
.checkout-1__fieldset-cell {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0 25px;
}
.checkout-1__fieldset-cell > label {
    flex: 1 0 130px;
    margin-right: 20px;
}
.checkout-1__fieldset-cell.checkout-1__fieldset-cell--span2 {
    grid-column: span 2;
}
.checkout-1__same-as-billing-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 1300px;
    margin: 0 auto 25px auto;
}
.checkout-1__fieldset-cell-content {
    display: flex;
    flex: 1;
    align-items: center;
}
.checkout-1__fieldset-cell-content > label {
    width: 100px;
    margin-right: 10px;
    flex: 0 0 auto;
}

/* [CHECKOUT STEP 1 END] */

/* [Pretty checkbox adjustments start] */
.pretty {
    white-space: normal;
}
.pretty .state label {
    text-indent: 0;
    padding-left: 31px;
}
.pretty .state label:after,
.pretty .state label:before {
    top: 0;
    background-color: #fff;
    border: none;
}
.pretty input:checked ~ .state.p-primary label:after {
    background-color: var(--accent-color-1) !important;
}
/* [Pretty checkbox adjustments end] */

/* [CHECKOUT STEP 2 START] */
.checkout-2 {
    padding-top: 50px;
    padding-bottom: 100px;
}
.checkout-2 .pretty .state label:before {
    border: 1px solid #bdc3c7;
}
.checkout-2 .table-wrapper {
    padding-bottom: 40px;
}
.checkout-2__summary-wrapper {
    margin-bottom: 40px;
}
.checkout-2__ttl {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    text-align: center;
    color: #1e1e1e;
    margin-bottom: 25px;
}
.checkout-2 .order-head {
    max-width: 1535px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-bottom: 15px;
}
.checkout-2 .order-head .order-head-ttl {
    margin: 0;
    margin-right: 15px;
    padding: 0;
}
.checkout-2 .order-head__link {
    text-transform: uppercase;
    text-decoration: underline;
    color: gray;
}
.checkout-2 .dcf-table-wrapper {
    max-width: 1535px;
    margin: 0 auto;
    padding: 0;
}
.checkout-2__promo-wrapper {
    margin-bottom: 40px;
}
.checkout-2__promo-block {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.checkout-2__shipping-wrapper {
    background-color: rgba(168, 209, 218, 0.2);
    padding: 23px 20px 45px 20px;
    margin-bottom: 40px;
}
.checkout-2__shipping-selects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 40px;
    margin-bottom: 25px;
}
.checkout-2__shipping-selects > * {
    margin-bottom: 15px;
}
.checkout-2__payment-wrapper {
    background-color: rgba(168, 209, 218, 0.2);
    padding: 23px 20px 45px 20px;
    margin-bottom: 40px;
}
.checkout-2__payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0 2px;
    margin-bottom: 50px;
}
.checkout-2__payment-fields {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
    column-gap: 50px;
    row-gap: 35px;
}

/* [SEARCH - PAGES START] */
.search-pages {
    padding-top: 40px;
}
.search-pages__ttl,
.search-auction__ttl {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    color: #1e1e1e;
    margin-bottom: 40px;
}
.search-pages__grid {
}
.search-pages__grid-item {
    margin-bottom: 44px;
}
.search-pages__grid-item-top-link {
    display: block;
    font-weight: 600;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--accent-color-1);
    margin-bottom: 15px;
}
.search-pages__grid-item-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}
.search-pages__grid-item-bottom-link {
    text-decoration: none;
    color: var(--accent-color-1);
}
/* [SEARCH - PAGES END] */

@media (max-width: 650px) {
    .checkout-2__payment-fields {
        row-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}
@media (max-width: 450px) {
    .checkout-2__payment-fields {
        grid-template-columns: 100%;
    }
}
.checkout-2__payment-field {
    display: flex;
    -moz-column-gap: 50px;
    column-gap: 50px;
}
@media (max-width: 650px) {
    .checkout-2__payment-field {
        -moz-column-gap: 15px;
        column-gap: 15px;
    }
}
.checkout-2__payment-field--span2 {
    grid-column: span 2;
}
@media (max-width: 450px) {
    .checkout-2__payment-field--span2 {
        grid-column: 1/-1;
    }
}
.checkout-2__prices-and-terms-wrapper {
    padding: 40px 0;
    border-top: 1px solid #bdbdbd;
    margin-bottom: 40px;
}
.checkout-2__prices-grid {
    display: grid;
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 15px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-bottom: 25px;
}
.checkout-2__terms {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}
.checkout-2__terms a {
    text-decoration: underline;
    color: #000;
}
/* [CHECKOUT STEP 2 END] */

@media only screen and (max-width: 1500px) {
    .question-block {
        padding: 30px;
        min-width: 300px;
    }
    .question-block form {
        width: 100%;
    }
}
@media only screen and (max-width: 1450px) {
    .h-certificates {
        padding: 30px 20px;
    }
    .h-certificates__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .contact-form {
        padding: 0 20px;
    }
}
@media only screen and (max-width: 1340px) {
    .new-auction-grid.new-auction-grid--search {
        grid-template-columns: 100%;
    }
    .new-auction-card.new-auction-card--search {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            'new-auction-card__logo'
            'new-auction-card__txt-top '
            'new-auction-card__txt-bottom '
            'new-auction-card__buttons ';
    }
}

@media only screen and (max-width: 1300px) {
    .swm__menu,
    .swm__register {
        padding-left: 30px;
    }
}
@media only screen and (max-width: 1200px) {
    .products-page-layout__left {
        width: 300px;
    }
    .products-page-layout__main {
        padding-left: 320px;
    }

    .checkout-1__fieldset-grid {
        column-gap: 20px;
        row-gap: 15px;
    }
    .checkout-1__fieldset-cell {
        gap: 0 15px;
    }
    .checkout-1__fieldset-cell-content {
        gap: 0 15px;
    }
    .checkout-1__fieldset-cell > label {
        flex: 1 0 80px;
        margin: 0;
    }
    .checkout-1__fieldset-cell-content > label {
        width: 80px;
        margin: 0;
    }
}
@media only screen and (max-width: 1100px) {
    .f-top__item {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .f-logo-block > a {
        max-width: 300px;
        margin-bottom: 20px;
    }
    .f-logo-block {
        grid-column: 1/4;
        margin-bottom: 20px;
    }
    .h-certificates__grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .new-auction-card {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            'new-auction-card__logo'
            'new-auction-card__txt-top '
            'new-auction-card__txt-bottom '
            'new-auction-card__buttons ';
    }
    .swm__menu ul li a {
        font-size: 12px;
    }
    .swm__menu ul li:before {
        top: 7px;
    }
    .pr-grid {
        gap: 20px 30px;
    }
}
@media only screen and (max-width: 970px) {
    .new-auction-card__row {
        display: block;
    }
    .contact-content {
        max-width: 310px;
    }
}

@media only screen and (max-width: 970px) {
    .hts--menu-item.socials {
        display: none;
    }
    .hts--menu-item {
        justify-content: center;
    }
    .hbs--inner {
        padding: 0;
    }
    .hbs--menu-item:not(.hbs--menu-item--inquire) {
        margin: 0px 15px;
    }
    .hbs-sub-tab-products {
        grid-template-columns: repeat(auto-fill, minmax(100px, 170px));
    }
    .nav-search {
        margin-left: 0;
        min-width: 135px;
    }
}

@media only screen and (max-width: 920px) {
    .testimonials {
        padding: 30px 20px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .auction-specs,
    .auction-content-grid {
        gap: 50px;
    }
    .auction-specs__map img {
        min-width: 250px;
    }
}
@media only screen and (max-width: 850px) {
    .grid-3fr-1fr,
    .grid-1fr-3fr {
        grid-template-columns: 1fr;
        margin: 0;
    }
    .contact-block {
        flex-direction: column-reverse;
    }
    .contact-form form {
        margin-bottom: 30px;
        column-gap: 20px;
    }
    .contact-content {
        border-right: none;
    }
    .contact-content > div {
        margin-bottom: 30px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .pr-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            'pr-grid__head'
            'pr-grid__img'
            'pr-grid__downloads'
            'pr-grid__descr'
            'pr-grid__specs';
    }
    .pr-grid__img {
        position: relative;
    }

    .checkout-1__fieldset-cell.checkout-1__fieldset-cell--span2 {
        grid-column: span 1;
    }
    .checkout-1__fieldset-grid {
        grid-template-columns: 100%;
    }

    .checkout-selection {
        flex-direction: column;
    }
    .checkout-selection__inner {
        padding: 40px 15px;
        flex: 1 1 auto;
    }
    .checkout-selection__guest {
        row-gap: 30px;
    }
}

@media only screen and (max-width: 800px) {
    .hbs--menu-item:not(.hbs--menu-item--inquire, .hbs--menu-item--m-trigger),
    .nav-search,
    .hts__subMenu {
        display: none;
    }
    .hts-logo img {
        max-height: 60px !important;
    }
    .hbs--menu-item.hbs--menu-item--m-trigger {
        display: initial;
    }
    .tab-content {
        padding: 15px;
    }
    .h-slider {
        min-height: unset;
        margin-bottom: unset;
    }
    .swiper.h-swiper {
        height: 60vh;
    }
    .swiper-slide__content__img {
        display: none;
    }
    .swiper-slide__content {
        display: block;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .categorie-card .categorie-card__img {
        height: 170px;
    }
    .new-auction-grid {
        grid-template-columns: 1fr;
    }
    .new-auction-card__logo {
        margin-bottom: 15px;
    }
    .sect-with-menu {
        display: block;
    }
    .swm__side-block {
        display: none;
    }

    .pr-filtersTrigger {
        display: flex;
    }
    .products-page-layout__left {
        position: absolute;
        top: 0;
        left: -100%;
    }
    .products-page-layout__left.products-page-layout__left--open {
        left: 0;
        width: 100%;
        transition: 0.3s ease;
    }
    .products-page-layout__left.products-page-layout__left--open .products-page-layout__content {
        width: 100%;
        max-width: unset;
    }
    .products-page-layout__main {
        padding-left: 5%;
        padding-right: 5%;
    }
}
@media only screen and (max-width: 750px) {
    .auction-specs,
    .auction-content-grid {
        grid-template-columns: 1fr;
    }
    .auction-gallery__items {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 700px) {
    .f-top__item {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .f-logo-block {
        grid-column: 1/3;
        margin-bottom: 20px;
    }
    .f-offers-block {
        border: none;
    }
    .subscription__open-trigger,
    .subscription__form-trigger {
        padding: 10px 20px;
    }
    .subscription {
        top: 200px;
    }
    .vendors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 635px) {
    .h-main-tabs .block {
        width: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fancy-auction-gallery.fancybox__container {
        --fancybox-thumbs-width: 100px;
        --fancybox-thumbs-height: 60px;
    }
    .fancy-auction-gallery .fancybox__slide {
        padding: 20px 40px 20px 40px;
    }
    .fancy-auction-gallery .fancybox__thumbs {
        padding: 0 40px 60px 40px;
    }
}
@media only screen and (max-width: 600px) {
    .contactus-ad > div {
        flex-direction: column;
    }
    .contactus-ad__text h1,
    .contactus-ad__text b {
        text-align: center;
    }
    .inner-tabs.tab-buttons {
        flex-direction: column;
    }
    .inner-tabs .tab-button {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 550px) {
    .contact-form form {
        display: block;
    }

    .checkout-1__fieldset-cell.checkout-1__fieldset-cell--550transform {
        flex-direction: column;
        align-items: flex-start;
    }
    .checkout-1__fieldset-cell.checkout-1__fieldset-cell--550transform > * {
        margin-bottom: 15px;
    }
    .checkout-1__fieldset-cell-content {
        width: 100%;
    }
    /* .checkout-1__fieldset-cell.checkout-1__fieldset-cell--550transform input,
    .checkout-1__fieldset-cell.checkout-1__fieldset-cell--550transform select{
        width: 100%;
    } */
}
@media only screen and (max-width: 500px) {
    .f-top__item {
        grid-template-columns: 1fr;
    }
    .f-logo-block {
        grid-column: 1;
        margin-bottom: 20px;
    }
    .f-info-block {
        border: none;
    }
    .vendor-card .vendor-card__title {
        margin-bottom: 10px;
    }
    .vendor-card__link {
        margin-top: 10px;
    }
    .past-auction-grid {
        grid-template-columns: repeat(auto-fit, minmax(251px, 1fr));
    }
    .past-auction-card .past-auction-card__specs {
        grid-template-columns: 25% 1fr;
    }
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .pr-grid__specs__row {
        display: block;
    }

    ul.accordion-list li div.answer .answer__container {
        margin: 0 10px;
    }
    ul.accordion-list li div.answer p {
        padding: 15px 25px;
    }

    .checkout-selection {
        padding: 0;
    }
}

/*iRangeSlider override*/
.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single,
.irs--flat .irs-bar,
.irs--flat .irs-handle > i:first-child {
    background-color: var(--accent-color-1) !important;
}
.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
    border-top-color: var(--accent-color-1) !important;
}

@media only screen and (max-width: 400px) {
    .products-grid {
        grid-gap: 1px;
    }
    .tab-content {
        padding: 3px;
    }
}
