﻿
:root {
    --color-primary: #f2f2f2;
    --color-secondary: #51403E;
    --color-tertiary: #343a40;
}
/*Brown A46135*/

/*
    ==========================================
    ==========================================
    =========== BLAZOR ERROR UI ==============
    ==========================================
    ==========================================
*/

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/*
    ==========================================
    ==========================================
    ================ SPINNER =================
    ==========================================
    ==========================================
*/

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-roller div {
        animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        transform-origin: 40px 40px;
    }

        .lds-roller div:after {
            content: " ";
            display: block;
            position: absolute;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: black;
            margin: -4px 0 0 -4px;
        }

        .lds-roller div:nth-child(1) {
            animation-delay: -0.036s;
        }

            .lds-roller div:nth-child(1):after {
                top: 63px;
                left: 63px;
            }

        .lds-roller div:nth-child(2) {
            animation-delay: -0.072s;
        }

            .lds-roller div:nth-child(2):after {
                top: 68px;
                left: 56px;
            }

        .lds-roller div:nth-child(3) {
            animation-delay: -0.108s;
        }

            .lds-roller div:nth-child(3):after {
                top: 71px;
                left: 48px;
            }

        .lds-roller div:nth-child(4) {
            animation-delay: -0.144s;
        }

            .lds-roller div:nth-child(4):after {
                top: 72px;
                left: 40px;
            }

        .lds-roller div:nth-child(5) {
            animation-delay: -0.18s;
        }

            .lds-roller div:nth-child(5):after {
                top: 71px;
                left: 32px;
            }

        .lds-roller div:nth-child(6) {
            animation-delay: -0.216s;
        }

            .lds-roller div:nth-child(6):after {
                top: 68px;
                left: 24px;
            }

        .lds-roller div:nth-child(7) {
            animation-delay: -0.252s;
        }

            .lds-roller div:nth-child(7):after {
                top: 63px;
                left: 17px;
            }

        .lds-roller div:nth-child(8) {
            animation-delay: -0.288s;
        }

            .lds-roller div:nth-child(8):after {
                top: 56px;
                left: 12px;
            }

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

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

/*
    ==========================================
    ==========================================
    =========== VERTICAL CENTER ==============
    ==========================================
    ==========================================
*/

.my-vertical-center {
    min-height: 100%; /* Fallback for browsers do NOT support vh unit */
    min-height: 100vh; /* These two lines are counted as one :-)*/
    display: flex;
    align-items: center;
}


/*
    ==========================================
    ==========================================
    ============== SORT BUTTON ===============
    ==========================================
    ==========================================
*/

.sort-button {
    color: var(--color-tertiary);
    position: relative;
    width: 32px;
    height: 32px;
    background-color: var(--color-tertiary);
    border-radius: 5px;
    border: none;
    outline: none;
    transition: all 0.4s cubic-bezier(0.58, -0.37, 0.45, 1.46);
    -webkit-transition: all 0.4s cubic-bezier(0.58, -0.37, 0.45, 1.46);
    -moz-transition: all 0.4s cubic-bezier(0.58, -0.37, 0.45, 1.46);
    overflow: hidden;
}

.none .sort-button {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.false .sort-button {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
}

.true .sort-button {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
    /*background-color: #00b1a3;*/
}

.sort-button:before {
    content: "";
    display: block;
    height: 56px;
    width: 56px;
    border: 3px solid var(--color-tertiary);
    border-radius: 30px;
    position: absolute;
    top: -3px;
    left: -3px;
    transition: all 0.2s cubic-bezier(0.58, -0.37, 0.45, 1.46);
    -webkit-transition: all 0.2s cubic-bezier(0.58, -0.37, 0.45, 1.46);
    background-color: var(--color-tertiary);
}

.none .sort-button:before {
    height: 28px;
    width: 28px;
    top: 12px;
    left: 12px;
    background-color: transparent;
}

.sort-button span {
    position: absolute;
    display: block;
    background: #fff;
    height: 18px;
    width: 3px;
    top: 8px;
    left: 15px;
    border-radius: 3px;
}

.none .sort-button span {
    background: #fff;
}

.sort-button span:before,
.sort-button span:after {
    content: "";
    position: absolute;
    display: block;
    background: #fff;
    height: 10px;
    width: 3px;
    border-radius: 3px;
}

.none .sort-button span:before,
.none .sort-button span:after {
    display: none;
}

.sort-button span:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -1px;
    left: -3px;
}

