 /**
 * Theme Name:  Datanoesis
 * Theme URI:   http://www.datanoesis.gr
 * Description: WordPress theme for Datanoesis
 * Version:     1.0.0
 * Author:      Digitalbox
 * Author URI:  http://www.digitalbox.gr
 * Tags:        one-column, custom-colors
 * Text Domain: wptheme_api_framework
 */
 
 :root {
     --bgColor: #fff;
     --mainFont: 'Roboto', sans-serif;
     --headingsFont: 'Open Sans', sans-serif;
     --textCenterAlign: center;
     --textRightAlign: right;
     --textLeftAlign: left;
     --fontWeightExtraBold: 800;
     --fontWeightBold: 700;
     --fontWeightLight: 300;
     --fontWeightRegualar: 400;
     --fontWeightMedium: 500;
     --mainFontColor: #4b4a4a;
     --secondaryFontColor: #2c5d88;
     --mainTransition: all 250ms ease-out 0s;
     font-size: 100%;
 }
 
 body {
     background: var(--bgColor);
     color: var(--mainFontColor);
     font-family: var(--mainFont);
     font-size: 1rem;
     font-weight: normal;
     overflow-x: hidden;
 }
 
 .row {
     margin: 0 auto;
     max-width: 84.375rem;
     width: 100%;
 }
 
 .row.full-width {
     margin: 0 auto;
     max-width: 100%;
     width: 100%;
 }
 
 img {
     max-width: 100%;
     height: auto;
     -ms-interpolation-mode: bicubic;
     display: inline-block;
     vertical-align: middle;
 }
 
 a {
     transition: var(--mainTransition);
     color: var(--secondaryFontColor);
 }
 
 a:hover {
     text-decoration: none;
     color: #57AE46;
 }
 /* HEADER */
 
 ul.utils {
     padding: 0.9375rem 0 0;
     margin: 0;
     list-style: none;
     float: right;
 }
 
 ul.utils li {
     float: left;
     margin-right: 2.25rem;
 }
 
 ul.utils li:last-child {
     margin-right: 0;
     line-height: 1.6875rem;
 }
 
 ul.utils li a {
     color: var(--secondaryFontColor);
     font-size: 0.8125rem;
     transition: var(--mainTransition);
 }
 
 ul.utils li a:hover {
     color: var(--mainFontColor);
 }
 
 .logonav {
     padding: 27px 0 0;
 }
 
 li.activesrc {
     cursor: pointer;
     transition: 0.5s;
     position: relative;
 }
 
 .search-boxsrc {
     background: #fff;
     position: absolute;
     top: -5px;
     right: 25px;
     width: 296px;
     height: 42px;
     line-height: 42px;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
     display: none;
     padding: 0 5px 0 8px;
 }
 
 .search-boxsrc input[type="text"] {
     width: 220px;
     padding: 5px;
     outline: none;
     height: 30px;
     font-size: 13px;
     display: inline-block;
     border: 1px solid #ccc;
     border-radius: 0;
     z-index: 2;
 }
 
 .search-boxsrc input[type="submit"] {
     width: 60px;
     padding: 0;
     background: #2C5D88;
     color: #fff;
     border: 1px solid #2C5D88;
     outline: none;
     cursor: pointer;
     height: 30px;
     line-height: 28px;
     border-radius: 0;
     font-size: 13px;
     margin-left: -4px;
     z-index: 1;
 }
 /* NAVIGATION MENU  ---------------------- */
 
 nav#desktop-menu {
     padding: 0;
     float: right;
     text-align: left;
 }
 
 .f-nav {
     z-index: 999;
     position: fixed;
     left: 0;
     top: 0;
     width: 100%;
     background: #fff;
     margin-top: -0.3125rem;
     -webkit-box-shadow: 0 0.1875rem 0.3125rem rgba(100, 100, 100, 0.19);
     -moz-box-shadow: 0 0.1875rem 0.3125rem rgba(100, 100, 100, 0.19);
     box-shadow: 0 0.1875rem 0.3125rem rgba(100, 100, 100, 0.19);
 }
 
 .fadeindown {
     -webkit-animation-duration: .45s;
     -webkit-animation-timing-function: ease;
     -webkit-animation-fill-mode: both;
     -webkit-animation-name: fadeInDown;
     -moz-animation-duration: .45s;
     -moz-animation-timing-function: ease;
     -moz-animation-fill-mode: both;
     -moz-animation-name: fadeInDown;
     animation-duration: .45s;
     animation-timing-function: ease;
     animation-fill-mode: both;
     animation-name: fadeInDown;
 }
 /*** ESSENTIAL STYLES ***/
 
 .sf-menu,
 .sf-menu * {
     margin: 0;
     padding: 0;
     list-style: none;
 }
 
 .sf-menu li {
     position: relative;
 }
 
 .sf-menu ul {
     position: absolute;
     display: none;
     top: 70%;
     left: 0;
     z-index: 99;
 }
 
 .sf-menu>li {
     float: left;
 }
 
 .sf-menu li:hover>ul,
 .sf-menu li.sfHover>ul {
     display: block;
 }
 
 .sf-menu a {
     display: block;
     position: relative;
 }
 
 .sf-menu ul ul {
     top: 0;
     left: 100%;
 }
 /*** SKIN ***/
 
 .sf-menu {
     float: left;
     margin: 0;
 }
 
 .sf-menu ul {
     min-width: 13rem;
     *width: 13rem;
     box-shadow: 0 0.125rem 0.125rem 0 rgba(0, 0, 0, .14), 0 0.1875rem 0.0625rem -0.125rem rgba(0, 0, 0, .2), 0 0.0625rem 0.3125rem 0 rgba(0, 0, 0, .12);
 }
 /* 1st level */
 
 .sf-menu li {
     white-space: nowrap;
     *white-space: normal;
 }
 
 .sf-menu li a {
     color: var(--mainFontColor);
     font-weight: var(--fontWeightRegualar);
     padding: 1.875rem 1.5rem;
     font-size: 0.9375rem;
     transition: var(--mainTransition);
 }
 
 .sf-menu li:last-child a {
     padding-right: 0;
 }
 
 .sf-menu li:hover a,
 .sf-menu li.sfHover a,
 .sf-menu li.current_page_parent a,
 .sf-menu li.current-menu-ancestor a {
     color: var(--secondaryFontColor);
 }
 /* 2nd level */
 
 .sf-menu ul li,
 .sf-menu li.current ul li {
     background: var(--bgColor)!important;
     padding: 0;
 }
 
 .sf-menu ul li a {
     background: var(--bgColor)!important;
     font-size: 0.8125rem;
     padding: 0.75rem 1rem;
     color: var(--mainFontColor)!important;
     border-bottom: 0.0625rem solid #e5e8ec;
 }
 
 .sf-menu ul li:hover a,
 .sf-menu ul li.sfHover a {
     color: var(--mainFontColor)!important;
     background: #F3F5F7!important;
     -webkit-transition: none;
     transition: none;
     border-bottom: 0.0625rem solid #e5e8ec;
 }
 /* 3rd level */
 
 .sf-menu ul li.sfHover li a {
     background: var(--bgColor)!important;
     font-size: 0.8125rem;
     padding: 0.75rem 1rem;
     color: var(--mainFontColor)!important;
     border-bottom: 0.0625rem solid #e5e8ec;
 }
 
 .sf-menu ul li li:hover a,
 .sf-menu ul li li.sfHover a {
     color: var(--mainFontColor)!important;
     background: #F3F5F7!important;
     -webkit-transition: none;
     transition: none;
     border-bottom: 0.0625rem solid #e5e8ec;
 }
 /* styling for both css and generated arrows */
 
 .sf-arrows .sf-with-ul {
     padding-right: 2rem;
     *padding-right: 0.99626412551359rem;
 }
 
 .sf-arrows .sf-with-ul:after {
     content: '';
     position: absolute;
     top: 50%;
     right: 0.99626412551359rem;
     margin-top: -0.1875rem;
     height: 0;
     width: 0;
     border: 0.3125rem solid transparent;
     border-top-color: #8C8C8C;
 }
 
 .sf-arrows>li>.sf-with-ul:focus:after,
 .sf-arrows>li:hover>.sf-with-ul:after,
 .sf-arrows>.sfHover>.sf-with-ul:after {
     border-top-color: #8C8C8C;
 }
 
 .sf-arrows ul .sf-with-ul:after {
     margin-top: -0.3125rem;
     margin-right: -0.1875rem;
     border-color: transparent;
     border-left-color: #6f6f6f;
 }
 
 .sf-arrows ul li>.sf-with-ul:focus:after,
 .sf-arrows ul li:hover>.sf-with-ul:after,
 .sf-arrows ul .sfHover>.sf-with-ul:after {
     border-left-color: #6f6f6f;
 }
 /* END OF HEADER */
 
 footer {
     background: #204d77;
     padding: 32px 0 55px;
 }
 
 ul.social {
     padding: 0;
     margin: 0;
     list-style: none;
     float: right;
 }
 
 ul.social li {
     float: left;
     color: #879db2;
     margin: 0 6px;
     font-size: 13px;
 }
 
 ul.social li:first-child {
     line-height: 45px;
 }
 
 footer ul {
     padding: 0;
     margin: 0;
     list-style: none;
 }
 
 footer .footerone ul {
     padding: 20px 5px 0 0;
 }
 
 footer ul li,
 footer ul li a {
     color: #a5b9cb;
     font-size: 13px;
     padding-bottom: 5px;
 }
 
 .footerone .custom-html-widget ul li:nth-child(3),
 .footerone .custom-html-widget ul li:nth-child(9) {
     padding: 14px 0 0;
 }
 
 .footerone .custom-html-widget ul li a {
     color: #65d5ff;
 }
 
 .footerone .custom-html-widget ul li a:hover {
     color: #74c03b;
 }
 
 footer h6 {
     color: #74c03b;
     font-size: 14px;
     font-weight: 400;
     padding-top: 61px;
 }
 
 footer ul li a:hover {
     color: #74c03b;
 }
 
 @media only screen and (max-width: 1100px) {
     .sf-menu li a {
         padding: 1.875rem 1rem;
     }
 }
 
 @media only screen and (max-width: 980px) {
     .sf-menu li a {
         padding: 1.875rem 0.75rem;
     }
 }
 
 @media only screen and (max-width: 979px) {
     .logonav {
         padding-bottom: 25px;
     }
 }
 
 @media only screen and (max-width:767px) {
     footer h6 {
         padding-top: 20px;
     }
 }
 
 @media screen and (max-width: 700px) {
     .search-boxsrc {
         width: 270px;
         right: -16%;
     }
     .search-boxsrc input[type="text"] {
         width: 140px;
         margin-left: 15px;
     }
     .search-boxsrc input[type="submit"] {
         margin-right: 12px;
     }
 }
 
 .woocommerce ul.products li.product {
     border: 1px solid #e8e8e8;
     padding: 20px!important;
     border-radius: 5px;
 }
 
 .woocommerce ul.products li.product a img {
     max-height: 150px;
 }
 
 p.woocommerce-result-count,
 .woocommerce-ordering {
     display: none;
 }
 
 li.product.type-product {
     min-height: 240px;
     text-align: center;
     position: relative;
 }
 
 mark.count {
     display: none;
 }
 
 h2.woocommerce-loop-category__title {
     text-align: center;
 }
 
 li.product.type-product img.size-woocommerce_thumbnail,
 li.product-category img {
     max-width: 60%;
     display: table!important;
     margin: 0 auto!important;
     text-align: center!important;
 }
 
 .shopsidebar {
     margin-top: 15px;
 }
 
 bdi {
     display: none;
 }
 
 body.post-type-archive li.product-category img {
     padding-top: 80px;
 }
 
 .woocommerce .woocommerce-breadcrumb {
     margin-bottom: 0;
 }
 
 .slick-slide {
     outline: 0!important;
 }
 
 #searchform label {
     display: none;
 }

