*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Astycf-bold;
    src: url('../fonts/AstyCFStd-Medium.otf');
  }

@font-face {
    font-family: Astycf-regular;
    src: url('..//fonts/AstyCFStd-Book.otf');
}

@font-face {
    font-family: Astycf-light;
    src: url('../fonts/AstyCFStd-Light.otf');
}

:root{
    --color-light: #EFEDDE ;
    --color-light-dark: #D3D1C4 ;
    --color-dark: #252525 ;
    --color-green: #76B21C ;
    --color-blue: #1B71B4 ;
    --color-error: #cc0000 ;

    --fs-h1: 3rem;
    --fs-h2: 2.5rem;
    --fs-h3: 2rem;
    --fs-body: 1.6rem;
    --fs-small-text: 1rem;

}

@media (max-width: 1200px){
    :root{
        --fs-h1: 3.5rem;
        --fs-h2: 3rem;
        --fs-h3: 2.5rem;
        --fs-body: 1.5rem;
        --fs-small-text: 1.3rem;
    }


}

html{
    font-family: Astycf-regular;
    font-size:10px;
}

input , select ,textarea, button{
    font-family: Astycf-regular;
}

/* general styles */

body{
    font-size: var(--fs-body);
    color: var(--color-dark) ;
    background-color: var(--color-light);
    line-height: 1.6;
}

img{
    display: block;
    max-width: 100%;
    border-radius: 5px;
}

.container{
    width:1200px;
    margin:auto;
    overflow: hidden;
}

input[type=submit]{
    padding: 1rem 0;
    outline:none;
    border: none;
}

a{
    text-decoration: none;
    color: var(--color-dark);
}

.hr-light{
    height: 1px;
    background-color: var(--color-light-dark);
    border: none;
}

.hr-dark{
    height: 1px;
    background-color: var(--color-dark);
    border: none;
}

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

.color-green{
    color: var(--color-green);
}

.color-blue{
    color: var(--color-blue);
}

.color-red{
    color: var(--color-error);
}

.color-light-dark{
    color: var(--color-light-dark);
}

.my-1{
    margin: 1rem 0;
}

.my-2{
    margin: 2rem 0;
}


/* Typography */

h1 { font-size: var(--fs-h1); font-family: Astycf-bold;}
h2 { font-size: var(--fs-h2); font-family: Astycf-bold;}
h3 { font-size: var(--fs-h3); font-family: Astycf-bold;}

.small-text{
    font-size: var(--fs-small-text);
    font-family: Astycf-light;
}

.euro-price::before{
    content: " €";
    font-size:0.7em;
}

.bold{
    font-family: Astycf-bold;
}

.regular{
    font-family: Astycf-regular;
}

.light{
    font-family: Astycf-light;
}

.text-center{
    text-align: center;
}

.button{
    background-color: var(--color-green);
    padding: 0.7rem;
    border-radius: 5px;
    font-size: 1.3rem;
}


/* Header */

.top-header{
    background-color: var(--color-dark);
    color: var(--color-light);
    min-height:5vh;
    padding: 1rem 0;
}

.top-header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-icon{
    width: 2.5rem;
    margin-right: 0.5rem;
}

.text-seperator{
    background-color: var(--color-light);
    height: 2rem;
    width: 1px;
    margin: 0 0.5rem; /* topbottom --- leftright */
}

.top-left-text{
    display: flex;
    align-items: center;
    flex-flow: wrap;
}

.top-right-text{
    display: flex;
    align-items: center;
}

.main-navbar-placeholder{ /* for sticky navbar to not jumb */
    min-height:8vh;
  
}

.main-navbar{
    min-height:8vh;
    padding: 1rem 0;
    border-bottom: 2px var(--color-light-dark) solid;
  
}

.fixed{
    position: fixed;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    margin: auto;
    background-color: var(--color-light);
}

.main-navbar .container{
    min-height:6vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    width:10rem;
    margin-right: 2rem;
    
}


.search-form-container {
    width: 60%;
    height: 4rem;
    margin: 0 2rem;
}

.search-form{
    position:relative;
}


.search-text{
    color: var(--color-dark);
    background-color: var(--color-light-dark);
    width: 100%;
    height: 4rem;
    padding-left:4.5rem;
    border:none;
    border-radius:5px;
}

.search-text:focus{
    outline: none;
}

.search-button{
    position:absolute;
    top:.8rem;
    left:1rem;
    border:none;
    background-color: Transparent ;
    cursor: pointer;
}


.cart{   
    display: flex;
    align-items: center;
}

.cart-icon{
    width:3rem;
}

.cart-badge{
    position: relative;
    font-size: 1rem;
    top:-1.5rem;
    left:-10px;
    padding: 0.2rem 0.7rem;
    border-radius: 50%;
    background-color: var(--color-green);
    color: var(--color-dark);
}

.cart-text{
    display: flex;
    flex-direction: column;
    text-align: right;
}

.bottom-header{
    display: flex;
    min-height:3vh;
    padding: 1rem 0;
}

.bottom-header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.2rem;
}