.sort-button span:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -1px;
    left: 3px;
}

/*
    ==========================================
    ==========================================
    ============== SEARCH BAR ================
    ==========================================
    ==========================================
*/

.search input[type=search]::-webkit-search-decoration,
.search input[type=search]::-webkit-search-cancel-button {
    display: none;
}

.search input[type=search] {
    outline: none;
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    font-family: inherit;
    font-size: 100%;
    background: transparent url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDEzOSAxMzkiIGhlaWdodD0iMTM5cHgiIGlkPSJGaW5kIiB2ZXJzaW9uPSIxLjEiIHZpZXdCb3g9IjAgMCAxMzkgMTM5IiB3aWR0aD0iMTM5cHgiIHhtbDpzcGFjZT0icHJlc2VydmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPjxwYXRoIGQ9Ik0xMjcuNTU4LDExMS45NjFMMTAwLjI0OSw4NC42NWM0LjY0LTcuMzg3LDcuMzMzLTE2LjExOCw3LjMzMy0yNS40ODhjMC0yNi41MDktMjEuNDktNDcuOTk2LTQ3Ljk5OC00Ny45OTYgIGMtMjYuNTA4LDAtNDcuOTk2LDIxLjQ4Ny00Ny45OTYsNDcuOTk2YzAsMjYuNTEsMjEuNDg3LDQ3Ljk5NSw0Ny45OTYsNDcuOTk1YzEwLjE5NywwLDE5LjY0Mi0zLjE4OCwyNy40MTQtOC42MDVsMjYuOTg0LDI2Ljk4NiAgYzEuODc1LDEuODczLDQuMzMzLDIuODA2LDYuNzg4LDIuODA2YzIuNDU4LDAsNC45MTMtMC45MzMsNi43OTEtMi44MDZDMTMxLjMwOCwxMjEuNzg3LDEzMS4zMDgsMTE1LjcxMSwxMjcuNTU4LDExMS45NjF6ICAgTTU5LjU4NCw5MS42MDdjLTE3LjkxNywwLTMyLjQ0My0xNC41MjUtMzIuNDQzLTMyLjQ0M1M0MS42NjcsMjYuNzIsNTkuNTg0LDI2LjcyYzE3LjkxOCwwLDMyLjQ0MywxNC41MjYsMzIuNDQzLDMyLjQ0NCAgUzc3LjUwMiw5MS42MDcsNTkuNTg0LDkxLjYwN3oiLz48L3N2Zz4=') no-repeat 0 center;
    background-size: 30px;
    border: none;
    border-bottom: 3px solid transparent;
    color: transparent;
    padding: 10px;
    width: 10px;
    margin: 10px 0;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
}

    .search input[type=search]:focus {
        width: 200px;
        background: none;
        border-bottom: 3px solid var(--color-secondary);
        color: var(--color-secondary);
        cursor: auto;
    }

    .search input[type=search]:hover {
        border-bottom: 3px solid var(--color-secondary);
    }

input::-webkit-input-placeholder {
    color: transparent;
}

input:focus::-webkit-input-placeholder {
    color: var(--color-secondary);
}
/* Firefox < 19 */
input:-moz-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: var(--color-secondary);
}
/* Firefox > 19 */
input::-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: var(--color-secondary);
}
/* Internet Explorer 10 */
input:-ms-input-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: var(--color-secondary);
}

/*
    ==========================================
    ==========================================
    ================ FILTERS =================
    ==========================================
    ==========================================
*/

.button-search {
    color: var(--color-primary);
    background-color: var(--color-tertiary);
    border-radius: 5px;
}


.button-search-general {
    color: black;
    background-color: white;
    border-radius: 5px;
}

.searchIcon {
    font-size: 1.6em;
}


.dropdown-filter {
    border-color: var(--color-tertiary);
    color: var(--color-secondary);
    border-radius: 5px;
}

.filter-button {
    color: var(--color-primary);
    font-size: 16px;
    width: auto;
    height: 32px;
    background-color: var(--color-tertiary);
    border-radius: 5px;
    border: none;
    outline: none;
}

/*
    ==========================================
    ==========================================
    ============= PROGRESS-BAR ===============
    ==========================================
    ==========================================
*/

.progress2 {
    border-radius: 30px;
    background-color: #000000;
}