/*ESPA CHANGES*/
.elementor-element-8894151{
	background-color: #2C5D88;
}

[name=WebToContacts189253000002953034] .formspan, .fw200.dIB.vat.mL5.divtwo{
	background-color: rgba(0, 0, 0, 0.01)!important;
}

#page-slider{
	background-color: #2C5D88;
}

.elementor-location-archive.product section:first-child, .single.single-product section.elementor-top-section:first-child{
	background-color: #204D77;
}

.elementor-element-06363da .elementor-field-label, .elementor-element-06363da .elementor-field-label:after{
	color: #fff!important;
	background-color: rgba(0, 0, 0, 0.01);
	font-size: 0;
}
.tax-product_cat .bellows-target-title, .post-type-archive-product .bellows-target-title{
	color: #333!important;
}

.woocommerce-pagination .page-numbers.current{
	color: #515151!important;
}

.woocommerce .woocommerce-breadcrumb a {
    color: #ccc!important;
}

.elementor-products-nothing-found{
	color: #333!important;
}

.row.topbar{
	padding: 20px 0 0;
}

.col.espa-banner{
	width: min-content; 
    flex-grow: 0;
}

.col.espa-banner a img{ 
	float: right;
    min-width: 177px;
/* 	margin-top:5px; */
}

.logonav.home{
	padding-top: 0!important;
}

