.star-watchlist {
    height: 35px;
    width: 35px;
    justify-content: center;
}

.domain-info-title .watch-hover-info {
    font-size: 18px;
    top: -50px !important;
}

.current-domain-icon {
    /*margin-top: -8px !important;*/
    padding: 0 !important;
    font-size: 30px;
    display: block;
    cursor: pointer;
}

.backorder-detail-ext {
    background: rgb(250, 253, 255);
    padding: 120px;
    display: flex;
    gap: 36px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.ext-table {
    background: rgb(255, 255, 255);
    min-height: 493px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.ext-table-title {
    font-size: 20px;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding-left: 4px;
}

.title-icon {
    margin: 0 10px 0 15px;
}

.title-name {
    padding: 0;
}

.ext-table-content {
    height: 445px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    padding: 0;
}

.ext-table-content-item {
    height: 60px;
    width: 100%;
    padding: 12px 0 12px 10px;
    display: flex;
    align-items: center;
}

.ext-table-content-item i {
    cursor: pointer;
}

.item-name {
    display: flex;
    /*gap: 8px;*/
    align-items: center;
    padding: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.item-bids {
    font-size: 16px;
    text-align: right;
    margin-right: 12px;
    color: rgba(0, 0, 0, 0.3);
}

.item-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #0096F7;
    color: #fff;
    border-radius: 22px;
}

.item-backorder-icon, .item-auction-icon {
    padding: 0 !important;
}

.item-auction-info, .item-backorder-price {
    text-align: right;
}

.chevr{
    display: none;
    transition: all 0.3s;
}

.backorder-steps img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loader-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
}

.loader {
    position: absolute;
    top: calc(40% - 20px);
    left: calc(50% - 20px);
}

@keyframes loader {
    0% {
        left: -100px
    }
    100% {
        left: 110%;
    }
}

.box {
    width: 50px;
    height: 50px;
    background: rgb(94, 140, 214);
    animation: animate .5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}

@keyframes animate {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        transform: translateY(9px) rotate(22.5deg);
    }
    50% {
        transform: translateY(18px) scale(1, .9) rotate(45deg);
        border-bottom-right-radius: 40px;
    }
    75% {
        transform: translateY(9px) rotate(67.5deg);
    }
    100% {
        transform: translateY(0) rotate(90deg);
    }
}

.shadow {
    width: 50px;
    height: 5px;
    background: #000;
    opacity: 0.1;
    position: absolute;
    top: 59px;
    left: 0;
    border-radius: 50%;
    animation: shadow .5s linear infinite;
}

@keyframes shadow {
    50% {
        transform: scale(1.2, 1);
    }
}

@media (max-width: 768px) {
    .item-btn-container{
        display: none;
    }
    .chevr{
        display: inline;
    }
}

@media (max-width: 600px) {
    .backorder-detail-ext {
        padding: 120px 20px;
    }
}

@media (max-width: 1500px) and (min-width: 610px) {
    .backorder-detail-ext {
        padding: 120px 0;
    }
}
@media (max-width: 1380px) {
    .backorder-detail-ext {
        flex-direction: column;
    }
}
