/* Basket Section Styles */
#xmas-message {
    display: none;
    width: 200px;
    flex-direction: column;
    text-align: left;
}

.basket-section {
    padding: 35px;
}

.table-container {
    margin-bottom: 20px;
}

.table-divider {
    height: 1px;
    background-color: #d3d3d3;
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 5px;
}

/* Basket Table Styles */
.basket-table {
    width: 100%;
}

.basket-row {
}

.basket-cell {
}

/* Basket Alignment Containers */
.basket-right-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}

.basket-together {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.basket-together-left {
    justify-content: flex-start;
}

.basket-together-right {
    justify-content: flex-end;
}

.basket-space-right {
    margin-right: 5px;
}

/* Control Buttons and Inputs */
.remove-control {
}

    .remove-control .btn-remove {
    }

.item-thumbnail-control {
    margin-right: 5px;
}

.item-thumbnail {
    width: 40px;
    height: 40px;
    padding: 0;
}

.description-control {
    text-align: left;
}

.qty-input-control {
}

.btn-increase-decrease-control {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
}

.units-control {
    margin-left: 5px;
    margin-right: 5px;
    text-align: left;
}

.price-control {
    margin-left: 5px;
    margin-right: 5px;
    text-align: right;
}

.qty-input {
    width: 60px;
}

.basket-text-right {
    text-align: right;
}

/* Basket Totals Styling */
.basket-totals-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
}

.basket-totals-tax-text,
.basket-totals-tax,
.basket-totals-grandtotal-text,
.basket-totals-grandtotal {
    text-align: right;
}

/* Hidden and Visibility Classes */
.hidden {
    display: none;
}

.invisible {
    visibility: hidden;
}

/* Link Styling */
.small-link {
    font-size: 12px;
    color: silver;
    text-decoration: underline;
    cursor: pointer;
    margin-right: 10px;
}

/* Strikethrough Line Styling */
.strikethrough {
    text-decoration: line-through;
    color: #999999;
}

    /* Disabled Input Styling */
    .strikethrough input {
        background-color: #f0f0f0;
        color: #666666;
        cursor: default;
        pointer-events: none;
        border: 1px solid #cccccc;
    }


/* General Button Styles */
.btn {
    cursor: pointer;
    padding: 5px 10px;
    border: none;
    background-color: #007BFF;
    color: white;
    font-size: 0.9em;
    transition: filter 0.3s ease;
}

/* Message Box */
.message-box {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    font-size: 0.9em;
}

/* Button Rows */
.updatecancel-row,
.checkout-row {
    display: flex;
    gap: 5px;
    margin: 5px 0;
    flex-direction: column;
}

.updatecancel-row {
    align-items: flex-start;
}

.checkout-row {
    align-items: flex-end;
}

    .checkout-row button {
        font-size: 1.5em;
        height: 3em;
        width: auto;
        background-color: #FFC000;
        color: #00383c;
        border: none;
        border-radius: 6px;
        padding: 7.5px 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
        text-decoration: underline;
    }

.button-row {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

    .button-row button {
        padding: 10px 20px;
        font-size: 1em;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        color: white;
    }

/* Button Variants */
.btn-update-quantities {
    background-color: #28a745;
}

.btn-update-deletions {
    background-color: #dc3545;
}

.btn-add-promo {
    background-color: #007bff;
}

.btn-remove {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #dc3545;
    color: white;
    margin: 5px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2em;
}

/* Increase/Decrease Button Styles */
.btn-increase,
.btn-decrease {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    line-height: 1;
    cursor: pointer;
    margin: 1px 5px;
}

.btn-increase {
    background-color: #28a745;
    color: white;
}

.btn-decrease {
    background-color: #dc3545;
    color: white;
}

/* Hidden and Visible Button Styles */
.MyBasketUpdateQtyBTNHidden,
.MyBasketUpdateDeleteItemBTNHidden {
    background-color: #cccccc;
    color: #666666;
    border: 1px solid #aaaaaa;
    cursor: not-allowed;
    opacity: 0.6;
}

.MyBasketUpdateQtyBTNVisible,
.MyBasketUpdateDeleteItemBTNVisible {
}

/* Delivery Options Styling */
.delivery-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.delivery-options-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.delivery-select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.delivery-option {
    padding-left: 10px;
}

/* Delivery international select country */
.select-country {
    background-color: #f9f9f9;
}

    .select-country form {
        max-width: 400px;
        margin: auto;
        padding: 20px;
        background-color: #ffffff;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        margin-bottom: 15px;
    }

    .select-country label {
        display: block;
        margin-bottom: 10px;
    }

    .select-country select {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #ffffff;
        /*font-size: 16px;*/
    }

    .select-country button {
        width: 100%;
        padding: 10px;
        background-color: #007bff;
        color: #ffffff;
        border: none;
        border-radius: 5px;
        /*font-size: 16px;*/
        cursor: pointer;
    }

        .select-country button:hover {
            background-color: #0056b3;
        }

