
:root {
    --color-foreground: #fff;
    --color-background: #691626;
    --color-filters: #691626;
    --color-footer-menu: black;
    --bg-footer-menu: #dee2e6;
}

/*
    ==========================================
    ==========================================
    =========== 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: 80vh; /* These two lines are counted as one :-)*/
    display: flex;
    align-items: center;
}


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

.sort-button {
    color: var(--color-filters);
    position: relative;
    width: 32px;
    height: 32px;
    background-color: var(--color-filters);
    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-filters);
    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-filters);
}

.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-background);
        color: var(--color-background);
        cursor: auto;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress-moved .progress-bar2 {
    background-color: var(--color-background);
    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;
}

.custom-gradient-losing {
    background: linear-gradient(100deg, #F8D7DA, #F8D7DA, #F8D7DA, #fba5ad);
    background-size: 400% 400%;
    animation: gradient 2.2s ease infinite;
}

@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;
}

.text-burgundy-color {
    color: #691626 !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;
    }
}

.animation-scroll {
    animation: Scrolling 3s linear infinite;
    position: relative;
}

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

    50% {
        bottom: -30px;
    }
}

/*
    ==========================================
    ==========================================
    ================= FOOTER =================
    ==========================================
    ==========================================
*/

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

.footer-copyright {
    background-color: var(--color-background);
    color: var(--color-foreground);
}


/*
    ==========================================
    ==========================================
    ============= AUCTION CARD ===============
    ==========================================
    ==========================================
*/

.img-auction {
    display: block;
    height: 560px;
    width: 100%;
    background-position: center;
    background-size: cover;
    border-radius: 10px 10px 0 0;
}

.auction-card-bottom {
    background-color: #691626;
    color: white;
    border-radius: 0px 0px 10px 10px;
}

.service-card-bottom {
    background-color: white;
    color: black;
    border-radius: 0px 0px 10px 10px;
}

.vertical_line_title {
    background-color: #691626;
    width: 7px;
    height: 34px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/*
    ==========================================
    ==========================================
    ======== BACKGROUND SPLASH WINE ==========
    ==========================================
    ==========================================
*/

#ActiveAuctions {
    background: url("../img/customer/winesplash.png") no-repeat;
    background-position: bottom -100px left;
    background-size: 300px;
}

/*
    ==========================================
    ==========================================
    ======== BACKGROUND SPLASH WINE ==========
    ==========================================
    ==========================================
*/
#blackBannerWithLinks {
    background: black;
}



/*
    ==========================================
    ==========================================
    ========== IMAGE CUSTOMIZATION ===========
    ==========================================
    ==========================================
*/

.bg-image-home {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

img.bg-image-home {
    font-family: 'object-fit: cover;';
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 600px) {
    img.bg-image-home {
        font-family: 'object-fit: cover;';
        -o-object-fit: cover;
        object-fit: cover;
        left: 0;
    }
}

@media (max-width: 1200px) and (min-width: 600px) {
    .bg-image-home {
        right: 0px;
        width: 100%;
        height: 100%;
    }
}


.img-black-white {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

    .img-black-white:hover {
        filter: none;
        -webkit-filter: grayscale(0);
    }

.img-home-slogan {
    width: 40%;
}

@media (max-width: 600px) {
    .img-home-slogan {
        width: 100%;
    }
}

#SectionDashboard {
    background-image: url("../img/customer/winesplash.png"), url("../img/customer/winesplash-fromRight.png");
    background-position: top 500px left, top 100px right;
    background-repeat: no-repeat, no-repeat;
    background-size: 300px;
}

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


.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 46.25%; /* Aspect ratio */
    height: 80%;
    overflow: hidden;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80%;
    }

.interesting-text-truncated-container {
    display: block;
    height: 40px;
    overflow: hidden
}

.interesting-text-truncated {
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Adjust the number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}