/* -----Variables */

:root{
    --black: #272727;
    --green: #9CCB00;
    --greenBorders: rgba(156, 203, 0, 0.2);
    --grey: #424242;
}

/* ///////////////////////////////////////////////////////////// INITIALS //////////////////// */
  
html{
    box-sizing: border-box;
    /*font-family: 'Lato', sans-serif;*/
    font-size: 16px;
    font-weight: 300;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: var(--grey);
}

*,
*:before,
*:after{
    box-sizing: inherit;
}

body{
    width: 100%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: hidden;
}

a{
    color: var(--green);
    text-decoration: none;
    cursor: pointer;
}

.greyLink{
    color: var(--grey);
}

.italicText{
    font-style: italic;
    margin: 0 20px;
}

#container{
    z-index: 1;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[3];
        grid-template-rows: repeat(3, auto);
    grid-template-areas:
        "navigation"
        "content"
        "footer";
    background-color: white;
    width: 100%;
}

.pageDivGlobal{
    width: 100%;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.backLink{
    height: 10px;
    color: var(--grey);
    width: 100%;
}

.pageTitle{
    font-size: 2em;
    width: 100%;
    text-align: center;
    margin: 60px 0 0 0;
    padding: 0;
}

.pageTitleIcons{
    font-size: 1em;
    color: var(--green);
    margin: 0 10px;
}

.minLogo{
    height: 30px;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
}

.messageDiv{
    justify-self: center;
}

.message{
    color: #A5260A;
    font-weight: 700;
    font-size: 1em;
    margin-bottom: 30px;
}

.backgroundGreen{
    background-image:-webkit-linear-gradient(#e7f3c7, white);
    background-image:linear-gradient(#e7f3c7, white);
}

/* ////////////////////////////////////// FORMULAR //////////////////////////////////////// */

.formular{
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-self: center;
    margin-bottom: 60px;
}

.formularLineImage{
    margin: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.formularLabel{
    margin: 15px 0;
    font-size: 0.9em;
}

.formularInput{
    width: 200px;
    height: 30px;
    margin: 5px 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 0.8em;
}

.formularArea{
    width: 200px;
    height: 100px;
    margin: 15px 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.formularButton{
    width: 200px;
    height: 30px;
    margin: 30px 0 60px 0;
    padding: 0;
    border: 0;
    background: var(--green);
    font-size: 1em;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: white;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 700;
}

.formularButton:hover{
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.formularButtonLink{
    width: 200px;
    height: 30px;
    margin: 10px 0 10px 0;
    padding: 5px;
    border: 0;
    background: var(--green);
    font-size: 1em;
    font-weight: 500;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: 700;
}

.formularButtonLink:hover{
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

/* ///////////////////////////////////////////////////////////// HEADER //////////////////// */

.connectionMessageBand{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--grey);
}

.connectionMessageBandP{
    margin: 0 0 0 20px;
    padding: 0;
    line-height: 40px;
    color: white;
}

.headerMail{
    color: var(--grey) !important;
}

#header{
    display: none;
}

/* ///////////////////////////////////////////////////////////// NAV //////////////////// */

.navigation{
    display: none;
}

.navigationMedium{
    display: none;
}

.navigationSmall{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    align-items: center;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.navSmallBigDiv{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.navSmallDiv{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 10px
}

.navSmallDiv img{
    height: 50px;
    width: 50px;
}

.navSmallDiv h1{
    color: var(--green);
    margin-left: 10px;
    font-weight: 700;
}

.navSmallIcon{
    font-size: 1.5em;
    margin-right: 30px;
    cursor: pointer;
}

.navBarSmallDropdown{
    display: none;
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;   
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.navBarSmallDropdown li{
    padding: 5px 5px 5px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
}

.navBarSmallDropdown a{
    color: var(--grey);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navBarSmallDropdown a:hover{
    color: var(--green);
}

.orderAlert{
    margin: 0 0 0 5px;
    padding: 3px 5px;
    color: white;
    background: #A5260A;
    border-radius: 50%;
    font-size: 0.8em;
    font-weight: 700;
}

/* ///////////////////////////////////////////////////////////// LEFT NAV //////////////////// */

.leftNavigation{
    display: none;
}

/* ///////////////////////////////////////////////////////////// CONTENT //////////////////// */

#content{
    grid-area: content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

/* ///////////////////////////////////////////////////////////// HOME PAGE //////////////////// */

.homePageGlobal{
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
}

.userConnectedSection{
    background-image:-webkit-linear-gradient(#e7f3c7, white);
    background-image:linear-gradient(#e7f3c7, white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 0 10px;
}

.userConnectedSectionLeft{
    width: 100%;
}

.userConnectedSectionLeft h3{
    font-size: 1.4em;
    text-align: left;
    width: 100%;
    margin: 40px 0 10px 10px;
}

.userConnectedSectionLeft p{
    font-size: 1.1em;
    width: 100%;
    text-align: left;
    margin: 0 10px 0 10px;
    padding: 0;
}

.userConnectedSectionLeft a{
    font-size: 1.1em;
    width: 100%;
    text-align: left;
    margin: 0 0 0 10px;
    padding: 0;
}

.userConnectedSectionRight{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    margin: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.userConnectedSectionRight a{
    margin: 5px 10px;
}

#carousel{
    height: 200px;
}

.carouselDiv{
    width: 100%;
    height: 100%;
    position: relative;
    margin: auto;
}

.carouselItems{
    padding: 5px;
}

.carouselItem{
    height: 200px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
    -ms-grid-rows: (1fr)[2];
        grid-template-rows: repeat(2, 1fr);
    -ms-grid-row-align: center;
        align-items: center;
    -ms-grid-column-align: center;
        justify-items: center;
    grid-gap: 5px;
}

.carouselProductImage{
    height: 100px;
    width: 100%;
    background-image:-webkit-linear-gradient(white, rgba(0, 0, 0, 0.1));
    background-image:linear-gradient(white, rgba(0, 0, 0, 0.1));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 5px;
}

.carouselProductImage:hover{
    background-image:-webkit-linear-gradient(white, #cbdea0);
    background-image:linear-gradient(white, #cbdea0);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.carouselProductImage a{
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.carouselProductImage img{
    max-height: 100%;
    max-width: 100%;
}

#slider{
    width: 100%;
    height: 200px;
    box-shadow: 0 5px rgba(0, 0, 0, 0.1);
    -ms-flex-item-align: start;
        align-self: flex-start;
}

.sliderDiv{
    width: 100%;
    height: 100%;;
    position: relative;
    margin: auto;
}

.slides{
    display: none;
    width: 100%;
}

.slidesDiv{
    height: 200px;
    width: 100%;
}

.slidesImages{
    width: 100%;
    max-height: 200px;
}

.prevCar, .nextCar{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: var(--grey);
    font-weight: bold;
    font-size: 18px;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.nextCar{
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prevCar:hover, .nextCar:hover{
    color: white;
    background-color: rgba(0,0,0,0.8);
}

.prev, .next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
}

.next{
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover{
    background-color: rgba(0,0,0,0.8);
}

.text{
    color: #f2f2f2;
    font-size: 2em;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.fade{
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade{
    from {opacity: .4;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"} 
    to {opacity: 1;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}
}

@keyframes fade{
    from {opacity: .4;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"} 
    to {opacity: 1;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}
}

.homeBody{
    width: 100%;
    padding: 0 40px;
    margin: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.textSection{
    width: 100%;
}

.homeCarousel{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 40px 0;
}

.homeCarousel__panorama{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.productsDiv.homeCarouselItem {
    background: rgba(0, 0, 0, 0.1);
    width: 185px;
    height: 300px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-column-align: center;
        justify-items: center;
    -ms-grid-row-align: center;
        align-items: center;
    padding: 0;
    margin: 10px;
    border-radius: 5px;
    position: relative;
}

/* ///////////////////////////////// OUR PRODUCTS ////////////////////////////////////////// */

.ourProductsLeftMenu{
    list-style-type: none;
    margin: 0px 10px 70px 10px;
    padding: 10px 5px;
    background: rgba(0, 0, 0, 0.1);
    width: 200px;
}

.ourProductsLeftCategory{
    color: var(--grey);
    margin: 0px 10px 0 10px;
    padding: 1px 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ourProductsLeftCategory:hover{
    background: var(--green);
    border-radius: 5px;
}

.ourProductsLeftCategory a{
    text-decoration: none;
    color: var(--grey);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.ourProductsLeftDropdown{
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.ourProductsLeftDropdownItem{
    list-style-type: none;
    margin: 0;
    padding: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: none;
}

.ourProductsLeftDropdownItem li{
    margin: 5px 15px 0 14px;
    padding: 0 5px;
}

.showing .leftDropdownItem{
    display: block;
}

/* ///////////////////////////////////////////////////////////// SHOP PAGE //////////////////// */

.categoryTitle{
    margin: 20px 0;
    width: 100%;
    text-align: center;
    font-size: 1.8em;
    padding: 0;
    background-image:-webkit-linear-gradient(#e7f3c7, white);
    background-image:linear-gradient(#e7f3c7, white);
    height: 80px;
    line-height: 80px;
    font-weight: 500;
}

.connectionMessageShop{
    background: rgba(0, 0, 0, 0.1);
    margin: 10px 10px -10px 10px;
    padding: 15px 5px 15px 5px;
    position: relative;
    border: 1px solid var(--grey);
    border-radius: 5px;
}

.close .connectionMessageShop{
    display: none;
}

.connectionMessageShop p{
    margin: 0 10px 0 10px;
    padding: 0;
    line-height: 30px;
    font-size: 1em;
}

.connectionMessageShopP a{
    color: var(--green);
    -webkit-text-decoration-color: var(--green);
            text-decoration-color: var(--green);
    font-weight: 700;
}

.categoryDesc{
    margin: -40px 0 40px 0;
}

.categoryVideo{
    margin: -20px 0 40px 0;
    padding: 0;
    width: 300px;
}

.pageCategoriesListRestocking{
    margin-top: 40px !important;
}

.pageCategoriesListShop{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 40px 0;
    padding: 0;
}

.pageCategoriesListItemsShop{
    height: 40px;
    width: 100%;
    font-size: 1.1em;
    text-align: center;
    list-style-type: none;
    margin: 0;
    padding: 10px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    -webkit-animation: colorblink2 2s infinite;
            animation: colorblink2 2s infinite;
}

.pageCategoriesListItemsShop.active{
    background: var(--green);
    -webkit-animation: colorblink3 2s infinite;
            animation: colorblink3 2s infinite;
}

@-webkit-keyframes colorblink2 {
    0% { }
    50% { background: rgba(0, 0, 0, 0.3); }
}

@keyframes colorblink2 {
    0% { }
    50% { background: rgba(0, 0, 0, 0.3); }
}

@-webkit-keyframes colorblink3 {
    0% { }
    50% { color: white; }
}

@keyframes colorblink3 {
    0% { }
    50% { color: white; }
}

.shopDiv{
    width: 100%;
    padding: 20px 20px 40px 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (185px)[auto-fit];
        grid-template-columns: repeat(auto-fit, 185px);
    grid-gap: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-row-align: center;
        align-items: center;
}

.shopDivCat{
    display: none;
}

.shopDivCatShop{
    -ms-grid-columns: (185px)[auto-fit];
        grid-template-columns: repeat(auto-fit, 185px);
    padding: 20px 20px 80px 20px;
    grid-gap: 5px;
}

.shopDivCatRestocks{
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 0px;
}

.shopDivCat.active{
    width: 100%;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-row-align: center;
        align-items: center;
}

.favoriteStar{
    position: absolute;
    top: 65px;
    right: 10px;
    cursor: pointer;
    z-index: 1;
    font-size: 1.3em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.favoriteStarAdded{
    color: #FFD700;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.favoriteStar:hover{
    -webkit-transform: rotateZ(45deg);
            transform: rotateZ(45deg);
}

.productsDiv{
    background-image:-webkit-linear-gradient(white, rgba(0, 0, 0, 0.1));
    background-image:linear-gradient(white, rgba(0, 0, 0, 0.1));
    width: 100%;
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.productsDiv:hover{
    background-image:-webkit-linear-gradient(white, #cbdea0);
    background-image:linear-gradient(white, #cbdea0);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.restockingDate{
    position: absolute;
    top: 80px;
    width: 100%;
    padding: 10px;
    z-index: 2;
}

.productsDivHS{
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncA type="table" tableValues="0 0.5" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: opacity(50%);
            filter: opacity(50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.productsAlertHS{
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncA type="table" tableValues="0 1" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: opacity(100%);
            filter: opacity(100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.productsDivHSD{
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncA type="table" tableValues="0 0.5" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: opacity(50%);
            filter: opacity(50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.productsDivHS:hover{
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncA type="table" tableValues="0 1" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: opacity(100%);
            filter: opacity(100%);
}

.productsDivHSD:hover{
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncA type="table" tableValues="0 1" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: opacity(100%);
            filter: opacity(100%);
}


.promoDiv{
    display: none;
}

.productPromo .promoDiv{
    display: block;
    position: absolute;
    background: #A5260A;
    top: 60px;
    padding: 5px 10px;
    border-radius: 0 0 10px 10px;
}

.promoDiv p{
    color: white;
    font-weight: 700;
    font-size: 0.8em;
    margin: 0;
    padding: 0;
}

.newDiv{
    display: none;
}

.productNew .newDiv{
    display: block;
    position: absolute;
    background: #efd516;
    top: 60px;
    padding: 5px 10px;
    border-radius: 0 0 10px 10px;
}

.newDiv p{
    font-weight: 700;
    font-size: 0.8em;
    margin: 0;
    padding: 0;
}

.productsDiv a{
    text-decoration: none;
}

.productsTitle{
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    font-size: 0.9em;
    padding: 5px;
    margin: 0;
    text-decoration: none;
    color: var(--grey);
}

.productsTitle:hover{
    text-decoration: underline;
}

.productsThumbDiv{
    background: white;
    width: calc(100% - 10px);
    height: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}

.imageZoomIcon{
    position: absolute;
    font-size: 1.4em;
    bottom: 5px;
    left: 10px;
    cursor: pointer;
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.imageZoomIcon:hover{
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
}

.productsThumbDiv:hover .imageZoomIcon{
    display: block;
}

.imageZoomDiv{
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    top: 0vh;
    left: 0vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
                -ms-grid-row-align: center;
            align-items: center;
    display: none;
    cursor: pointer;
}

.imageZoomDiv img{
    max-width: 100vw;
    max-height: 100vh;
}

.productsThumb{
    max-width: 160px;
    max-height: 140px;
    margin: 0;
    padding: 0;
}

.productsThumbHS{
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncA type="table" tableValues="0 0.25" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: opacity(25%);
            filter: opacity(25%);
}

.restockingAlert{
    position: absolute;
    bottom: 5px;
    right: 10px;
    cursor: pointer;
    z-index: 1;
    font-size: 1.4em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.restockingAlertAdded{
    color: #A5260A;
}

.restockingAlert:hover{
    -webkit-transform: rotateZ(-45deg);
            transform: rotateZ(-45deg);
}

.productsInformations{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

.productsReference{
    font-weight: 700;
    padding: 5px;
    margin: 0 0 0 10px;
    font-size: 0.8em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.productsPrice{
    padding: 5px;
    margin: 0 10px 0 0;
    background: var(--grey);
    border-radius: 3px;
    color: white;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.productsPriceNone{
    padding: 5px;
    margin: 0 10px 0 0;
    color: white;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.productsPriceSpecial{
    background: #17a3e6;
    border-radius: 3px;
    justify-self: center;
    -ms-flex-item-align: center;
        align-self: center;
    text-align: right;
    padding: 10px;
    margin: 0 5px 0 0;
    color: white;
    height: 25px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.productKiloPrice{
    width: 100%;
}

.productKiloPrice p{
    height: 25px;
    font-size: 0.8em;
    margin: 0;
    padding: 0 5px 0 0;
    text-align: right;
    width: 100%;
}

.productsPriceInfos{
    display: none;
    position: absolute;
    width: 100%;
    left: 0px;
    bottom: 0px;
    min-height: 60px;
    background: #17a3e6;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
                -ms-grid-row-align: flex-start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: white;
    padding: 5px;
}

.productsPriceInfos p{
    padding: 0;
    margin: 5px 0;
    font-size: 0.8em;
    line-height: 15px;
}

.productsPriceInfos p b{
    font-weight: 700;
}

.priceInfos .productsPriceInfos{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
}

.priceIcon{
    margin-right: 5px;
    font-size: 1.4em;
    color: #17a3e6;
    cursor: pointer;
    -webkit-animation: colorblink 2s infinite;
            animation: colorblink 2s infinite;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@-webkit-keyframes colorblink {
    0% { }
    50% { color:#A5260A; } 
}

@keyframes colorblink {
    0% { }
    50% { color:#A5260A; } 
}

.productOutOfStock{
    font-size: 1em !important;
}

.productsOrder{
    width: 100%;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}

.currentCartNumber{
    margin: 0;
    padding: 0;
    position: absolute;
    right: 2.5px;
    top: -2.5px;
    width: 30px;
    height: 30px;
    color: white;
    background: #A5260A;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8em;
}

.productsOrder p{
    padding: 5px;
    width: 100%;
    margin: 0;
    font-size: 1.25em;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.productsQuantity{
    height: 20px;
    border-radius: 3px;
    width: 50px;
    padding: 0;
    margin: 0 5px 0 0;
    border: 0;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.productsQuantity:hover{
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.productsValidation{
    height: 20px;
    width: 50px;
    border-radius: 3px;
    padding: 0;
    margin: 0 0 0 5px;
    border: 0;
    background: var(--green);
    font-size: 0.9em;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.productsValidation:hover{
    /*background: white;
    color: var(--green);*/
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

/* ///////////////////////////////////////////////////////////// PRODUCT PAGE //////////////////// */

.productPrevNextDiv{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 40px 0 0 0;
}

.productPrevDiv{
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.productThumbPrevDiv{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100px;
    height: 100px;
}

.productThumbPrev{
    max-width: 100px;
    max-height: 100px;
}

.productTextPrevDiv{
    margin: 0 0 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.productTextPrevDiv p{
    margin: 5px 0;
}

.productNextDiv{
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.productThumbNextDiv{
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.productThumbNext{
    max-width: 100px;
    max-height: 100px;
}

.productTextNextDiv{
    margin: 0 10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.productTextNextDiv p{
    margin: 5px 0;
}

.productDiv{
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    position: relative;
}

.promoPageDiv{
    display: none;
}

.productPagePromo .promoPageDiv{
    display: block;
    position: absolute;
    background: #A5260A;
    top: 0px;
    left: calc(50% - 75px);
    width: 150px;
    text-align: center;
    padding: 5px 10px;
    border-radius: 0 0 15px 15px;
}

.promoPageDiv p{
    color: white;
    font-weight: 700;
    font-size: 0.8em;
    margin: 0;
    padding: 0;
}

.newPageDiv{
    display: none;
}

.productPageNew .newPageDiv{
    display: block;
    position: absolute;
    background: #efd516;
    top: 0px;
    left: calc(50% - 75px);
    width: 150px;
    text-align: center;
    padding: 5px 10px;
    border-radius: 0 0 15px 15px;
}

.newPageDiv p{
    font-weight: 700;
    font-size: 0.8em;
    margin: 0;
    padding: 0;
}

.productTitle{
    font-size: 1.8em;
    width: 100%;
    text-align: center;
    margin: 30px 0 30px 0;
    padding: 15px 0 30px 0;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
}

.productBody{
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin: 40px 0;
}

.productThumbDiv{
    width: 100%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.productThumb{
    max-width: 150px;
    max-height: 150px;
}

.productThumbDiv:hover .imageZoomIcon{
    display: block;
}

.productRight{
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
}

.productInformations{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    margin-top: 40px;
}

.productReference{
    font-size: 1.5em;
    font-weight: 700;
}

.productNameGreen{
    background: var(--green);
    width: 100%;
    margin: 10px 0;
    padding: 10px 5px;
    color: white;
    font-weight: 700;
    border-radius: 5px;
    font-size: 1.3em;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.productOrigin{
    margin: 20px 0 20px 0;
}

.productIntro{
    margin: 20px 0 10px 0;
}

.productDesc{
    margin: 20px 0 20px 0;
}

.productPriceDiv{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.productPrice{
    text-align: left;
    font-weight: 700;
    padding: 10px 5px;
    margin: 10px 0px 10px 0;
    font-size: 1.5em;
    border: 2px solid var(--grey);
    border-radius: 5px;
    color: white;
    background: var(--grey); 
}

.currentCartNumberProduct{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 0 20px;
    padding: 0;
    width: 30px;
    height: 30px;
    color: white;
    background: #A5260A;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8em;
}

.currentCartNumberProduct p{
    margin: 0;
    padding: 0;
}

.crossPrice{
    text-decoration: line-through;
    font-size: 0.8em;
}

.crossPriceProduct{
    text-decoration: line-through;
    margin: 0;
    font-size: 1.2em;
}

.productPriceInfos{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    background: #17a3e6;
    border-radius: 5px;
}

.productPriceInfos p{
    font-size: 1em;
    margin: 5px;
    color: white;
}

.productPriceInfos p b{
    font-weight: 700;
}

.productOrder{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 20px 0 0 0;
}

.productOptionName{
    margin: 0 10px 0 0;
    font-size: 1.2em;
}

.quantityText{
    margin-right: 10px;
}

.productQuantity{
    height: 25px;
    width: 60px;
    margin: 0 5px 0 0;
    padding: 0;
    border: 0;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.productQuantity:hover{
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.productValidation{
    height: 25px;
    width: 60px;
    margin: 0 0 0 5px;
    padding: 0;
    border: 0;
    background: var(--green);
    font-size: 0.9em;
    font-weight: 500;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-weight: 700;
    color: white;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.productValidation:hover{
    /*background: white;
    color: var(--green);*/
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.outOfStockMessage{
    font-size: 1.5em;
}

.suggestsProducts{
    width: 100%;
    padding: 20px 20px 40px 20px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (185px)[auto-fit];
        grid-template-columns: repeat(auto-fit, 185px);
    grid-gap: 5px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-row-align: center;
        align-items: center;
}

/* ////////////////////////////////////////////////////////////// BLOG /////////////////////////// */

.postsDiv{
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 40px;
    padding: 20px;
    width: 100%;
}

.postsTitle{
    margin: 0 0 20px 0;
    font-size: 1.5em;
}

.postsArticle{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.postsLeft{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
}

.postsThumb{
    max-width: 150px;
    max-height: 150px;
}

.postsDate{
    font-size: 0.8em;
    font-weight: 700;
}

.postsRight{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.postsContent{
    text-align: justify;
    line-height: 25px;
}

.postDiv{
    margin: 40px;
    padding: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.postTitle{
    margin: 20px 0 60px 0;
    font-size: 2em;
}

.postHeader{
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 40px 40px 20px;
}

.postThumb{
    max-width: 100px;
    max-height: 100px;
}

.postDate{
    font-size: 0.8em;
    font-weight: 700;
}

.postContent{
    text-align: justify;
    line-height: 25px;
}

/* ///////////////////////////////////////////////////////////// LOGIN PAGE //////////////////// */

.loginRegisterDiv{
    justify-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.loginRegisterDiv a{
    color: var(--green);
    font-weight: 700;
    -webkit-text-decoration-color: var(--green);
            text-decoration-color: var(--green);
}

/* ///////////////////////////////////////////////////////////// PROFILE PAGE //////////////////// */

.profileInformationsDiv{
    justify-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
}

.profileAvatar{
    max-width: 100px;
    max-height: 100px;
}

.profileInformationsUnderDiv{
    width: 300px;
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
}

.profileInformationsButtons{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.adminLink{
    justify-self: center;
    width: 300px;
    text-align: center;
    margin-bottom: 40px;
    background: #A5260A;
    text-decoration: none;
    color: white;
    font-weight: 700;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    height: 30px;
    line-height: 30px;
    font-size: 0.9em;
    border-radius: 5px;
}

.profileInformationsDiv p{
    margin: 0;
    padding: 0;
    line-height: 30px;
}

#editProfile{
    margin: 20px 0 10px 0;
}

#editEmail{
    margin: 10px 0;
}

#editPassword{
    margin: 10px 0;
}

#disconnectButton{
    margin: 10px 0 40px 0;
}

.profileOrdersTitle{
    margin: 60px 0 0 0;
}

.profileOrdersTable{
    display: block;
    max-width: 300px;
    overflow-x: scroll;
    margin: 60px 5px;
    font-size: 0.8em;
}

.profileOrdersTable p{
    margin: 0;
    padding: 0;
}

.profileOrdersTable,.profileOrdersTable td,.profileOrdersTable th{
    border-collapse: collapse;
    padding: 10px 5px;
    text-align: left;
    min-width: 100px;
}

.profileOrdersTableLineGreen{
    background-image:-webkit-linear-gradient(#e7f3c7, white);
    background-image:linear-gradient(#e7f3c7, white);
}
.profileOrdersTableLineBlue{
    background-image:-webkit-linear-gradient(#7ce0ff, white);
    background-image:linear-gradient(#7ce0ff, white);
}
.profileOrdersTableLinePurple{
    background-image:-webkit-linear-gradient(#d7aef8, white);
    background-image:linear-gradient(#d7aef8, white);
}
.profileOrdersTableLineRed{
    background-image:-webkit-linear-gradient(#ffb7bc, white);
    background-image:linear-gradient(#ffb7bc, white);
}
.profileOrdersTableLineYellow{
    background-image:-webkit-linear-gradient(#fffd99da, white);
    background-image:linear-gradient(#fffd99da, white);
}
.profileOrdersTableLineGrey{
    background-image:-webkit-linear-gradient(rgba(0, 0, 0, 0.1), white);
    background-image:linear-gradient(rgba(0, 0, 0, 0.1), white);
}
.profileOrdersTableLineBlack{
    background: rgba(0, 0, 0, 0.1);
}

.paymentMode{
    max-width: 50px;
    max-height: 50px;
}

.profileOrdersTable th{
    background: rgba(0, 0, 0, 0.1);
    background-image:-webkit-linear-gradient(rgba(0, 0, 0, 0.1), white);
    background-image:linear-gradient(rgba(0, 0, 0, 0.1), white);
    padding: 10px 5px;
}

.profileOrdersTable td{
    font-size: 1em;
}

.orderNumber{
    font-weight: 700;
    text-decoration: underline;
    color: var(--green) !important;
}

.payCBButton{
    background: var(--green);
    padding: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.payCBButton:hover{
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.orderPlusButton{
    cursor: pointer;
}

.orderDropdown{
    display: none;
    width: 100%;
    padding: 0;
}

.orderDropdown td{
    margin: 0;
    padding: 0;
}

.orderDetailsDiv{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.orderDetailsDiv table,.orderDetailsDiv table td,.orderDetailsDiv table th{
    border-collapse: collapse;
    padding: 5px;
    text-align: left;
    border: 0.5px solid var(--grey);
}

.clientModButton{
    color: #437bdc;
    font-size: 1.2em;
    margin: 0 10px;
}

/* //////////////////////////////////////////////////////////// ORDER DETAILS //////////////// */

.invoiceDiv{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.invoiceHeader{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.invoiceTableOrder{
    margin: 40px 20px 40px 0;
    width: 400px;
}

.invoiceTableShippment{
    margin: 40px 0 40px 20px;
    width: 400px;
}

.invoiceTableProducts{
    margin: 0 0 40px 0;
    width: 840px;
}

.invoiceDiv table,.invoiceDiv table td,.invoiceDiv table th{
    border-collapse: collapse;
    padding: 5px;
    text-align: left;
    border: 0.5px solid var(--grey);
}

.productNumberDiv{
    width: 840px;
}

.productNumber{
    width: 100%;
    text-align: left;
}

.orderCategoryNameBis p{
    font-weight: 700;
    text-align: left;
    margin: 0;
    padding: 0;
}

/* ///////////////////////////////////////////////////////////// CART PAGE //////////////////// */

.cartDiv{
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-bottom: 40px;
}

.tableTitle{
    justify-self: center;
    font-size: 1.3em;
    margin-bottom: 40px;
}

.cartTable{
    justify-self: center;
    display: block;
    max-width: 300px;
    overflow-x: scroll;
    margin-bottom: 40px;
}

.cartTable,.cartTable td,.cartTable th{
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-collapse: collapse;
    padding: 5px;
    text-align: center;
    min-width: 100px;
}

.emptyCartForm{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 10px;
}

.emptyCart{
    background: #A5260A;
    color: white;
    padding: 5px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cartProductTitle{
    color: var(--grey);
    font-size: 0.9em;
    font-weight: 400;
}

.cartProductImage{
    max-height: 30px;
}

.cartProductImageDiv{
    position: relative;
}

.cartProductImageDiv:hover .imageZoomIcon{
    display: block;
}

.cartProductPrice{
    font-weight: 700;
}

.cartProductQuantity{
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 30px;
    padding: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.cartProductQuantity:hover{
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.cartQuantitySubmit{
    width: 30px;
    height: 30px;
    padding: 5px;
    padding: 0;
    border: 0;
    background: var(--green);
    font-size: 0.9em;
    font-weight: 500;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-weight: 700;
    color: white;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.cartQuantitySubmit:hover{
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.removeFromCart{
    color: var(--grey);
    font-size: 1.2em;
}

.cartOrderDiv{
    margin: 40px 0 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.cartTotal{
    padding: 0;
    margin: 10px 5px;
    text-align: right;
    font-size: 1.1em;
}

.checkoutPostReferences{
    color: var(--grey);
    font-size: 0.8em;
}

.checkoutPostTable{
    justify-self: center;
    display: block;
    max-width: 300px;
    overflow-x: scroll;
}

.checkoutPostTable,.checkoutPostTable td,.checkoutPostTable th{
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-collapse: collapse;
    padding: 5px;
    text-align: center;
    min-width: 100px;
}

.shippingTaxesInfos{
    position: relative;
    color: #17a3e6;
    cursor: pointer;
}

.shippingTaxesInfosDiv{
    display: none;
    background: #17a3e6;
    text-align: center;
    width: 100%;
    color: white;
    border-radius: 5px;
    max-height: 0px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.shippingTaxesInfosDiv td{
    border: none;
    margin: 0 50px;
}

.shippingTaxesInfosDiv p{
    margin: 5px;
    padding: 0;
    line-height: 15px;
    font-size: 0.8em;
}

.shopPickUpOption{
    margin: 10px 0;
}

.checkoutPostForm{
    margin-top: 40px;
}

.formularCart{
    margin: 0 !important;
}

/* ///////////////////////////////////////////////////////////// CHECKOUT PAGE //////////////////// */

.adressesDiv{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.factAdressCheckDiv{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 20px 0;
}

.factAdressCheckDiv input{
    margin-right: 10px;
}

.factAdressDiv{
    display: none;
    margin-left: 50px;
    margin-bottom: 23px;
}

.otherPaymentDiv{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.otherPaymentDiv p{
    text-align: justify;
    line-height: 30px;
    width: 500px;
}

.otherPaymentDiv a{
    margin-top: 40px;
}

/* ///////////////////////////////////////////////////////////// FOOTER //////////////////// */

.partnersDiv{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 40px 0;
}

.partnersDiv img{
    margin: 20px 0;
    max-width: 500px;
}

#footer{
    grid-area: footer;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footerLinks{
    width: 100%;
    padding: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.footerLinks h3{
    margin: 0;
    padding: 0;
    font-size: 1em;
}

.footerLinks ul{
    margin: 10px 0 10px 0;
    padding: 0;
    list-style-type: none;
}

.footerLinks li{
    padding: 2px 0;
    font-size: 0.9em;
    font-weight: 700;
}

.footerPayment{
    width: 100%;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.footerPayment img{
    max-width: 200px;
}

.footerInformations{
    width: 100%;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0;
}

.footerTitle{
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 1em;
}

.footerInfos{
    margin: 0;
    padding: 0;
    font-size: 0.9em;
}

.footerLink{
    margin: 0;
    padding: 0;
    font-size: 0.9em;
    font-weight: 700;
}

.contactMap{
    width: 300px;
    height: 250px;
}

.copyright{
    font-size: 0.8em;
}