.binsizes-pricing__list tbody ul {
    margin: 0px 0px;
    padding: 0px 0px;
    list-style: none;
}

.book-bin__form-field.book-bin__form-description p {
    font-weight: 400;
}

/** BOOK PAGE **/
.book-container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.book-container.loading {
    opacity: 0.7;
    cursor: wait;
}

.book-container.loading .book-button button {
    pointer-events: none;
}

.book-block {
    background-color: #e6e0e0;
    border-radius: 6px;
    padding: 20px 20px;
    margin-bottom: 40px;
}

.book-block h2,
.book-block h3 {
    margin: 0 0 15px;
    font-weight: 700;
}

.book-block h2 a.clear {
    display: none;
    font-size: 14px;
    color: #777;
}

.book-block h2 a.clear:hover {
    text-decoration: underline;
}

.book-block label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.book-block .form-control {
    border: 0;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: none;
    outline: none;
}

.book-block .form-control:last-child {
    margin-bottom: 0;
}

.book-block .radio,
.book-block .checkbox {
    margin: 0 0 5px;
}

.book-block .radio label,
.book-block .checkbox label {
    font-weight: 400;
    margin-bottom: 0;
}

.book-block .radio input,
.book-block .checkbox input {
    margin-top: 6px;
}

.book-block .select-field,
.book-block .date-field {
    position: relative;
    background-color: #fff;
    border-radius: 6px;
}

.book-block .select-field select,
.book-block .date-field input {
    position: relative;
    padding-right: 35px;
    background-color: transparent;
    z-index: 2;
}

.book-block .select-field:before,
.book-block .date-field:before {
    content: '';
    position: absolute;
    right: 12px;
    z-index: 1;
}

.book-block .select-field:before {
    top: 11px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #af1e14;
}

.book-block .select-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.book-block .date-field:before {
    width: 18px;
    height: 20px;
    top: 7px;
    background-image: url(../img/icon-calendar.png);
    background-repeat: no-repeat;
    background-position: 0;
    background-size: contain;
}

book-details p.note {
    margin-bottom: 0;
}

.book-product .radio {
    margin-bottom: 20px;
    padding-top: 10px;
}

.book-product .radio label {
    padding-left: 0;
}

.book-product .radio img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 5px 0 5px;
}

.book-product .radio span {
    display: block;
    font-size: 16px;
    color: #af1e14;
    font-weight: 700;
}

.book-product .radio span.out-of-stock {
    position: absolute;
    top: 50px;
    right: 35px;
    left: 35px;
    background-color: #af1e149e;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
}

.book-product p.note {
    margin-bottom: 0;
}

.book-wastetype ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.book-wastetype ul li {
    margin-bottom: 10px;
}

.book-wastetype ul li:last-child {
    margin-bottom: 0;
}

.book-button label {
    font-weight: 700;
}

.book-button .checkbox {
    margin: 0 0 20px;
}

.book-button .book-total,
.book-button button {
    display: inline-block;
    border: 0;
    border-radius: 6px;
    padding: 0 40px;
    font-size: 22px;
    font-weight: 700;
    line-height: 46px;
    text-align: center;
    outline: none;
}

.book-button .book-total {
    background-color: #e6e0e0;
}

.book-button .book-total span.amount {
    display: inline-block;
    margin-left: 10px;
    color: #477525;
}

.book-button .book-total.loading {
    opacity: 0.6;
    cursor: wait;
}

.book-button button {
    background-color: #477525;
    margin-left: 20px;
    color: #fff;
}

.book-button button[disabled] {
    opacity: 0.6;
}

@media (min-width: 768px) {
    .book-button {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media (max-width: 991px) {
    .book-wastetype .col-md-4:nth-child(2) {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .book-product .radio span {
        font-size: 14px;
    }

    .book-button .book-total, .book-button button {
        display: block;
        width: 100%;
    }

    .book-button button {
        margin: 10px 0 0;
    }
}
/** END BOOK PAGE **/