﻿: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;
}

.dropdown-filter {
    border-color: var(--color-tertiary);
    color: var(--color-secondary);
    border-radius: 5px;
    height: 34px; 
    font-size: 12px;
}

.border-radius-5{
   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: #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-secondary);
    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-center {
    text-align: center !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/AE_logo_white.png) no-repeat 10px 10px;*/
    position: relative;
    float: left;
    height: 70px;
    line-height: 16px;
    display: flex;
    justify-content: center;
}

.logo-footer-text {
    position: relative; 
    float: left; 
    margin: 3px 0 0 0px; 
    color: #FFFF; 
    font-size: 11px; 
    font-weight: bolder;
}

.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;
    }
}

/*CHAT BUBBLES*/
.bubble {
  position: relative;
  width: auto;
  max-width: 70%;
  background: #D9D9D9;
  border-radius: 40px;
  padding: 14px;
  padding-left: 30px;
  padding-right: 30px;
  color: black;
}

.bubble-bottom-left:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 14px solid #D9D9D9;
  border-right:10px solid transparent;
  border-top: 10px solid #D9D9D9;
  border-bottom: 14px solid transparent;
  left: 11px;
  bottom: -14px;
}

/*ALERTS*/
.alert-liveauction {
  position: relative;
  width: auto;
  max-width: 70%;
  background: #FFB800;
  border-radius: 10px;
  padding: 14px;
  padding-left: 30px;
  padding-right: 30px;
  color: black;
}

@media (max-width: 1200px) {
    .bubble {
      max-width: 100%;
    }
    .alert-liveauction {
      max-width: 100%;
    }
}


.search-area-top {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

    .search-area-top .search-area-form {
        width: 100%;
        max-width: 80px;
        margin: 20px;
    }

    .search-area-top .search-area-input {
        padding: 4px 0;
        outline: none;
        font-size: 1.2em;
        font-weight: 300;
        background: none;
        border: none;
        width: 100%;
        border-bottom: 1px solid #aaa;
    }

    .search-area-top .search-area-button {
        position: absolute;
        right: 0;
        bottom: 5px;
        background: none;
        border: none;
        outline: none;
        cursor: pointer;
    }

    .search-area-top .close-btn {
        position: absolute;
        top: 20px;
        right: 40px;
        cursor: pointer;
        color: #555;
    }

/*MEGA MENU*/
@media (min-height: 1200px) {
    .dropdown-menu {
        max-height: 700px;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

@media (min-height: 900px) {
    .dropdown-menu {
        max-height: 450px;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

@media (max-height: 600px) {
    .dropdown-menu {
        max-height: 300px;
        overflow-x: hidden;
        overflow-y: auto;
    }
}

.hidden-element {
    display: none;
}

#phoneInput {
    min-height: 50px;
    width: 100%;
}

.iti {
    width: 100% !important;
}



/*
    ==========================================
    ==========================================
    ================ ESKELETON ===============
    ==========================================
    ==========================================
*/
.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: 70%;
    height: 20px;
    background: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 50%, #e0e0e0 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}

@keyframes skeleton-loading {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.skeleton-price {
    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;
}

.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;
}


.getin-touch {
    border-top: 1px solid #C8C8C8;
    border-left: 0;
    border-right: 0;
}
.getin-left {
    border-right: 1px solid #C8C8C8;
    height: 100%;
}
.copyright-icon {
    width: 35px;
    object-fit: contain;
}
.getin-list li a {
    position: relative;
}
.getin-list li a:before {
    /*content: "";*/
    background: #dc3545;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: -5px;
}

.store-img {
    width: 100px;
}

.img-footer{ 
    height: 32px;
}

.h-90 {
    height: 90% !important;
}
.letter-spacing-0 {
    letter-spacing: 0 !important; 
}

.form-field-border {
  border: 1px solid #0A5A6F;
}

.button-with-icon-bidding-panel {
    height: 56px; 
    width: 56px;
}

/*Animation Filters*/
.filter-animated {
    display: none;
    opacity: 0;
}

.filter-animated-open {
    border: 1px solid #d0d0d0;
    visibility: visible;
    opacity: 1;
    animation: fade 1s;
    margin-bottom: 25px;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*Search PopUp*/

/* clears the �X� from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the �X� from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }



.error-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: black;
    padding: 10px;
    text-align: center;
}

    .error-banner button.close {
        color: white;
    }

/* REMOVE ARROWS */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.text-lot-card {
    height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /*line-height: 16px; !* Adjust as necessary to fit exactly two lines *!*/
    margin: 0; /* Ensures there's no extra space adding to the height */
}

#components-reconnect-modal {
    display: none !important;
}