.bottom-nav ul{
    list-style-type: none;
}

.bottom-nav ul li{
    display: inline-block;
    margin:0 1rem;
}



.bottom-nav a{
    text-transform: uppercase;
}

.bottom-left-text a::after{
    display: inline-block;
    content: ' ';
    background-image: url('../images/icons/arrow-right.svg');
    height: 1.2rem;
    width: 1.2rem;
    
}



.products-side-menu{
    z-index:10;
    background-color: var(--color-light);
    border: var(--color-light-dark) 2px solid;
    border-radius: 5px;
    display: none;
    position: fixed;
    top:125px;
	height:85vh;
	overflow-y:scroll;
    width: 1210px;
    padding: 2rem;
    
}

.products-menu-col-container{
    display: flex;
    flex-wrap: wrap;
}

.products-menu-col{
    padding-right: 3rem;
    padding-bottom: 2rem;
}

.menu-icon{
    width: 2.5rem;
    margin-right: 1rem;
}

.products-menu-top{
    display:flex;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-dark);
}


.products-menu-sub{
    display: flex;
    flex-direction: column;
}

.products-menu-sub a{
    font-size: 1.4rem;
}

.products-side-menu a:hover{
    color: var(--color-green);
}

.row-tags-container{
    display: flex;
    flex-wrap: wrap;
}

