@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);

/*** basic styles ***/
.cart-checkout-privacy {
    margin-bottom: 15px;
}

.cart-checkout-privacy label {
    font-size: 14px;
}

.cart-checkout-privacy label a {
    text-decoration: underline;
}

/*** custom checkboxes ***/
.cart-checkout-privacy input[type=checkbox] {
    display: none;
}

/* to hide the checkbox itself */
.cart-checkout-privacy input[type=checkbox] + label:before {
    font-family: FontAwesome, serif;
    display: inline-block;
}

.cart-checkout-privacy input[type=checkbox] + label:before {
    content: "\f096";
    font-size: 18px;
}

/* unchecked icon */
.cart-checkout-privacy input[type=checkbox] + label:before {
    letter-spacing: 10px;
}

/* space between checkbox and label */
.cart-checkout-privacy input[type=checkbox]:checked + label:before {
    content: "\f046";
    color: green;
}

/* checked icon */
.cart-checkout-privacy input[type=checkbox]:checked + label:before {
    letter-spacing: 7px;
    color: green;
}

a.disabled {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    opacity: .65;
    box-shadow: none;
    pointer-events: none;
}

.cropModal__content {
    background-image: url('/theme/preloader.gif') !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/************************************* related product in cart */
#cart-product-banner {
    border-radius: 5px;
    background: #ededed;
    padding: 15px;
    margin-top: 10px;
    font-family: Roboto, Helvetica, sans-serif;
}

#cart-product-banner .cart-product__item .cart-product__item-row {
    display: flex;
    margin-bottom: 20px;
}

.cart-product__item-row .cart-product__item-picture {
    margin-right: 15px;
}

.cart-product__item-row .cart-product__item-picture img {
    width: 150px;
}

.cart-product__item-row .cart-product__item-header {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.43;
    color: #1d1d20;
    margin-bottom: 4px;
}

.cart-product__item-row .cart-product__item-content {
    width: 100%;
}

.cart-product__item-row .cart-product__item-content .cart-product__item-header {
    display: flex;
    justify-content: space-between;
}

.cart-product__item-row .cart-product__item-content .cart-product__item-description {
    font-size: 14px;
    color: #6f6e77;
    line-height: initial;
}

.cart-product__item .cart-product__item-form {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cart-product__item .cart-product__item-form .cart-product__item-form__field label {
    font-size: 14px;
}
/************************************* end related product in cart */

@media (max-width: 767px) {
    .cropModal {
        height: 100% !important;
    }
}