.col.search img{
	position: relative;
	z-index: 99999;
}

li.product .add_to_cart_button, li.product .woocommerce-Price-amount.amount{
	display: none!important;
}

.mob-front-search{
	display:none!important;
	position: absolute!important;
    top: 10px;
    right: 0px;
    left: 0;
    margin: auto;
    transform: translateX(120px);
	z-index: 9999!important;
}

@media screen and (max-width: 1024px){
body.home #rmp_menu_trigger-4643{
	top: 85px;
	}
	body:not(.home) #rmp_menu_trigger-4643{
	top: 35px;
	}
body.home .activesrc{
    position: absolute!important;
    top: 70px;
    right: 70px;
		z-index:9999;
}
	body:not(.home) .activesrc{
    position: absolute!important;
    top: 40px;
    right: 70px;
		z-index:9999;
}
.col.espa-banner a img {
    min-width: 150px;
}
	.row.topbar{
	padding: 20px 0 20px;
    position: relative;
		justify-content: flex-end;
}
	.col.search{
	   order: 0;
		flex: 1 1 100%;
	}
	.col.espa-banner{
	   order: 1;
	}
	.col.eu20-banner{
	   order: 2;
	}
	.eu20-banner img {
		float: right;
		min-width: 250px!important;
	}
	ul.utils{
		padding: 10px 10px 0 0px!important;
	}
	
	ul.utils img{
		padding-top: 5px;
		min-width: 15px;
	}
}
@media screen and (max-width: 460px){
	
/* 	body.home #rmp_menu_trigger-4643{
	top: 135px;
	}
	body.home .activesrc{
    position: absolute!important;
    top: 120px;
		right:60px;
} */
	.eu20-banner img {
		float: right;
		min-width: 200px!important;
	}
	.col.espa-banner a img {
		min-width: 120px;
	}
}
@media screen and (max-width: 575px){
	.row.topbar {
        margin-bottom: 10px;
		justify-content: center;
    }
	
	.col.eu20-banner, .col.espa-banner{ 
        background: #fff;
    }
	body.home #rmp_menu_trigger-4643{
		top: 110px;
	}
	body.home .activesrc{
		position: absolute!important;
		top: 95px;
		right:60px;
	}
}
@media screen and (max-width: 500px){
/* 	.search-boxsrc {
    width: 100vw;
    max-width: 100vw;
    right: 0;
    top: -15px;
    margin: auto;
    left: 0;
    white-space: nowrap;
    z-index: 9;
    transform: translateX(-50%);
    height: 52px;
    text-align: center;
} */
	.search-boxsrc {
		width: calc(100vw - 50px);
	}
	.search-boxsrc input[type="text"] {
        width: calc(100% - 100px);
	}
	.mob-front-search{
		left: auto;
		transform: none;
	}
	.col.search img{
	z-index: 0;
}
	
	.mob-front-search{
	display:block!important;
}
}

@media screen and (max-width: 390px){
	.search-boxsrc {
    transform: translateX(-40%);
	}
}

@media screen and (max-width: 379px){
	body.home #rmp_menu_trigger-4643{
		top: 135px;
	}
	body.home .activesrc{
		position: absolute!important;
		top: 120px;
		right:60px;
	}
	.col.eu20-banner, .col.espa-banner{ 
        background: transparent;
    }
}

@media screen and (max-width: 330px){
	.search-boxsrc {
    transform: translateX(-30%);
	}
}
		