/*-- Basket Custom CSS --*/

/*-- Basket Containers --*/
.basket-notification-container {
    max-height: 250px;
    overflow-x: hidden;
    overflow-y: auto;
}

/*-- Basket Tables --*/
.basket-table-title {
    width: 8rem;
}

.total-table-title {
    width: 11rem;
}

/*-- Basket Links --*/
.basket-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: None;
    text-align: right;
}

.basket-link:hover {
    color: var(--greenhighlight);
    cursor: pointer;
}

/*-- Media Queries--*/
@media (min-width: 768px) {
    .basket-table-title {
        width: 9rem;
    }
}

@media (max-width: 370px) {
    .basket-table-title {
        width: 7rem;
    }
    .basket-link {
        font-size: 1.0rem;
    }
    .basket-notification-container {
        max-height: 150px;
    }
}

@media (max-width: 300px) {
    .basket-notification-container {
        overflow-x: auto;
    }
}