/**
InfoSphere add to cart plugin styles.
**/

.infosphere_add_cart_popup_open {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

#infosphere-add-cart-popup {
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50000;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: hidden;
}

.infosphere-add-cart-loader {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto auto;
    z-index: 100;
    /*margin: -25px 0 0 -25px;*/
    border: 5px solid rgba(100, 100, 100, 0.4);
    border-top: 5px solid rgba(100, 100, 100, 1);
    border-radius: 50%;
    -webkit-animation: add_cart_loader 2s linear infinite;
    animation: add_cart_loader 2s linear infinite;
}

.is_adding_to_cart:before {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: rgba( 255, 255, 255, 0.6);
    z-index: 99;
}

@keyframes add_cart_loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.add_on_product {
    padding-left: 12px;
}

.add_on_product::before {
    content: '+';
    float: left;
    margin-left: -12px;
}


/* DESKTOP CLASSES */

@media (min-width: 768px) {
    .infosphere-add-cart-main {
        display: flex;
        flex-direction: column;
    }
    .infosphere-add-cart-added-product-details {
        flex: 1 1 0px;
        display: flex;
        flex-direction: column;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-actions {
        flex: 0 0 25%;
        padding-right: 15px;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product .infosphere-add-cart-added-product-image {
        flex: 0 0 25%;
        height: 120px;
        position: relative;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product .infosphere-add-cart-added-product-image img {
        padding: 0px 15px;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product {
        flex: 0 0 75%;
        display: flex;
        height: auto;
        flex-direction: row;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content {
        position: relative;
        margin-top: 10px;
        border-bottom: 1px solid #cccccc;
        flex: 1 0 150px;
        display: flex;
        padding-bottom: 15px;
    }
    #infosphere-add-cart-popup {
        text-align: center;
    }
    /* MAKES SURE THE POPUP IS VERTICALLY ALIGNED */
    #infosphere-add-cart-popup::before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
    }
    .infosphere-add-cart-wrapper {
        width: 80%;
        max-width: 800px;
        background-color: #ffffff;
        height: 600px;
        padding: 0px;
        margin: auto auto;
        border-radius: 3px;
        height: auto;
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
        vertical-align: middle;
        position: relative;
        display: inline-block;
        box-sizing: border-box;
        background-clip: padding-box;
        padding: 0px;
    }
    .infosphere-add-cart-close {
        position: absolute;
        right: 0px;
        top: 0px;
        height: 40px;
        width: 40px;
        text-align: right;
        padding-top: 15px;
        padding-right: 15px;
    }
    .infosphere-add-cart-close .fa {
        font-size: 21px;
        color: #000000;
    }
    .infosphere-add-cart-wrapper .infosphere-add-cart-head {
        top: 0px;
        height: 40px;
        position: relative;
    }
    .infosphere-add-cart-wrapper .infosphere-add-cart-footer {
        display: none;
    }
    .infosphere-add-cart-wrapper .infosphere-add-cart-head .popup-title {
        color: #000000;
        font-weight: 700;
        font-size: 18px;
        line-height: 20px;
        height: 40px;
        text-align: left;
        padding: 15px 15px 0px 15px;
    }
    .infosphere-add-cart-bundle-image {
        flex: 0 0 100px;
        padding: 0px 10px;
        height: 100px;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .infosphere-add-cart-bundle-separator {
        flex: 0 0 20px;
        padding: 10px 0px;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .infosphere-add-cart-bundle {
        display: flex;
        flex: 0 0 25%;
        flex-direction: column;
    }
}


/* MOBILE CLASSES */

@media (max-width: 767px) {
    #infosphere-add-cart-popup .products .product:hover {
        text-decoration: none !important;
        box-shadow: none;
        -webkit-box-shadow: none;
    }
    #infosphere-add-cart-popup {
        text-align: left;
    }
    .infosphere-add-cart-wrapper {
        right: 0px;
        left: 0px;
        bottom: 0px;
        top: 0px;
        width: auto;
        background-color: #ffffff;
        padding: 0px;
        margin: 0px;
        height: auto;
        position: absolute;
        display: inline-block;
        box-sizing: border-box;
        background-clip: padding-box;
        padding: 0px;
    }
    .infosphere-add-cart-close {
        position: absolute;
        right: 0px;
        top: 10px;
        height: 40px;
        width: 40px;
        line-height: 40px;
        text-align: center;
    }
    .infosphere-add-cart-close .fa {
        font-size: 18px;
        color: #ffffff;
    }
    .infosphere-add-cart-main {
        position: absolute;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    .infosphere-add-cart-wrapper .infosphere-add-cart-head {
        top: 0px;
        height: 60px;
        position: relative;
        background-color: #000000;
        color: #ffffff;
    }
    .infosphere-add-cart-wrapper .infosphere-add-cart-footer {
        bottom: 0px;
        left: 0px;
        right: 0px;
        height: 70px;
        position: absolute;
        padding: 10px;
        background-color: #ffffff;
        -webkit-box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.175);
        box-shadow: 0 -6px 12px rgba(0, 0, 0, 0.175);
    }
    .infosphere-add-cart-wrapper .infosphere-add-cart-head .popup-title {
        color: #ffffff;
        font-weight: 700;
        font-size: 18px;
        line-height: 30px;
        height: 60px;
        text-align: left;
        padding: 15px 15px 15px 15px;
    }
    .OLDinfosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product {
        position: absolute;
        left: 15px;
        height: 150px;
        right: 15px;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-actions {
        display: none;
    }
    #infosphere-cross-sell-products .cross-sells {
        padding: 10px;
    }
    .crosssell_product_title h3 {
        font-size: 16px !important;
        line-height: 16px !important;
        display: block;
        height: 16px;
        overflow: hidden;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0px 0px 0px 0px !important;
    }
    .crosssell_product_title h4 {
        color: #000000 !important;
        font-size: 14px !important;
        line-height: 18px !important;
        display: block !important;
        height: 18px !important;
        overflow: hidden !important;
        width: 100% !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin: 0px !important;
        padding: 0px !important;
    }
    .crosssell_product_relation {
        font-size: 13px !important;
        line-height: 18px !important;
        font-weight: 700;
        display: block;
        height: 18px;
        overflow: hidden;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0px !important;
        padding: 0px !important;
    }
    .crosssell_product_type {
        font-size: 13px !important;
        line-height: 18px !important;
        font-weight: 700;
        display: block;
        width: 100%;
        margin: 0px !important;
        padding: 0px !important;
    }
    .crosssell_product_type.dropdown {
        position: absolute;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product .infosphere-add-cart-added-product-image {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 120px;
        height: 120px;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product .infosphere-add-cart-added-product-image img {
        padding: 0px 15px;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product .OLDinfosphere-add-cart-added-product-details {
        position: absolute;
        left: 135px;
        top: 0px;
        right: 15px;
        height: 200px;
        margin-left: 15px;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product .infosphere-add-cart-added-product-details.no-image {
        position: absolute;
        left: 0px;
        top: 0px;
        right: 15px;
        height: 200px;
        margin-left: 0px;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content {
        position: relative;
        border-bottom: 1px solid #cccccc;
    }
    .infosphere-add-cart-main {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        bottom: 70px;
        left: 0px;
        right: 0px;
    }
    .infosphere-add-cart-added-product-details {
        flex: 1 1 66.66%;
        display: flex;
        flex-direction: column;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-actions {
        flex: 0 0 150px;
        margin-right: 15px;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product .infosphere-add-cart-added-product-image {
        flex: 0 0 33.33%;
        height: 120px;
        margin-left: 0px;
        position: relative;
        margin-right: 10px;
    }
    .crosssell_product_title {
        font-size: 14px;
        line-height: 20px;
        flex: 0 0 20px;
        display: block;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product {
        flex: 1 0 auto;
        display: flex;
        flex-direction: row;
        padding: 10px;
    }
    .infosphere-add-cart-main .infosphere-add-cart-content {
        position: relative;
        border-bottom: 1px solid #cccccc;
        flex: 1 0 auto;
        flex-direction: column;
        display: flex;
        padding-bottom: 15px;
    }
    .infosphere-add-cart-bundle-image {
        flex: 0 0 auto;
        max-height: 100px;
        /* padding: 10px; */
        /* height: 100px; */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        display: flex;
        margin-right: 10px;
    }
    .infosphere-add-cart-bundle-separator {
        flex: 0 0 20px;
        height: 100px;
        padding: 10px 0px;
        align-items: center;
        justify-content: center;
        display: flex;
    }
    .infosphere-add-cart-bundle {
        padding-top: 15px;
        display: flex;
        flex-direction: column;
        flex: 0 0 33.33%;
    }
}


/* GENERAL CLASSES */

.infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product .infosphere-add-cart-added-product-image img {
    height: auto !important;
    width: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: auto auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    position: absolute !important;
}

#infosphere-add-cart-popup.open {
    visibility: visible;
    opacity: 1;
}


/* !!! NO LONGER USED !!! */

.OLDinfosphere-add-cart-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
}

.OLDinfosphere-add-cart-wrapper {
    width: 800px;
    background-color: #ffffff;
    height: auto;
    padding: 0px;
    margin: auto auto;
    position: absolute;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.OLDinfosphere-add-cart-main {
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    position: absolute;
}

.infosphere-add-cart-main {
    text-align: left;
}

a.button.popup_cart_button {
    width: 100% !important;
    margin-bottom: 10px !important;
    border-width: 0px;
    border: 0px solid transparent !important;
    background-color: #39B118 !important;
    box-shadow: inset 0 -2px 0 0 #2e8e13 !important;
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 0px 15px !important;
    font-size: 14px !important;
}

a.button.popup_cart_button.fat_button {
    width: 100% !important;
    margin-bottom: 10px !important;
    border-width: 0px;
    border: 0px solid transparent !important;
    background-color: #39B118 !important;
    box-shadow: inset 0 -2px 0 0 #2e8e13 !important;
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.button.popup_cart_button:hover {
    width: 100% !important;
    margin-bottom: 10px !important;
    border-width: 0px;
    border: 0px solid transparent !important;
    background-color: #2e8e13 !important;
    box-shadow: inset 0 -2px 0 0 #25720f !important;
    text-decoration: none !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.button.popup_continue_button {
    width: 100% !important;
    margin-bottom: 10px !important;
    color: #000000 !important;
    background-color: #ffffff !important;
    border-bottom: 3px solid #cccccc !important;
    box-shadow: inset 0 -2px 0 0 #cccccc !important;
    border: 1px solid #cccccc !important;
    text-decoration: none !important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 15px !important;
    font-size: 14px !important;
}

a.button.popup_continue_button:hover {
    width: 100% !important;
    margin-bottom: 10px !important;
    color: #000000 !important;
    background-color: #ffffff !important;
    border-bottom: 3px solid #cccccc !important;
    box-shadow: inset 0 -2px 0 0 #999999 !important;
    border: 1px solid #999999 !important;
    text-decoration: none;
}

.infosphere-add-cart-main #infosphere-cross-sell-products h4 {
    margin: 0px 0px 10px 0px;
    color: #000000;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    height: 40px;
    text-align: left;
    padding: 15px 15px 0px 15px;
}

.infosphere-add-cart-main #infosphere-cross-sell-products .imagewrapper {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    padding-bottom: 60% !important;
}

.infosphere-add-cart-main .infosphere-add-cart-content .infosphere-add-cart-added-product .infosphere-add-cart-added-product-details .product-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    line-height: 21px;
    font-weight: 700;
    text-align: left;
}

.infosphere-add-cart-wrapper-outer {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto auto;
    display: flex;
}