#floating-cart {
    background-color: black;
    /* color: #cccccc; */
    padding: 1px 20px 25px 20px;
    font-size: 1.4rem;
    margin-bottom: 20px;
    cursor: default;
}

#floating-cart > div {
    margin: 10px 0;
}
#floating-cart * {
    box-sizing: border-box;
}

.fc-item {
    width: 100%;
    padding-left: 10px;
    border-left: 1px solid #866E4B;
}
.fc-line {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
}
.fc-line-name {
    flex: 0 1 auto;
    text-align: left;
    font-weight: 500;
    padding-right: 6px;
}
.fc-line-value {
    flex: 0 0 auto;
    text-align: right;
}
.fc-line-error {
    text-align: left;
    color: orangered;
    font-weight: 600;
}
.fc-line-name-title {
    text-align: left;
}
.fc-line-name-info {
    text-align: left;
    font-size: 1.2rem;
    font-weight: 400;
}
.fc-line-center {
    text-align: center;
    padding-right: 6px;
}
.fc-line-next {
    margin-top: 10px;
}
.fc-line-qty {
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: stretch;
    justify-content: flex-start;
}
.fc-line-qty-btn {
    background-color: #DF9B4F;
    color: #FFF;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    padding: 1px 0;
    height: 32px;
    width: 32px;
    cursor: pointer;
    box-sizing: border-box;
}
.fc-line-qty-btn[disabled="disabled"] {
    background-color: #866E4B;
    cursor: default;
}
.fc-line-qty-btn.minus {
    border-radius: 2px 0 0 2px;
}
.fc-line-qty-btn.plus {
    border-radius: 0 2px 2px 0;
}
.fc-line-qty-input {
    margin: none !important;
    width: 50px !important;
    background-color: #333 !important;
    color: #FFF !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 1.2rem !important;
    height: 32px !important;
    padding: 5px 10px !important;
    text-align: center !important;
    -moz-appearance: textfield !important;
}
.fc-line-qty-input::-webkit-outer-spin-button, .fc-line-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}
.fc-line-btn {
    font-family: 'luma-icons';
    font-size: 18px;
    display: inline-block;
    font-weight: normal !important;
    font-style: normal !important;
    text-decoration: none !important;
    cursor: pointer;
}
.fc-line-btn-delete:before { content: '\e604'; line-height: 20px; }
.fc-line-btn-close:before { content: '\e61f'; font-size: 20px; }

.fc-coupon-input {
    margin-right: 5px !important;
    background-color: #000 !important;
    color: #FFF !important;
    border: 1px solid #866E4B !important;
    border-radius: 2px !important;
}

#floating-cart .title {
    font-size: 2rem;
    font-weight: 300;
}

#floating-cart .big {
    font-weight: 700;
}

#floating-cart .sep {
    margin: 2px 0;
    padding: 0;
    border-top: 1px solid #333;
}

.fc-bigbutton {
    margin-top: 20px;
    padding: 14px 17px;
    font-size: 1.8rem;
    line-height: 2.2rem;
    width: 100%;
}

/* Integrated page */
/* .box-tocart .action.tocart {
    width: 100% !important;
} */

.fc-main-content {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
}
.fc-page-content {
    width: 68% !important;
}
.fc-cart-content {
    width: 30%;
}

@media only screen and (max-width: 1152px) {
    .fc-page-content {
        width: 100% !important;
    }

    .fc-cart-content {
        display: none;
    }
}

/* Catalog, Product: xN into your cart */
.product.media, .product-items .product-item-info {
    position: relative;
}
.fc-product-message, .fc-catalog-message {
    display: none;
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    background-color: #CC9A4880;
    padding: 14px;
}
.fc-catalog-message {
    left: 0;
    right: 0;
    padding: 10px;
}
.fc-product-message-qty, .fc-catalog-message-qty {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    line-height: 0.8;
}
.fc-catalog-message-qty {
    font-size: 2rem;
}
.fc-product-message-txt, .fc-catalog-message-txt {
    width: 100%;
    text-align: center;
    color: white;
}
.fc-catalog-message-txt {
    font-size: 1rem;
}

/* Floating page */
.fc-cart-floating {
    display: none;
    position: absolute;
    top: 75px;
    right: 0;
    margin-left: 20px;
    width: 400px;
    max-width: 90vw;
    z-index: 10;
    opacity: 1;
    color: white;
}
.fc-cart-floating > #floating-cart {
    overflow-y: auto;
    max-height: 80vh;
}