.progress-bar2 {
    /*height: 18px;*/
    border-radius: 30px;
    transition: 0.4s linear;
    transition-property: width, background-color;
}

.progress-moved .progress-bar2 {
    background-color: #5865f2;
    animation: progress 5s infinite;
}

.shake-animation {
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: shake-1;
}

.transform-animation {
    animation-duration: 1.5s;
    animation-iteration-count: 1;
    animation-name: winning-animated;
}

@keyframes winning-animated {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shake-1 {
    0% {
        transform: rotate(1deg);
    }

    10% {
        transform: rotate(-1deg);
    }

    20% {
        transform: rotate(1deg);
    }

    30% {
        transform: rotate(-1deg)
    }

    40% {
        transform: rotate(1deg)
    }

    50% {
        transform: rotate(-1deg);
    }

    60% {
        transform: rotate(1deg);
    }

    70% {
        transform: rotate(-1deg);
    }

    80% {
        transform: rotate(1deg);
    }

    90% {
        transform: rotate(-1deg);
    }

    100% {
        transform: rotate(1deg);
    }
}

/*
    ==========================================
    ==========================================
    =========== CUSTOM GRADIENT ==============
    ==========================================
    ==========================================
*/

.custom-gradient {
    /*    background: linear-gradient(-45deg, #fff, #fff, #95d6e0, #84bfc8);
    background-size: 400% 400%;
    animation: gradient 4.2s ease infinite;*/
}

.custom-gradient-winning {
    /*    background: linear-gradient(45deg, #fff, #D7F0DD, #D7F0DD, #96ebaa);
    background-size: 400% 400%;
    animation: gradient 4.2s ease infinite;*/
    border: 1px solid green;
}

.custom-gradient-losing {
    /* background: linear-gradient(100deg, #F8D7DA, #F8D7DA, #F8D7DA, #fba5ad);
    background-size: 400% 400%;
    animation: gradient 2.2s ease infinite;*/
    border: 1px solid red;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/*
    ==========================================
    ==========================================
    =========== CUSTOM FONT-SIZE =============
    ==========================================
    ==========================================
*/

.font-xxs {
    font-size: xx-small;
}

.font-xs {
    font-size: x-small;
}

.font-s {
    font-size: small;
}

.font-m {
    font-size: medium;
}

.font-l {
    font-size: large;
}

.font-xl {
    font-size: x-large;
}

.font-xxl {
    font-size: xx-large;
}


/*
    ==========================================
    ==========================================
    ========= CUSTOM TEXT POSITION ===========
    ==========================================
    ==========================================
*/


.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/*
    ==========================================
    ==========================================
    ================ OTHERS ==================
    ==========================================
    ==========================================
*/

/*GROW ON HOVER*/
.grow {
    transition: all .2s ease-in-out;
}

    .grow:hover {
        transform: scale(1.05);
    }

/*SWITCH BG ON HOVER*/
.switch-bg:hover {
    background-color: red;
}

.disabledui {
    pointer-events: none;
    opacity: 0.4;
}

.right {
    float: right
}

.left {
    float: left
}

.pointer {
    cursor: pointer;
}

.logo-footer {
    background: url(../img/logo_footer.png) no-repeat 10px 10px;
    position: relative;
    float: left;
    height: 70px;
    line-height: 16px;
}

.blink_animation {
    pointer-events: none;
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/*
    ==========================================
    ==========================================
    ========= ANIMATION MOVE UP-DOWN =========
    ==========================================
    ==========================================
*/

.object-move-up-down {
    animation: MoveUpDown 1s linear infinite;
    position: relative;
}

@keyframes MoveUpDown {
    0%, 100% {
        bottom: 0;
    }

    50% {
        bottom: -40px;
    }
}


.header {
    background-color: #fff;
}


.footerHeader {
    font-size: 24px;
    font-family: "Ubuntu";
}

.footerLink {
    font-size: 16px;
    font-family: "Ubuntu";
}

.verticalYellowLine {
    background-color: rgba(88, 101, 242, 1);
    width: 8px;
    height: 34px;
    /*border-radius:3px;*/
}

.verticalYellowLineExtra {
    background-color: rgba(88, 101, 242, 1);
    width: 8px;
    height: 34px;
    border-radius: 3px;
    margin-top: 7px;
}

.horizontalLineLotDescription {
    background-color: rgba(88, 101, 242, 1);
    width: 230px;
    height: 5px;
    border-radius: 3px;
    margin-top: 7px;
}



.verticalBlackLine {
    background-color: #000000;
    width: 8px;
    height: 34px;
}

.verticalGrayLine {
    background-color: #353E43;      /* Black by default */
    width: 11px;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    float: right;
    transition: background-color 0.2s ease; /* Smooth color change */
}

.auction-card:hover .verticalGrayLine {
    background-color: #5865f2; /* or your brand blue / var(--bs-primary) */
}


.intCard-overlay {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    height: 50%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    display: inline-flex;
}

.intCard :hover {
    opacity: 1;
    background-color: rgba(254.00000005960464, 255, 165.00000536441803, 1);
}


.myicon:hover .intCard {
    color: #fff;
    background-color: #000;
}


.generalSearchBar {
    border-top-style: hidden;
    border-right-style: hidden;
    border-left-style: hidden;
    border-bottom-style: groove;
}


/*USEDFUL CSS*/

.section-main-categories {
    display: flex;
    width: 100%;
    margin-bottom: 60px;
}

    .section-main-categories .wrapper {
        max-width: 1920px;
        margin: auto;
    }

    .section-main-categories .btn {
        color: black;
        border-color: black;
    }

    .section-main-categories .hover {
        background: black;
        color: var(--clr-scd);
    }

    .section-main-categories .wrapper {
        width: 100%;
        box-sizing: border-box;
        align-items: center;
        display: flex;
    }

    .section-main-categories .home-category-box {
        display: flex;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        position: relative;
        width: 100%;
        overflow: hidden;
    }

        .section-main-categories .home-category-box .inner {
            color: white;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 25px;
            z-index: 2;
        }

            .section-main-categories .home-category-box .inner:after {
                content: "";
                background: rgba(88, 101, 242, 0.8);
                width: 120%;
                height: 150%;
                position: absolute;
                bottom: -250%;
                left: -25px;
                z-index: -1;
                transform: rotate(8deg);
            }


    .section-main-categories .col-3 .home-category-box:hover .inner:after {
        bottom: -40%;
    }

    .section-main-categories .home-category-box:hover .inner:after {
        bottom: -60%;
    }

    .section-main-categories .home-category-box .inner .btn {
        padding: 0;
        opacity: 0;
        visibility: hidden;
        height: 0;
        transition: none;
        transition: opacity 0.3s ease-out;
        transition: background 0.3s ease-out;
        margin: 0;
        display: none;
    }

    .section-main-categories .home-category-box:hover .btn {
        display: inline-block;
    }

    .section-main-categories .home-category-box .inner .btn:hover {
        background: white;
        color: var(--clr-scd);
        border-color: white;
    }

    .section-main-categories .home-category-box .inner .title {
        font-weight: 500;
        font-size: 19px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .section-main-categories .home-category-box .inner .desc {
        transition: all 0.3s ease-out;
        line-height: 22px;
        font-size: 15px;
        opacity: 0;
        visibility: hidden;
        height: 0;
        font-family: 'Ubuntu'
    }

        .section-main-categories .home-category-box .inner .desc p {
            color: black;
        }

    .section-main-categories .home-category-box:hover .inner .btn,
    .section-main-categories .home-category-box:hover .inner .desc {
        opacity: 1;
        visibility: visible;
        height: auto;
    }

    .section-main-categories .home-category-box:hover .inner .desc {
        padding: 10px 0;
    }

    .section-main-categories .home-category-box:hover .inner .title {
        color: black;
    }

    .section-main-categories .home-category-box:hover .inner .btn {
        margin-top: 5px;
        padding: 8px 10px;
    }

    .section-main-categories .home-category-box:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background: rgba(0, 0, 0, 0.22);
    }

    .section-main-categories .col-1 {
        display: flex;
        width: 40%;
        margin-right: 8px;
    }

        .section-main-categories .col-1 .home-category-box {
            min-height: 650px;
        }

    .section-main-categories .col-2 {
        display: flex;
        width: 40%;
        margin-right: 8px;
        flex-direction: column;
    }

        .section-main-categories .col-2 .home-category-box:first-child {
            min-height: 392px;
            margin-bottom: 8px;
        }

        .section-main-categories .col-2 .home-category-box:last-child {
            min-height: 250px;
        }

    .section-main-categories .col-3 {
        display: flex;
        min-width: 20%;
        flex-direction: column;
    }

        .section-main-categories .col-3 .home-category-box:first-child {
            min-height: 242px;
            margin-bottom: 8px;
        }

        .section-main-categories .col-3 .home-category-box:last-child {
            min-height: 400px;
        }



    .section-main-categories .wrapper.accordion {
        display: flex;
        flex-flow: column;
        gap: 10px;
        color: #fff;
        height: 660px;
    }

        .section-main-categories .wrapper.accordion .home-category-box {
            background-size: cover;
            background-color: #000;
            display: inline-block;
            width: 100%;
            flex-grow: 1;
            flex-basis: 0;
            transition: all 300ms 0ms ease-in-out;
            background-attachment: unset;
            height: 100%;
            background-position: 50% 50%;
        }

            .section-main-categories .wrapper.accordion .home-category-box:hover {
                flex-grow: 3.5;
            }

            .section-main-categories .wrapper.accordion .home-category-box .inner {
                max-height: 85px;
                transition: all 0.3s ease;
            }

            .section-main-categories .wrapper.accordion .home-category-box:hover .inner {
                max-height: 400px;
                transition: all 0.4s 0.4s ease;
            }

            .section-main-categories .wrapper.accordion .home-category-box .inner .title {
                font-size: 17px;
            }

            .section-main-categories .wrapper.accordion .home-category-box .inner .desc {
                height: 0;
                overflow: hidden;
            }

            .section-main-categories .wrapper.accordion .home-category-box:after {
                background: #07020a63;
                transition: all 0.5s ease;
            }

            .section-main-categories .wrapper.accordion .home-category-box:hover:after {
                background: #07020a26;
            }

        .section-main-categories .wrapper.accordion .home-category-box {
            position: relative;
        }

            .section-main-categories .wrapper.accordion .home-category-box .inner:before {
                position: absolute;
                font-size: 25px;
                color: #de398d;
                right: 20px;
                top: 20px;
                -webkit-font-smoothing: antialiased;
                display: inline-block;
                font-style: normal;
                font-variant: normal;
                text-rendering: auto;
                line-height: 1;
                font-family: 'Ubuntu';
                font-weight: 900;
                opacity: 1;
                transition: all 0.4s ease;
            }

            .section-main-categories .wrapper.accordion .home-category-box:hover .inner:before {
                opacity: 0;
            }

            .section-main-categories .wrapper.accordion .home-category-box .inner:after {
                transition: all 0.3s ease;
            }

            .section-main-categories .wrapper.accordion .home-category-box:hover .inner:after {
                transition: all 0.3s 0.2s ease;
            }

            .section-main-categories .wrapper.accordion .home-category-box .mask-link {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: 10;
                display: block;
            }

            .section-main-categories .wrapper.accordion .home-category-box .inner .btn {
                opacity: 0;
                height: 100%;
                display: inline-block;
                transition: all 0.4s ease !important;
            }

            .section-main-categories .wrapper.accordion .home-category-box:hover .inner .btn {
                opacity: 1 !important;
                visibility: visible;
                height: auto;
                transition: all 0.4s 0.4s ease !important;
            }

            .section-main-categories .wrapper.accordion .home-category-box:hover .inner .desc {
                opacity: 1;
                height: auto;
                overflow: visible;
                visibility: visible;
                height: auto;
                transition: all 0.4s 0.4s ease;
            }

@media (min-width: 991px) {
    .section-main-categories .wrapper.accordion {
        flex-flow: row;
        height: 50vh;
        min-height: 600px;
    }
}

@media (max-width: 1360px) {
    .section-main-categories .wrapper.accordion .home-category-box .inner {
        padding-left: 15px;
        padding-right: 30px;
    }

        .section-main-categories .wrapper.accordion .home-category-box .inner:before {
            right: 12px;
            font-size: 20px;
            top: 25px;
        }

        .section-main-categories .wrapper.accordion .home-category-box .inner .title {
            font-size: 15px;
        }

        .section-main-categories .wrapper.accordion .home-category-box .inner .desc {
            font-size: 14px;
        }
}

@media (max-width: 1024px) {
    .section-main-categories .wrapper.accordion .home-category-box .inner {
        max-height: 90px;
        padding: 15px;
        padding-right: 38px;
    }

        .section-main-categories .wrapper.accordion .home-category-box .inner:before {
            right: 10px;
            top: 10px;
        }

        .section-main-categories .wrapper.accordion .home-category-box .inner:after {
            bottom: -250%;
        }

    .section-main-categories .wrapper.accordion .home-category-box:hover .inner:after {
        bottom: -45%;
    }

    .section-main-categories .wrapper.accordion .home-category-box .inner:before {
        display: none;
    }

    .section-main-categories .wrapper.accordion .home-category-box .mask-link {
        display: none;
    }
}

@media (max-width: 991px) {
    .section-main-categories .wrapper.accordion .home-category-box .inner:before {
        display: block;
    }

    .section-main-categories .wrapper.accordion .home-category-box .inner .title {
        font-size: 16px;
    }

    .section-main-categories .wrapper.accordion .home-category-box .inner .desc {
        font-size: 15px;
    }
}


/*
    ==========================================
    ==========================================
    ========= LOT CARD STYLE  =========
    ==========================================
    ==========================================
*/

.productbox {
    text-align: center;
    display: flex;
    border: solid 1px transparent;
    overflow: hidden;
    background: white;
    min-height: 390px;
}

    .productbox .btn {
        margin-bottom: 15px;
    }

    .productbox .content {
        overflow: hidden;
    }

    .productbox:hover {
        border: solid 1px #DBE0E3;
        box-shadow: 0px 0px 10px #0000001f;
    }

        .productbox:hover .column-inner-bottom:after {
            opacity: 1;
            visibility: visible;
        }

        .productbox:hover .title {
            color: white;
            text-decoration: underline;
        }

        .productbox:hover .price_caption {
            color: white;
        }

        .productbox:hover .btn {
            background: white !important;
            color: var(--clr-scd) !important;
            border-color: white !important;
        }

        .productbox:hover .price_caption .value s {
            color: black;
        }

    .productbox .prod-image {
        text-align: center;
        padding-top: 25px;
        position: relative;
        min-height: 230px;
    }

        .productbox .prod-image img {
            display: inline;
            max-width: 100%;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

.productphotogallery .image a {
    position: relative;
    height: 100%;
    width: 100%;
}

.productbox .column-inner-bottom {
    padding-bottom: 25px;
    padding: 0 10px;
    position: relative;
}

    .productbox .column-inner-bottom:after {
        content: "";
        position: absolute;
        background: #5865f2;
        height: 140%;
        left: -20px;
        bottom: -30px;
        z-index: 1;
        transform: rotate(8deg);
        width: 120%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-out;
    }

    .productbox .column-inner-bottom .caption {
        position: relative;
        z-index: 2;
    }

.productbox .price_caption .text {
    display: none;
}

.productbox .price_caption {
    font-weight: 500;
    font-size: 16px;
    color: var(--clr-scd);
    padding: 20px 0;
}

    .productbox .price_caption .value s {
        color: gray;
    }

.product_info_banner.xsellbanner {
    margin: 50px 0;
}


#newsLetterInput {
    background-color: #333333;
}

    #newsLetterInput:focus {
        background-color: white;
    }

.cards-container a {
    padding: 7px 0;
    color: white;
}

.cards-container .description a {
    font-size: 17px;
    font-weight: 500;
    position: relative;
    min-width: 200px;
    padding-bottom: 8px;
    color: white;
}

.cards-container .social a {
    min-width: auto;
}

.cards-container .description a:hover {
    color: black;
}

.cards-container .description a i {
    font-size: 30px;
    position: relative;
    top: 5px;
    display: inline-block;
    margin-right: 5px;
}

.errorInputBorder {
    border: 2px solid red;
}

/*
    ==========================================
    ==========================================
    ================ ESKELETON ===============
    ==========================================
    ==========================================
*/

/* Skeleton Loading Styles */
.skeleton-card {
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
}

.skeleton-product-image {
    height: 220px;
    background: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}

.skeleton-title {
    width: 40%;
    height: 15px;
    background: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    margin-right: auto !important;
    margin-left: auto !important;
}

@keyframes skeleton-loading {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

.skeleton-price {
    width: 50%;
    height: 15px;
    background: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    margin-right: auto !important;
    margin-left: auto !important;
}

.skeleton-text {
    width: 30%;
    height: 15px;
    background: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
    margin-right: auto !important;
    margin-left: auto !important;
}


.btnCustom {
    color: #ffffff !important;
    background-color: #5865f2;
    border-color: #5865f2;
}

    .btnCustom:hover {
        color: #FF2A00 !important;
        background-color: #ffffff;
        border-color: #FF2A00;
    }


.btnCustomOutline {
    color: #FF2A00;
    border-color: #FF2A00;
    background-color: #ffffff;
}

    .btnCustomOutline:hover {
        color: #ffffff;
        background-color: #FF2A00;
        border-color: #FF2A00;
    }

.custom-img-lot-card {
    margin-bottom: 10px;
    height: 220px;
    width: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

#components-reconnect-modal{
    display: none !important;
}

.img-box {
    margin-bottom: 10px;
    display: block;
    height: 220px;
    width: 100%;
    background-position: top center;
    background-size: contain;   /* show whole image */
    background-repeat: no-repeat; /* avoid tiling */
}

.img-box-contain {
    margin-bottom: 10px;
    display: block;
    height: 147px;
    width: 100%;
    background-position: top center;
    background-size: contain;      /* show whole image */
    background-repeat: no-repeat;  /* avoid tiling */
}



/* --- Base spacing --- */
.howto-section {
    padding: 2.5rem 0;
}

@media (min-width: 992px) {
    .howto-section {
        /*padding: 5rem 0;*/
    }
}

/* --- HERO --- */
.howto-hero {
    padding: 4rem 0 2rem 0;
    background: #ffffff;
}

@media (min-width: 992px) {
    .howto-hero {
        padding: 5rem 0 2.5rem 0;
    }
}

.howto-hero-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.25rem;
}

/* If editors wrap a word in <span class="accent">Buy</span> */
.howto-hero-title .accent {
    color: #5b6bff;
}

/* Nice bonus: also color <em> or <strong> if they use those instead */
.howto-hero-title em,
.howto-hero-title strong {
    color: #5b6bff;
    font-style: normal;
}

.howto-hero-intro {
    font-size: 1.05rem;
    color: #444;
    max-width: 58ch;
    margin: 0 auto;
}

/* --- Section titles --- */
.howto-section-title {
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.12;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    margin-bottom: 1rem;
}

.howto-section-title--big {
    /*font-size: clamp(2rem, 3.2vw, 2.8rem);*/
}

/* --- Rich text styling to mimic the mock --- */
.howto-rich {
    font-size: 1.05rem;
    color: #333;
}

.howto-rich p {
    margin-bottom: 1.25rem;
}

.howto-rich h2,
.howto-rich h3 {
    font-weight: 800;
    margin-top: 2.25rem;
    margin-bottom: .75rem;
}

/* For the "Lorem Ipsum" stacked feel */
.howto-rich--stacked h3 {
    font-size: 1.6rem;
}

.howto-rich--stacked p {
    /*max-width: 70ch;*/
}

/* --- Illustration --- */
.howto-hero-illustration {
    max-width: min(520px, 100%);
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.08));
}

