.product-stock-availability {
    height: 1em;
    width: 1em;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: rgb(0 0 0 / 10%) 3px 3px 5px 0px;
}

.rental-details {
    text-align: left;
    display: block;
    padding: 2em 0.5em;
}

#loadDate {
    margin-top: 2em;
}

.product-stock-availability.in-stock {
    background-color: #1bb784;
}

.product-stock-availability.out-of-stock {
    background-color: #ea6161;
}
.normal-button {
    display: flex;
    align-items: center;
}
.disabled-button {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    color: var(--color-light);
    font-weight: bolder;
}

/* Safari 11+ */
@media not all and (min-resolution:.001dpcm){
    @supports (-webkit-appearance:none) and (stroke-color:transparent) {
        selector {
            property:value;
        }
        label {
            font-weight: normal;
        }
    }
}