.row-tag{
    font-size: 1.2rem;
    border: 1px solid var(--color-dark);
    border-radius: 5px;
    padding: 0.3rem 0.8rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.row-tag:hover{
    border: 1px solid var(--color-green);
    color: var(--color-green);
}

@media (max-width: 1200px){

    .products-side-menu{ 
        width: 90%;
        top: 150px;
        height: 75vh;
        overflow-y: scroll;
    }

    .products-menu-col{
        width: 400px;    
    }


}


@media (max-width: 600px){

    .products-side-menu{
        top:210px;
        width: 90%;

    }

    .products-menu-col{
        width: 400px;
        text-align: center;
    }

    .products-menu-top{
        justify-content: center;
    }

    

}

.close-button-container{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.close-icon{
    width: 1.5rem;
}

.menu-product{
    margin: 0.3rem;
}

.menu-product:hover{
    color: var(--color-green);
}

.products-menu-container{
    display: flex;
    flex-direction: column;
   
}

.products-side-menu-less{ 
    /* used in javascript for when the menu is sticky to leave less space */
    top:80px;
}




/* main section*/


.slider-container{
    position: relative;
}

.slider{
    color: var(--color-light);
}

.slide-content{
    min-height: 300px; /* even thow the image size is 380 it displays better*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 1200px;
    margin:auto;
    
}

.slide{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.arrows{  
    margin: 1rem;
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
}

#arrow-left{
    margin-right: 1.5rem;
}

.arrow{
    cursor: pointer;
}

.slider-arrow-icon{
    width: 4rem;
}

.slide1{background-image: url('../images/home-slider/home-slider-1.jpg');}

.slide2{background-image: url('../images/home-slider/home-slider-2.jpg');}

.slide3{background-image: url('../images/home-slider/paramenoume-anoixtoi.jpg');}

.slide4{background-image: url('../images/home-slider/welcome.jpg');}

.slide6{background-image: url('../images/home-slider/home-slider-6.jpg');}





.featured-categories{
    background-color: var(--color-light-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    
}

.featured-category{
    margin:2rem;
    flex: 1;

}

.featured-category-title{
    text-align: center;
    margin-top: 1rem;
}

.featured-category-image{
    height: 20rem;
    object-fit: cover;
    width: 100%;
    border-radius: 5px;
}

.section-title{
    margin: 4rem 0;
}

.featured-new-products .container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.featured-in-offer{
    position: relative;
}

.offer-tag{
    position: absolute;
    top: 3rem;
    right: 3rem;
    background-color: var(--color-blue);
    color: var(--color-light);
    border-radius: 5px;
    padding: 0.4rem;
    font-size: 1.1rem;
}

.featured-new-product{
    width: 250px;
    border: 2px var(--color-light-dark) solid;
    border-radius: 5px;
    margin: 0 1rem 2rem 1rem;
    padding: 2rem;
}

.featured-new-product-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height:3vh;
}

.featured-new-product-cta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}




.featured-new-products img{
    object-fit: cover;
    height: 250px;
    width: 100%;
    margin: auto;
}

.call-to-action{
    margin-top: 3rem;
}

.call-to-action .container{
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
   
}

.cta-content{
    margin: 2rem;
}

.cta{
    margin-top: 2rem;
    display: flex;
    border-radius: 5px;
    height: 30vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.big-cta{
    flex-direction: column;
    justify-content: center;
    width: 70%;
    background-image: url('../images/cta/xomata.jpg');
}

.small-cta{
    align-items: center;
    justify-content: space-around;  
    width: 25%;
    background-image: url('../images/cta/tools.jpg');
}

.cta-title{
    margin-bottom: 0.5rem;

}

.big-cta .button{
    padding: 1rem;
    background-color: var(--color-blue);
    color: var(--color-light);
}

.small-cta .button{
    font-size: 2rem;
    padding: 1.2rem;
    background-color: var(--color-blue);
    color: var(--color-light);
}

.recent-blog-posts .container{
    display: flex;
    flex-wrap: wrap;
    
    justify-content: space-evenly;
}

.recent-blog-posts {
    margin-bottom: 3rem;
}

.featured-blog-img{
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.blog-post-info{
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.blog-post-info > p{
    margin-right:1rem;
}

.recent-blog-post{
    width: 580px;
    border: 2px var(--color-light-dark) solid;
    border-radius: 15px;
    margin-bottom: 2rem;
    
}

.recent-blog-post hr{
    margin: 1rem 0;
}

.recent-blog-post-content{
    padding: 2.5rem;
}

.recent-post-excert{
    margin-bottom: 1rem;
}

.service-icon{
    width: 5rem;
}

.services{
    margin: 4rem 0;
}

.services .container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service{
    border: 2px var(--color-light-dark) solid;
    border-radius: 5px;
    width: 30rem;
}

.service-content{
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-content-text{
    margin-left: 1rem;
}

footer a{
    color: var(--color-light);
}

footer ul{
    list-style: none;
}

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


footer{
    background-color: var(--color-dark);
    color: var(--color-light);
    font-family: Astycf-light;
}


footer .footer-links{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 5rem 2rem;
}

.footer-column{
    width: 30rem;
    
}

.footer-column h3{
    font-family: Astycf-regular;
    font-size: 1.8rem;
    padding-bottom: 2rem;
    text-transform: uppercase;
}

.footer-link{
    margin-bottom: 0.3rem;
}

.footer-contact-link{
    margin-bottom: 0.7rem;
}

.footer-col-seperator{
    background-color: var(--color-light);
    height: 20rem;
    width: 1px;
    margin: 0 0.5rem; /* topbottom --- leftright */
}

.footer-buttons{
    display: flex;
    justify-content: space-between;
     
}

.footer-button{
    background-color: #737373;
    padding: 0.8rem;
    
}

.footer-button:hover{
    color: var(--color-light);
}


footer hr{
    margin: 2rem 0;
}

.social-links {
    width: 15rem;
    display: flex;
    justify-content: space-between;
}

.social-links img{
    border-radius: 0px;
}

.social-media-icon{
    width: 2rem;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.terms ul li{
    display: inline-block;
    margin:0 1rem;
}


/* Shop page */

.top-page-section{
    margin: 1rem 0;
}

.top-page-section .container{
    min-height: 12vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.breadcrump-active{
    color: var(--color-green);
}

.shop-main .container{
    display: flex;
}

.sidebar{
    width: 25%;
}

.shop{
    width: 75%;
    border-left: 1px solid var(--color-light-dark);
    margin-left: 2rem;
    padding-left: 2rem;
}

.sidebar-section{
    margin-bottom: 3rem;
}

.sidebar-section-title{
    font-size: 2.3rem;
}

.sidebar-section hr{
    margin: 1rem 0;
}

.sidebar-section-links{
    font-size: 1.5rem;
}

.sidebar-link-active{
    color: var(--color-green);
}

.sidebar-seperator{
    background-color: var(--color-light-dark);
    height: 220vh;
    width: 1px;
    margin: 0 2rem; /* topbottom --- leftright */
}

.mobile-only-menu{
    margin: 2rem 0;
    text-align: center;
}

.mobile-only-menu ul li{
    display: inline-block;
    margin:0 1rem;
}

.shop-cta{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.slider-text{
    width: 50%;
}

.shop-cta-content{
    padding: 2rem;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop-cta-content a{
    width: 15rem;
    text-align: center;
}

.shop-top-text{
    margin: 2rem 0;
}


.product{
    display: flex;
}

.product-image{
    width: 35%;
    margin-right: 2rem;
}

.product-left-column{
    display: flex;
    width: 85%;
}

.product-small-text{
    font-size: 1.2rem;
}

.product-content{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-details{
    display: flex;
}

.product-details p{
	border-right:1px solid var(--color-light-dark);
	padding-right:1rem;
    margin-right: 1rem;
}

.product-details p:last-child{
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.product-excert{
    font-size: 1.4rem;
}

.product-right-column{
    width: 15%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.product-offer{
    background-color: var(--color-blue);
    color: var(--color-light);
    text-align: center;
    padding: 0.2rem;
    width: 70%;
    border-radius: 5px;
}

.product-prices{
    text-align: right;
}

.product-before-price{
    font-size: 2rem;
}

.product-after-price{
    font-size: 3.5rem;
}

.product-button{
    font-size: 1.7rem;
}

.shop-sort-by{
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

select{
    font-size: 1.5rem;
    padding: 1rem 5rem 1rem 1rem;
    background: var(--color-light-dark);
    color: var(--color-dark);
    border: 0;
    border-radius: 5px;
}

option{
    height: 2rem;
}

.pagination{
    display: flex;
    justify-content: space-around;
}

.pagination a{
    border: 2px var(--color-light-dark) solid;
    padding: 1.2rem 1.7rem;
}

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

.pagination ul{
    list-style-type: none;
    margin: 1rem;
}

.pagination ul li{
    display: inline-block;
}

.active{
    background-color: var(--color-green);
}

.top-single{
    background-color: var(--color-green);
    color: var(--color-light);
    padding: 1rem 0;
}

.top-single .breadcrumps a{
    color: var(--color-light);
}

.top-single .breadcrump-active{
    color: var(--color-light-dark);
}

.top-single .breadcrumps a:hover{
    color: var(--color-light-dark);
}

.top-single .container{   
    height: 15vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.top-single .breadcrumps{
    padding-top: 2rem;
}

.top-single h1{
    font-size:4rem;
}

.single-product .container{
    background-color: var(--color-light);
    margin-top: -7vh;
    border-radius: 5px;
    padding: 2rem;
}

.single-product-content{
    display: flex;
    justify-content: space-between;
}

.product-single-details{
    display: flex;
    justify-content: flex-end;
}

.product-single-details p{
    border-right: 1px solid var(--color-light-dark);
    margin-right: 1rem;
    padding-right: 1rem;
}

.product-single-details p:last-child{
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.single-images{
    display: flex;
    width: 55%;
    justify-content: space-between;
}

.small-images img{
    width: 10rem;
    margin-bottom: 1rem;
    cursor: pointer;
}

.disabled-button{
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--color-light-dark);
    width: 70%;
}

.single-availabilty{
    text-align: right;
    font-size: 1.3rem;
}



.single-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
}

.single-product-after-price {
    font-size: 5rem;
}

.single-product-before-price{
    font-size: 2.5rem;
}

.single-choice-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}

.size-select{
    display: flex;
    flex-direction: column;
    
}

.size-select p{
    line-height: 1.3rem;
}

.single-choice-select{
    width: 60%;
    
}

.single-quantity-select{
    width: 25%;
}

.single-buy{
    width: 70%;
    text-align: center;
    border: none;
    outline:none;
    cursor: pointer;
    padding: 1rem;
}

.modal-bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    display: none;
}


.modal{
    
    margin-top: 5rem; /* να εχει κενο με το fixed menu */
    background-color: var(--color-light);
    padding: 2rem;
    min-width: 60%;
    height: 350px;
	overflow-y: scroll;
    border-radius: 5px;
}

.add-modal{
    min-width: 600px;
}

.add-product-modal{
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.add-product-modal img{
    width: 20%;
}

.add-product-text{
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.add-product-text img{
    width: 3rem;
    margin-right: 2rem;
}

.add-product-buttons{
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.add-product-buttons .continue-shopping{
    background-color: var(--color-light-dark);
    margin-right: 2rem;
}

.product-description{
    padding: 5rem 0;

}

.product-description ul{
    display: inline-block;
    margin:0 1rem;
}

.cart-page-top{
    height: 200px;
}

.cart-container{
    margin-top: -5rem;
}

.cart-container .container{
    display: flex;
    justify-content: space-between;
}

.cart-details{
    width: 70%;
}

.cart-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-light);
}

.cart-products{
    margin-top: 5rem;
}

.continue-shopping-button{
    color: var(--color-light);
    border: 1px var(--color-light) solid;
    border-radius: 5px;
    padding: 0.5rem 1rem;
}

.button-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.button-icon-left{
    width: 1rem;
    margin-right: 1rem;
}

.cart-sidebar{
    background-color: var(--color-light-dark);
    padding: 2rem;
    width: 25%;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 50rem;
}

.cart-product{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-product-details{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-product-left{
    
    display: flex;
    justify-content: space-between;    
    
}

.cart-product-img{
    margin-right: 2rem;
    width: 10rem;
    height: 100%;
}

.cart-product-price{
    font-size: 2rem;
}

.cart-product-quantity form{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-delete{
    border: none;
    outline: none;
    color: var(--color-error);
    cursor: pointer;
    margin-top: 0.5rem;
}

.cart-product-quantity a{
    color: var(--color-error);
}

.sidebar-top{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-prices{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 2rem;
}

.sidebar-bottom{
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-bottom > a , .sidebar-bottom > div, .sidebar-bottom >  form{
    margin: 1rem 0;
}


.cart-button-refresh{
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: center;
    margin: 2rem 0;
    color: var(--color-dark);
    border: 1px var(--color-dark) solid;
    border-radius: 5px;
}

.button-icon-refresh{
    width: 2rem;
    margin-right: 1rem;
}

.coupon-icon{
    width: 2rem;
}

.coupon-form{
    text-align: center;
    position: relative;
}


.coupon-form input{
    width: 100%;
    background-color: var(--color-light-dark);
    border: 1px var(--color-dark) solid; 
    border-radius: 5px;
    padding: 1rem;
}

.coupon-form input:focus{
    outline: none;
}

.coupon-form button{
    position: absolute;
    top:.8rem;
    right:1rem;
    border:none;
    background-color: Transparent ;
    cursor: pointer;
}

.cart-continue{
    width: 100%;
}

.error-message{
    font-size: 1.3rem;
    color: var(--color-error);
    border: 1px var(--color-error) solid; 
    border-radius: 5px;
    padding: 1rem;
}

.success-message{
    font-size: 1.3rem;
    color: var(--color-green);
    border: 1px var(--color-green) solid; 
    border-radius: 5px;
    padding: 1rem;
}


.checkout-container{
    margin-top: -10rem;
}

.checkout-container .container{
    display: flex;
    justify-content: space-between;
}

.checkout-sidebar{
    display: flex;
    flex-direction: column;
}

.checkout-main{
    width: 70%;
}

.checkout-sidebar{
    width: 25%;
}

.checkout-sidebar-products{
    min-height: 35vh;
    background-color: var(--color-light-dark);
    padding: 2rem;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;   
}

.checkout-order-products{
    padding: 2rem 0;
}

.checkout-order-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-order-top a{
    color: var(--color-green);
    font-size: 1.2rem;
}

.checkout-order-product{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-sidebar-bottom{
    text-align: center;
}

.checkout-button{
    text-align: center;
    margin-top: 2rem;
}

.progress-bar{
    counter-reset: step;
}


.progress-bar li{
    list-style: none;
    float: left;
    width: 25%;
    position: relative;
    text-align: center;
}

.progress-bar li:before{
    content: counter(step);
    counter-increment: step;
    border-radius: 50%;
    line-height: 3rem;
    width: 3rem;
    height: 3rem;
    border: 1px var(--color-dark) solid;
    display: block;
    text-align: center;
    margin: 0 auto 1rem auto;
}



.progress-bar li:after{
    content: "";
    position: absolute;
    width: 85%;
    height: 1px;
    background-color: var(--color-dark);
    top:1.5rem;
    left: -42%;
}

.progress-bar li:first-child:after{
    content:none;
}

.progress-bar li.progress-active{
    color: var(--color-blue);
}

.progress-bar li.progress-active:before{
    content: "";
    background-image: url('../images/icons/tick.svg');
    background-position: center;
    background-size: 2rem;
    background-repeat: no-repeat;
    border-color: var(--color-blue);
}

.progress-bar li.progress-active + li:after{
    background-color: var(--color-blue);
}

.progress-bar-icon{
    width: 3rem;
}

.progress-bar-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}


.checkout-form{
    margin-top: 11rem;
    float: none;
}

.inputs-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.order-form{
    width: 48%;
    height: 50px;
    position: relative; 
}

.order-form input{
    width: 100%;
    height: 100%;
    color: var(--color-dark);
    background-color: var(--color-light-dark);
    padding-top: 20px;
    padding-left: 10px;
    outline: none;
    border: none;
    border-radius: 5px;
}

.order-form label{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    
}

.order-form-content{
    color: #6e6e6e;
    position: absolute;
    bottom: 5px;
    left: 10px;
    transition: all 0.3s ease;
}

.order-form input:focus + .order-form-label .order-form-content,
.order-form input:valid + .order-form-label .order-form-content{
    transform: translateY(-100%);
    font-size: 1.3rem;
    color: var(--color-green);
}

.long-form{
    width: 100%;
}

.order-commends{
    width: 100%;
    height: 80px;
    color: var(--color-dark);
    background-color: var(--color-light-dark);
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 10px;
    font-size: 1.6rem;
}

.order-form-error{
    margin-bottom: 2rem;
}

.delivery-place-form{
    width: 100%;
}

.delivery-container{
    display: flex;
    align-items: center;  
}

.delivery-container label{
    width: 100%; 
}

.radio-button-box{
    margin: 1rem;
    padding: 2rem 2rem 1rem 2rem;
    border: 1px solid var(--color-light-dark);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
}


.radio-button-box > div{
    margin-top: 1rem;
}

.radio-button-box p{
    font-size: 1.4rem;
}

.delivery-details{
    display: flex;
    justify-content: space-between;
}

.delivery-details p{
    margin-bottom: 1rem;
}

.details-text{
    width: 40rem;
    
}


.thank-you-container .container{
    height: 50vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.thank-you-container img{
    width: 15rem;
}

.thank-you-container h3{
    padding: 1rem 0;
}

.thank-you-container p{
    padding: 0.5rem 0;
}

.error-page-container .container{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-page-container h3{
    padding: 1rem 0;
}

.error-page-container p{
    width: 40%;
}

.contact-map iframe{
    width: 100%;
    height: 40vh;
}

.contact-container{
    display: flex;
    padding: 2rem 0;
}

.contact-form{
    width: 70%;
    border-right: 1px solid var(--color-light-dark);
    margin-right: 2rem;
    padding-right: 2rem;

}

.contact-form form{
    padding: 1rem 0;
}

.contact-submit{
    display: flex;
    justify-content: flex-end;
}

.contact-form a{
    padding: 1rem 2rem;
    margin-top: 1rem;
}

.contact-sidebar{
    width: 30%;
}

.contact-sidebar-section{
    padding-bottom: 3rem;
}

.contact-sidebar-section p{
    padding: 0.5rem 0;
}

.open-times-row{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-light-dark);
    padding: 0.5rem 0;
}

textarea {
    resize: none;
}

.blog-top{
    display: flex;
    justify-content: space-between;

}

.blog-container .container{
    display: flex;
    padding: 4rem 0;
}

.blog-recent-posts{
    width: 70%;
    border-right: 1px solid var(--color-light-dark);
    margin-right: 2rem;
    padding-right: 2rem;
}

.blog-sidebar{
    width: 30%;
}

.image-sidebar-container{
    height: 30vh;
    
 
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-sidebar-container p{
    background-color: rgba(27, 113, 180,0.7);
    color: var(--color-light);
    padding: 2rem 1rem;
    border-radius: 5px;
}

.blog-recent-post{
    min-height: 17rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px var(--color-light-dark) solid;
}

.blog-recent-post img{
    margin-right: 2rem;
    width: 45%;
}



.blog-recent-post-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;  
}

.blog-recent-post-content p , .blog-recent-post-content a{
    font-size: 1.4rem;
}

.blog-recent-meta{
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories-top-title{
    margin: 2rem 0;
}

.blog-categories-container{
    display: flex;
   
}

.blog-categories-container hr{
    margin-bottom: 2rem;
}

.single-post-meta{
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-single-post{
    width: 70%;
    border-right: 1px solid var(--color-light-dark);
    margin-right: 2rem;
    padding-right: 2rem;
}

.blog-single-post img{
    margin-bottom: 2rem;
    width: 100%;
}


.blog-single-post p{
    margin-bottom: 2rem;
    
}

.blog-single-post h3{
    margin-bottom: 2rem;
    font-size:2rem;
}

#single-post-date{
    margin-bottom: 0;
}

.two-images-column{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.two-images-column img{
    width: 49%;
}

.two-images-column-cover{
    display: flex;
    justify-content: space-between;
}

.two-images-column-cover img{
    width: 49%;
    object-fit: cover;
}

.three-images-column-cover{
    display: flex;
    justify-content: space-between;
}

.three-images-column-cover img{
    width: 32%;
    object-fit: cover;
}

.single-post-next-previous{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
}

.single-post-next-previous a{
    border: 1px var(--color-light-dark) solid;
    padding: 1rem 2rem;
    border-radius: 5px;
    color: var(--color-dark);
}

.single-post-next-previous a:hover{
    color: var(--color-green);
    
}

.disabled-link{
    border: 1px var(--color-light-dark) solid;
    padding: 1rem 2rem;
    border-radius: 5px;
    color: var(--color-light-dark);
}

.text-page-paragraph{
    margin-bottom: 3rem;
}

.text-page-paragraph h3{
    margin-bottom: 0.5rem;
}

.search-products-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.search-result-product{
    border: 1px solid var(--color-light-dark);
    padding: 2rem;
    border-radius: 5px;
    width: 250px;
    margin-bottom: 2rem;

}

.payment-table{
    width: 100%;
    border: 1px solid var(--color-light-dark);
    margin: 2rem auto;
}

.payment-table td{
    border-top: 1px solid var(--color-light-dark);
    padding: 1rem;
    text-align: center;
}


.payment-table th{
    padding: 1.2rem;
}

.order-checkbox{
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.order-checkbox p{
    margin-left: 1rem;
}

ol {
    counter-reset: item;
}

ol > li {
    counter-increment: item;
    padding-left: 1rem;
    padding-top: 0.3rem;
}

ol ol > li {
    display: block;
}

ol ol > li:before {
    content: counters(item, ".") ". ";
}

.question-tabs{
    margin-top: 1rem;
}

.question-tab{
    border: 1px solid var(--color-light-dark);
    padding: 2rem;
    border-radius: 5px;
    margin-bottom: 2rem;

}

.question-text{
    padding-top: 2rem;
}

.question-text ul{
    padding: 1rem 2rem;
}

/* Masonry grid */
.masonry {
    transition: all .5s ease-in-out;
    column-gap: 30px;
   
  }
  
/* Masonry item */
.masonry .brick {
margin-bottom: 30px;
display: inline-block; /* Fix the misalignment of items */
vertical-align: top; /* Keep the item on the very top */
}

footer a[data-tool-tip]{
    position: relative;
}

footer a[data-tool-tip]:hover{
    color: var(--color-light);
}

footer a[data-tool-tip]::after{
    content: attr(data-tool-tip);
    display: block;
    position: absolute;
    background-color: var(--color-light);
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 5px;
    color: var(--color-dark);
    bottom: 110%;
    right: 0;
    white-space: nowrap;
    transform: scale(0);
}

footer a[data-tool-tip]:hover::after{
    transform: scale(1);
}


.page-hero{
    min-height: 18vh;
    background-color: var(--color-light-dark);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}


.page-hero h1{
    font-size: 3rem;
}

.page-hero p{
    font-size: 1.2rem;
}


  
  

  

  /* Masonry on big screens */
  @media only screen and (min-width: 1024px) {
    .masonry {
      column-count: 2;
    }
  }



@media (max-width: 1200px){

    .error-page-container p{
        width: 100%;
    }

    .masonry {
        column-count: 1;
      }

      .page-hero .container{
        text-align: center;  
    }

    .payment-table{
        width: 100%;
    }

    .top-header .container{
        flex-direction: column;
    }
    
    .bottom-header .container{
        flex-direction: column;
        column-gap: 2rem;
    }

    .bottom-header .container > div{ /* column gap */
        margin: 0.5rem; 
    }

    .search-form-container{
        display: none;
    }

    .container{
        width: 90%;
    }


    .products-side-menu-less{ 
        top:80px;
    }

    .slide-content{
		padding: 2rem 0;
        width: 90%;
        min-height: 200px;
        font-size: 1.3rem;
    }
	
	.slider-text{
		width:70%;
	}

    .slide-content h1{
        font-size: 3rem;
    }

    .slide{
        background-position: left;
    }

    .featured-categories{
        flex-direction: column;
        width: 60%;
        margin:1rem auto;
    }

    .featured-category-image{
        height: 100%;
    }

    .featured-category-title{
        font-size: 3rem;
    } 

    .featured-new-product{
        flex-basis: 40%;
        margin: 1rem 1rem;
        
    }

    .featured-new-products img{
        height: 100%;
    }

    .cta{
        width: 90%;
    }

    .call-to-action .container{
        flex-direction: column;
    }

    .call-to-action .container > div{ /* column gap */
        margin: 1rem; 
    }

    .big-cta{
        background-position: right;
    }

    .recent-blog-posts .container{
        flex-direction: column;
    }

    .recent-blog-post{
        width: 90%;
    }

    .recent-blog-posts .container > div{ /* column gap */
        margin: 1rem; 
    }

    .recent-blog-posts {
        margin-bottom: 0;
    }

    .services .container > div{ /* column gap */
        margin: 1rem; 
    }

    .footer-col-seperator{
        display: none;
    }

    footer{
        text-align: center;
    }

    .footer-links > div{ /* column gap */
        margin: 1rem; 
    }

    .shop-cta{
        background-position: right;
    }

    .footer-bottom{
        flex-direction: column;
    }

    .product{
        flex-direction: column;
    }

    .product-image{
        width: 200px;
    }

    .product-left-column{
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .product-content{
        width: 100%;
    }
	
    .product-details{
        justify-content: center;
    }

    .product-offer{
        display: none;
    }

    .product-right-column{
        width: 100%;
        align-items: stretch;
    }

    .product-prices{
        display: flex;
        margin: 1rem 0;
        justify-content: space-between;
        align-items: center;
    }

    .shop-sort-by{
        justify-content: space-between;
    }

    .top-single .container{
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }

    .top-single .breadcrumps{
        padding: 0;
    }

    .single-product .container{
        margin-top: 0;
    }

    .single-product .container{
        padding: 0;
    }

    .single-product-content{
        flex-direction: column;
    }
	
    .product-single-details{
        display: flex;
        flex-direction: column;
        text-align: left;
        
    }
    
    .product-single-details p{
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }

    .single-content{
        width: 100%;
    }

    .single-images{
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 1rem;
    }

    .single-large-image{
        max-width: 85%;
        padding: 2rem;
    }

    .size-select p{
        line-height: 2rem;
    }

    .modal{
        padding: 2rem;
        width: 80%;   
        border-radius: 5px;
    }

    .add-modal{
        min-width: 80%;
    }

    .add-product-modal img{
        width: 50%;
    }

    .close-icon{
        width: 2.5rem;
    }



    .add-product-text h1{
        text-align: center;
        font-size: 2rem;
        margin: 1rem 0;
    }

    .product-description{
        text-align: center;
    }

    .cart-container .container{
        flex-direction: column;
    }

    .cart-details{
        width: 100%;
    }

    .cart-sidebar{
        width: 80%;
        margin: auto;
        min-height: 0;
    }

    .cart-product-left{
        width: auto;
        align-items: center;
    }

    .cart-product-img{
        margin-right: 2rem;
        height: 100%;
    }

    .sidebar-prices{
        width: 80%;
        margin: auto;
    }

    .sidebar-bottom{
        margin-top: 4rem;
    }

    .checkout-container .container{
        flex-direction: column;
        
    }

    .checkout-main{
        width: 100%;
        
    }
    
    .checkout-sidebar{
        width: 70%;
        margin: auto;
    }

    .checkout-container{
        margin-top: 0;
    }

    .checkout-form{
        margin: 15rem 0 2rem 0;
        text-align: center;
        
    }

    .progress-bar{
        margin:2rem 0;
    }

    .inputs-row{
        flex-direction: column;
        margin: 0;
    }

    .order-form{
        width: 70%;
        margin-bottom: 1rem;
    }

    .order-commends{
        width: 70%;
    }

    .order-form-error{
        width: 70%;
        margin: auto;
        margin-bottom: 2rem;
    }

    .delivery-container label{
        text-align: left;
        
    }

    .delivery-container label{
        width: 90%; 
    }

    .thank-you-container .container{
        width: 90%;
    }

    .contact-container{
        display: flex;
        flex-direction: column;
        padding: 2rem 0;
    }

    
    .contact-form{
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--color-light-dark);
        padding-bottom: 3rem;
        margin-bottom: 3rem;
        margin-right: 0;
    }

    .form-message{
        width: 100%;
    }

    .contact-form .order-form{
        width: 100%;
    }

    
    .contact-sidebar{
        width: 100%;
    }


    .contact-submit{
       justify-content: center;
    }

    .blog-top{
        flex-direction: column;
    }

    .blog-top > div{
        margin: 2rem;
    }

    .blog-container .container{
        flex-direction: column;
    }
    
    .blog-recent-posts{
        width: 100%;
        margin-bottom: 5rem;
        border-right: none;
    }
    
    .blog-sidebar{
        width: 100%;
    }

    .blog-recent-post{
        flex-direction: column;
    }

    .blog-recent-post img{
        width: 100%;
        margin-bottom: 2rem;
    }


    .blog-recent-post-content{
        height: 20rem;
        width: 100%;
    }

    .categories-top-title{
        text-align: center;
    }

    .blog-categories-container{

        flex-direction: column;
    }

    .blog-single-post{
        width: 100%;
        margin-bottom: 5rem;
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        text-align: center;
    }

    .two-images-column{
        flex-direction: column;
    }
    
    .two-images-column img{
        width: 100%;
    }

    .two-images-column-cover{
        flex-direction: column;
    }
    
    .two-images-column-cover img{
        width: 100%;
    }

    .three-images-column-cover{
        flex-direction: column;
    }
    
    .three-images-column-cover img{
        width: 100%;
    }

    .featured-blog-img{
        width: 100%;
    }

    .question-tabs{
        display: block;
        max-height: unset;
    }

    .question-tab{
        width: 100%;
    }




    

}

@media (max-width: 600px){
    .text-seperator{
        display: none;
    }

    .masonry {
        column-count: 1;
      }
    
    .top-left-text p{
        width: 100%;
        text-align: center;
    }

    .top-left-text img{
        margin: 1rem auto;
    }

    .bottom-nav a{
        font-size: 1rem;
    }


    .featured-categories{
        width: 100%;
    } 

    .featured-category-title{
        font-size: 2rem;
    } 

    .featured-new-product{
        flex-basis: 100%;
        
    }

    .sidebar{
        display: none;
    }

    .sidebar-seperator{
        display: none;
    }

    .shop{
        width: 100%;
        border: none;
        margin-left: 0;
        padding-left: 0;
    }

    .shop-top-text{
        text-align: center;
    }

    .product-left-column{
        flex-direction: column;
    }

    .product-image{
        width: 100%;
    }

    .product-content{
        text-align: center;
        margin: 1rem 0;
    }

    .progress-bar li:after{
        content: "";
        position: absolute;
        width: 70%;
        height: 1px;
        background-color: var(--color-dark);
        top:1.5rem;
        left: -35%;
    }

    .search-products-container{
        justify-content: space-around;
    }

    .search-result-product{
        width: 80%;
    }

    .featured-new-products .container{
        justify-content: space-around;
    }

    .question-tab{
        width: 100%;
    }


}


@media (min-width: 600px){
    .mobile-only-visible{
        display:none;
    }
}

.table-wrapper{
    border: 1px solid var(--color-light-dark);
    border-radius: 5px;
    margin: 1rem 0;
}

.fl-table {
    border-radius: 5px;
    font-size: 1.5rem;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
}

.fl-table td, .fl-table th {
    text-align: center;
    padding: 1rem;
}

.fl-table td {
    font-size: 1.3rem;
}

.fl-table thead th {
    color: var(--color-light);
    background: var(--color-dark);
}


/* Responsive */

@media (max-width: 1200px) {

    .table-wrapper{
        border: none;
    }

    .fl-table {
        display: block;
        width: 100%;
    }
    .table-wrapper:before{
        content: "Σκρολάρετε οριζόντια >";
        display: block;
        text-align: right;
        font-size: 1rem;
        color: var(--color-dark);
        padding: 0 0 1rem;
    }
    .fl-table thead, .fl-table tbody, .fl-table thead th {
        display: block;
    }
    .fl-table thead th:last-child{
        border-bottom: none;
    }
    .fl-table thead {
        float: left;
    }
    .fl-table tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
    }
    .fl-table td, .fl-table th {
        padding: 20px .625em .625em .625em;
        height: 60px;
        vertical-align: middle;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        width: 120px;
        font-size: 13px;
        text-overflow: ellipsis;
    }
    .fl-table thead th {
        text-align: left;
        border-bottom: 1px solid #f7f7f9;
    }
    .fl-table tbody tr {
        display: table-cell;
    }

    .fl-table tbody td {
        display: block;
        text-align: center;
    }
}