/**
 * Theme Name: LSBlock
 * Version: 2.0.5
 * Theme URI: lsaroukos.gr
 * Description: Wordpress Block Theme
 * Author: Lefteris Saroukos
 * Author URI: http://lsaroukos.gr/
 * Requires at least: 6.0
 * Tested up to: 6.4
 * Requires PHP: 8.3
 * Text Domain: lsblock
 * Tags: block-styles, full-site-editing, accessibility-ready
**/

html,div,span,applet,object,iframe,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}


/*===general rules===*/
*, html, body{
    position:relative;
    position: relative;
	box-sizing: border-box;
}

body{
	margin: 0;
	padding: 0;
    width: 100vw;
    overflow-x: hidden;
    background-color: var(--bg-color);
}

.wrapper {
	padding: 0 15px;
	width: 100%;
	max-width: 1750px;
	margin: auto;
}
.hidden{display: none;}
    
.bg-overlay {
	background-color: #0F1F44;
	opacity: 0.6;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


section {
	padding: 40px 0;
}
.btn,
.btn:visited,
.btn:active{
	border: none;
	padding: 10px 15px;
	display: inline-block;
	border-radius: 5px;
	background-color: var(--main-color);
	color: var(--bg-color);
	font-weight: 600;
	font-size: var(--normal);
	box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: background-color 0.2s;
}
    .btn:hover { background-color: var(--main-hover); }

.search-option {
    flex:1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    cursor: pointer;
}
.search-option > i {
    padding: 0 15px;
    vertical-align: middle;
    color: silver;
    font-size: var(--medium);
}

.more-btn-container {
	text-align: center;
	margin-top: 15px;
}

div#wpadminbar{
    position: fixed;
    top:0;
}

/** selector input **/
.selector {
	position: absolute;
	opacity: 0;
	z-index: 2;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
    pointer-events: none;
}

@media only screen and (min-width:800px){
    section {
        padding: 75px 0;
    }
    .more-btn-container {
        margin-top: 30px;
    }
    .wrapper{
        padding:0 20px;
    }    
}
