.am-xsell-widget {
    position: relative;
    display: grid;
    grid-template-columns: 0.1fr 1.9fr;
    grid-template-rows: 1fr;
    gap: 0 0;
    grid-template-areas:  "checkbox description";
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 30px;
}

#am-xsell-widget .am-xsell-widget__checkbox {
    grid-area: checkbox;
    pointer-events: none;
}

#am-xsell-widget .am-xsell-widget__checkbox input[type='checkbox'] {
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    outline: none;
    border:none;
    content: none;
    padding: 0;
    margin-right:15px;
}

#am-xsell-widget .am-xsell-widget__checkbox input[type='checkbox']:before {
    content: "✓";
    display: block;
    pointer-events: auto;
    color: transparent !important;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 24px;
    line-height: 7px;
    cursor: pointer;
}

#am-xsell-widget .am-xsell-widget__checkbox input[type='checkbox']:checked:before {
    color: #444 !important;
}

#am-xsell-widget .am-xsell-widget__description {
    grid-area: description;
}

#am-xsell-widget .am-xsell-widget__description .product-name {
    margin-bottom:5px;
}

#am-xsell-widget .am-xsell-widget__description .product-name label {
    display: inline-block !important;
    color: #444;
    font-weight: bold;
    font-size: 16px !important;
    margin-bottom: 0 !important;
    cursor: pointer;
}

#am-xsell-widget .am-xsell-widget__description .prices {
    float: right;
    font-size: 16px;
    font-weight: bold;
}

#am-xsell-widget .am-xsell-widget__description .prices span.original-price {
    color:#777;
    text-decoration:line-through;
}

#am-xsell-widget .am-xsell-widget__description p {
    margin-bottom: 0;
    color: #777;
    font-size: 14px !important;
    line-height: 22px;
}

.am-xsell-widget .am-xsell-widget__spinner {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .95);
}

.am-xsell-widget .am-xsell-widget__spinner .edd-loading-ajax.edd-loading {
    border-width: 3px;
}

.am-xsell-widget.am-xsell-widget--loading {
    cursor: progress;
}

.am-xsell-widget.am-xsell-widget--loading .am-xsell-widget__spinner {
    display: flex;
}