 /**
 * 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;
 }