/* Optional subtle separation between sections */
.howto-section--one,
.howto-section--three {
    background: #ffffff;
}

.howto-section--two {
    /*background: #fafafa;*/
}

.howto-section-title--big .accent-last {
    color: #5b6bff;
}



.custom-thumbnail-wrapper {
    position: relative;
    display: inline-block;
    width: 19%;
    height: 0;
    padding-bottom: 13%;
    margin-left: 5px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    background-color: #f0f0f0;
    border-radius: 5px;
    transition: box-shadow .3s ease;
}

.custom-thumbnail-wrapper:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,.15);
}

@media(max-width: 768px) {
    .custom-thumbnail-wrapper {
        width:30%;
        margin-left: 2%;
        padding-bottom: 20%;
        margin-top: 5%;
    }
}

@media(max-width: 480px) {
    .custom-thumbnail-wrapper {
        width:45%;
        margin-left: 2%;
        padding-bottom: 25%;
    }

    .custom-thumbnail-image {
        padding-top: 5%;
    }
}

.custom-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.custom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    opacity: 1;
    transition: background .3s ease-in-out;
}

.custom-thumbnail-wrapper:hover .custom-thumbnail-image {
    transform: scale(1.05)
}

.no-images-placeholder {
    width: 100%;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border: 2px dashed #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    position: relative;
}

.no-images-placeholder::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #808080;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#menu-usedful {
    font-size: 16px !important;
}