﻿
:root {
    --colorMain: #808080;
    --colorSecondary: #FDC300;
    --colorHover: #aaaaaa;
}


/* ShopCartInfo */

#cartInfoButton {
    color: var(--colorMain);
}

#cartInfoButton .fal{
    color: var(--colorMain);
}

#cartInfoButton:hover {
    color: var(--colorHover);
    cursor: pointer;
}

#cartInfoButton .fa-shopping-cart {
    font-size: 25px;
}

#shopCartInfo .shopCartItemCount {
    font-size: 14px;
    margin-left: 5px;
    color: #fff;
    background-color: var(--colorMain);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-block;
    text-align: center;
    vertical-align: top;
    line-height: 1.7;
}

.cartInfoGoToCheckout {
    display: block;
    font-size: 13px;
}

#cartInfoButton:hover .shopCartItemCount {
    background-color: var(--colorHover);
}


#shopCartInfo .shopCartItemCount.empty {
    display: none;
}

@media screen and (max-width: 767.9px) {

    #shopCartInfo {
        z-index: 9999;
    }
}

/* End ShopCartInfo*/

/* ShopCartSide */

#shopCartSide .waitCursor {
    position: absolute;
    top: 45%;
    left: 45%;
    font-size: 40px;
}

#shopCartSide {
    width: 350px;
    -webkit-transition: all .45s cubic-bezier(.3, 0, .15, 1);
    transition: all .45s cubic-bezier(.3, 0, .15, 1);
    margin-right: 0;
    display: block;
    height: 100%;
    left: auto;
    position: fixed;
    top: 0;
    padding: 0;
    background: #fff;
    z-index: 8000;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    right: 0;
    overflow: auto;
}

    #shopCartSide.isOpen {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }


.shopCartSideOverlay {
    -webkit-transition: opacity 0.45s cubic-bezier(.3,0,.15,1), visibility 0.45s linear;
    transition: opacity 0.45s cubic-bezier(.3,0,.15,1), visibility 0.45s linear;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: .01;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 5000;
    visibility: hidden;
    background: rgba(0,0,0,0.2);
}

    .shopCartSideOverlay.isOpen {
        -webkit-transition-delay: 0;
        transition-delay: 0;
        opacity: 1;
        visibility: visible;
        cursor: pointer;
    }

.noscroll {
    position: relative;
    overflow: hidden;
}

html.noscroll body {
    overflow: hidden;
}

.shopCartSideContinueShopping {
    font-size: 15px;
    font-weight: 500;
    color: var(--colorMain);
    margin: 10px 12px 25px 12px;
    position: relative;
}

    .shopCartSideContinueShopping:hover {
        color: var(--colorHover);
        cursor: pointer;
    }

    .shopCartSideContinueShopping .fa-times {
        position: absolute;
        right: 0;
        top: 0;
        font-size: 19px;
    }

    .shopCartSideContinueShopping .fa-chevron-left {
        font-size: 16px;
        margin-right: 10px;
    }

.shopCartSideCheckOut {
    display: block;
    background-color: var(--colorMain);
    border-radius: 3px;
    padding: 10px;
    margin: 10px;
    font-size: 15px;
    text-align: center;
    color: #fff;
    font-weight: 500;
}

    .shopCartSideCheckOut:hover {
        background-color: var(--colorHover);
        color: #fff;
    }

    .shopCartSideCheckOut:visited {
        color: #fff;
    }

.shopCartSideEditCart {
    display: block;
    background-color: #e2e2e2;
    border-radius: 3px;
    padding: 10px;
    margin: 10px;
    font-size: 15px;
    text-align: center;
    color: #000;
    font-weight: 500;
}

    .shopCartSideEditCart:hover {
        background-color: #EAEAEA;
    }

    .shopCartSideEditCart:visited {
        color: #000;
    }

.cartSideProducts {
    font-size: 15px;
    margin: 25px 15px 12px 15px;
}

.cartSideItem {
    border-bottom: 1px solid #dadae5;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.cartSideItemImageContainer {
    width: 65px;
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
}

.cartSideItemTextContainer {
    width: Calc(100% - 80px);
    display: inline-block;
    font-weight: 500;
    vertical-align: top;
}

.cartSideItemPrice {
    display: block;
    color: #000;
    margin-top: 8px;
}

.cartSideItemAttributes
{
    font-size: 13px;
    display: block;
}

.cartSideItemNotDiscountEligible {
    font-size: 11px;
    display: block;
    color: #545454;
    margin-top: 5px;
}

.cartSideItemOption .cartSideItemTextContainer {
    width: 100%;
}

.cartSideItemOption .cartSideItemTitle {
    float: left;
    margin: 0;
    padding: 0;
}

.cartSideItemOption .cartSideItemPrice {
    float: right;
    margin: 0;
    padding: 0;
}

#cartSideTotal {
    font-weight: 600;
    margin-bottom: 100px;
}

.cartSideTotalAdditionalInfo
{
    clear: both;
}

#cartSideTotal a {
    display: inline-block;
}

.cartSideTotalPriceInfoLabel {
    float: left;
}

.cartSideTotalPriceInfo {
    float: right;
}

@media screen and (max-width: 767.9px) {
    #shopCartSide {
        width: 100%;
    }

    .cartSideItemImageContainer {
        width: 35px;
    }
}

/* End ShopCartSide */

/* Search */

.waitCursor
{
    font-size: 40px;
    margin: 25px auto;
}

#searchContainer {
    position: relative;
    margin-bottom: 30px;
}

#searchButton {
    position: absolute;
    right: 10px;
    top: 10px;
}

#searchInput
{
    height: 40px;
}

/* End Search */