.rental-product-container {
    padding-top: 40px;
    padding-bottom: 60px;
}

.rental-product-container .product-title {
    margin: 0 0 40px;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.rental-product-content {
    margin-bottom: 40px;
}

.rental-product-image-wrap {
    padding: 0 20px;
}

.rental-product-container .basic-info {
    margin-bottom: 25px;
    line-height: 2;
}

/*
 * The groups stack naturally because each div is a block element.
 * No d-flex or custom display:flex is required.
 */
.rental-section__group {
    margin-bottom: 24px;
}

.rental-section__heading {
    display: inline-block;
    min-width: 140px;
    margin-bottom: 12px;
    padding: 7px 14px;
    color: #fff;
    background: #333;    
}

.rental-section label {
    display: block;
    margin-bottom: 6px;        
}

.rental-section .form-control {
    height: 42px;
    border-radius: 4px;
    box-shadow: none;
}

.rental-price {
    text-align: right;
}

.rental-price__unit {
    margin-bottom: 8px;
    font-weight: 700;
}

.rental-price__total {
    color: #e60000;
}

.rental-price__total strong {
    margin: 0 10px;
    font-size: 25px;
}

.rental-cart-button,
.rental-quote-button {
    height: 48px;
    margin-top: 12px;
    border-radius: 0;
    line-height: 34px;
}

.rental-cart-button {
    border-color: #e60000;
    background: #e60000;
}

.rental-quote-button {
    border-color: #666;
    background: #666;
    color: #fff;
}

.rental-cart-button:hover,
.rental-quote-button:hover {
    opacity: 0.7;
    color: #fff;
}

.rental-cart-icon {
    width: 24px;    
    margin-right: 10px;
    margin-top: 5px;
}

.rental-quote-icon {
    width: 8px;    
    margin-left: 3px;
    margin-top: 12px;
}

.rental-terms-link {
    color: #2c19bc;
    text-decoration: underline;
}

.rental-date-fields {
    display: flex;
    width: 100%;
}

.rental-date-field {
    width: 50%;
}

.rental-date-field label {
    margin-bottom: 7px;
    color: #684d45;
    font-size: 14px;
    font-weight: 500;
}

.rental-date-control {
    position: relative;
    height: 52px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}

.rental-date-field:first-child .rental-date-control {
    border-radius: 5px 0 0 5px;
}

.rental-date-field:last-child .rental-date-control {
    margin-left: -1px;
    border-radius: 0 5px 5px 0;
}

.rental-date-display {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #35bdb8;
    font-size: 21px;
    z-index: 1;
    pointer-events: none;
}

.rental-date-display i {
    margin-right: 13px;
    font-size: 22px;
}

.rental-date-native {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 0;
    cursor: pointer;
}

.rental-date-control:focus-within {
    border-color: #35bdb8;
    box-shadow: 0 0 3px rgba(53, 189, 184, 0.4);
}

.rental-section__delivery,
.rental-section__return {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.5;
}

.rental-section__delivery {
    color: #684d45;
}

.rental-section__return {
    color: #684d45;
}

.rental-section__delivery-date {
    color: #35bdb8;
}

.rental-cart-data {
    display: block;
    margin-top: 10px;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.rental-cart-data__row {
    display: block;
    margin: 0 0 3px;
    padding: 0;
    white-space: nowrap;
}

.rental-cart-data__row:last-child {
    margin-bottom: 0;
}

.rental-cart-data__row strong {
    margin-right: 5px;
    color: #333;
}

@media (max-width: 480px) {
    .rental-date-fields {
        display: block;
    }

    .rental-date-field {
        width: 100%;
        margin-bottom: 12px;
    }

    .rental-date-field:first-child .rental-date-control,
    .rental-date-field:last-child .rental-date-control {
        margin-left: 0;
        border-radius: 5px;
    }
}

@media (max-width: 991px) {
    .rental-product-image-wrap {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .rental-product-container {
        padding-top: 20px;
    }

    .rental-product-container .product-title {
        margin-bottom: 25px;
        font-size: 21px;
    }

    .rental-product-image-wrap .w-50 {
        width: 100% !important;
    }
}