#custom-upsell {}

#custom-upsell .item {
    display: none;
    overflow: hidden;
    opacity: 0;
    max-height: 0;

    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid;
}
#custom-upsell #upsell-title {
    display: none;
}

#custom-upsell .item:first-child {
    margin: 0;
}

#custom-upsell .item.show {
    opacity: 1;
    max-height: 100%;
    margin-top: 30px;
}

#custom-upsell .header-info {
    margin-bottom: 15px;
}

#custom-upsell .header-info .info-icon-text p {
    font-style: italic;
    font-size: smaller;
}

#custom-upsell h2 {
    font-size: 24px;
    margin-bottom: 4px;
}

#custom-upsell h2 .info-circle {
    font-size: large;
}

#custom-upsell .image {
    height: 150px;
    background: no-repeat center;
    background-size: cover;
}

#custom-upsell .image.desktop {
    padding-right: 10px;
}

#custom-upsell .content {
    position: relative;
    width: 100%;
    padding: 15px;
}

#custom-upsell h1 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: normal;
}

#custom-upsell .price {
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
}

#custom-upsell .original .value {
    text-decoration: line-through;
}

#custom-upsell .row-container .col.original {
    display: block;
    font-size: 14px;
}

#custom-upsell .row-container .col.price {
    font-size: 14px;
}

#custom-upsell .price .from .value {
    text-decoration: line-through;
}

#custom-upsell .inputs {
    width: 100%;
}

#custom-upsell .selectbox {
    float: none;
    display: inline-block;
    height: 40px;
    background: transparent;
    border-width: 1px;
    border-color: inherit;
    margin: 0 0 0 10px;
    vertical-align: middle;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
}

#custom-upsell .ui-selectmenu-button.ui-button {
    line-height: 38px;
}

#custom-upsell .loading-text {
    display: none;
    line-height: 40px;
}

#custom-upsell .loading-text.loading {
    display: block;
}

#custom-upsell .timeslot {
    margin-top: 15px;
}

#custom-upsell .quantity .selectbox {
    width: 75px;
}

#custom-upsell .timeslot {
    display: none;
}

#custom-upsell .timeslot.show {
    display: block;
}

#custom-upsell .timeslot .unavailable {
    display: none;
    font-weight: bold;
    color: red;
}

#custom-upsell .timeslot .selectbox {
    width: 150px;
}

@media screen and (min-width: 500px) {
    #custom-upsell .image {
        height: 200px;
    }

}

@media screen and (min-width: 650px) {
    #custom-upsell .item {
        display: flex;
        height: auto;
    }

    #custom-upsell .image {
        float: left;
        height: auto;
        width: 200px;
        min-width: 200px;
    }


}

@media screen and (max-width: 650px) {
    #custom-upsell .item.show {
        display: block;
    }

    #custom-upsell h2 {
        margin-top: 10px;
    }

    #custom-upsell .image {
        overflow: hidden;
    }
}

/************************************
	Custom cart
*************************************/
#custom-cart {
    display: none;
    font-size: 16px;
}

#selected-date-text {
    margin: 0 0 30px;
}

.cart-table {}

.cart-table .top-row,
.cart-table .row {
    overflow: hidden;
}

.cart-table .top-row {
    margin: 0 0 13px;
    font-weight: 700;
}

.cart-table .row {
    padding: 13px;
}

.cart-table .row:nth-child(even) {
    background: rgba(216, 216, 216, 0.1);
}

.selectbox select {
    color: inherit;
}

.cart-table .mobile-description {
    font-weight: 700;
}

.cart-table .col-container {
    display: table;
    width: 100%;
}

.cart-table .col {
    display: table-cell;
    vertical-align: middle;
    width: 25%;
    padding: 0 10px 0 0;
}

.cart-table .col:last-child {
    padding: 0;
}

.cart-table .description {
    display: none;
}

.cart-table .number {
    text-align: center;
}

.cart-table .disc {
    display: none;
}

.cart-table .subtotal {
    text-align: right;
}

#cart-total-discount {
    font-weight: 700;
}

#cart-total-discount .description {
    display: table-cell;
    width: 50%;
}

@media screen and (min-width: 650px) {
    .cart-table .description {
        width: 35%;
        display: table-cell;
    }

    .cart-table .price {
        width: 20%;
    }

    .cart-table .number {
        width: 15%;
        text-align: left;
    }

    .cart-table .disc {
        width: 15%;
    }

    .cart-table .subtotal {
        width: 15%;
    }

    #cart-total-discount .description {
        width: 70%;
    }
}

/************************************
	.total-container
*************************************/
.total-container {
    overflow: hidden;
    padding: 0 10px;
    margin: 15px 0 0;
    font-size: 20px;
    font-weight: 700;
}

#total-price {
    float: right;
}

@media screen and (min-width: 650px) {
    .total-container {
        padding: 0;
    }
}

