
/* Variables */
:root {
        --body-bg: #E7E7E2;
        --body-fg: #4F5155;

        --header-fg: #FFFFFF;
        --header-bg: #333333;

        --content-hl: #4282f4;
        --content-fg: #FFFFFF;

}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html 
{
  position: relative;
  min-height: 100%;
}

body
{
        font-family: 'Noto Sans', sans-serif;
        margin: 0;
        color: #4F5155;
        line-height: 1.8em;
        background-color: #E7E7E2; 
}

header
{
        box-sizing: border-box;
        margin: 0 auto;
        position: relative;
        width: 100%;
        max-width: 1200px;
        height:130px;
        background-color: #333333;
        color: #ffffff;
	background-image: url(/images/iminetblog-sprite.png);
        background-repeat: no-repeat;
        background-position: 0 0;
        overflow: hidden;
        border-bottom: 1px solid #353535;
}

header > a#logo
{
        display: inline-block;
        background: transparent url(/images/iminetblog-sprite.png) no-repeat -192px -279px;
        margin: 47px 0 0 20px;
        font-size: 0;
        text-decoration: none;
        border: none;
        width: 176px;
        height: 64px;
}
header > a#logo:hover { border: none; text-decoration: none; }

header > nav
{
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  height: 47px;
  margin: 0;
  list-style: none;
  list-style-type: none;
  padding: 10px;
}

header > nav > a
{
  display: inline-block;
  box-sizing: border-box;
  margin: 0 2px;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 2.0em;
  padding: 0 5px;
  transition: color .3s;
}
header > nav > a:hover { color: #4282f4; text-decoration: none; }

header > .menuicon
{
        box-sizing: border-box;
        display: none;
        width: 28px;
        height: 28px;
        margin: 8px;
        cursor: pointer;
        vertical-align: middle;
        line-height: 68px;
        padding: 0;
}

header > .menuicon > span
{
        display: block;
        width: 28px;
        height: 3px;
        background-color: #FFFFFF;
        margin: 6px 0;
}

#middle
{
        box-sizing: border-box;
        width: 100%;
        max-width: 1200px;
        padding: 0;
        overflow: hidden;
        display: flex;
        margin: 0 auto;
}

#middle > main
{
  box-sizing: border-box;
  flex: 1; 
  width: 100%;
  max-width: 100%;
  float: none;
  clear: both;
  background-color: #ffffff;
  padding: 20px;
}

#middle > aside
{
  box-sizing: border-box;
  flex-shrink: 0;
  width: 270px;
  padding: 10px 10px 10px 20px;
  border-left: 1px solid #353535;
}

#middle > aside > big
{
        width: 100%;
        display: inline-block;
        font-weight: bold;
        margin: 15px 0 10px 0;
        font-size: 18px;
        line-height: 25px;
        text-align: center !important;
}

#middle > aside > .sidebar-list
{
        margin: 10px 0;
        width: 100%;
}

#middle > aside > .sidebar-list > ul
{
        margin: 0;
        padding: 0;
        list-style-type: none;
}

#middle > aside > .sidebar-list > ul > li
{
        margin: 0;
        padding: 0;
        list-style: none;
        list-style-type: none;
}

#middle > aside > .sidebar-list > ul > li > a
{
        color: #333333;
        font-size: 12px;
        font-weight: bolder;
        line-height: 1.2em;
}

footer
{
  box-sizing: border-box;
  border-top: 1px solid #DEDEDE;
  width: 100%;
  color: #DEDEDE;
  background-color: #333333;
  padding: 10px 5px;
  overflow: hidden;
}

footer > div > a:hover { text-decoration: none;}

footer > div
{
  line-height: 2em;
  margin: 0 auto;
  max-width: 1200px;
  font-size: 14px;
  float: none;
  clear: both;
  padding: 0 8px;
}

footer > div > big
{
        text-transform: uppercase;
        font-weight: bold;
}

.pagination 
{
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0.2em 0.5em;
    min-width: 2.0em;

    border: 1px solid #aaa;
    border-radius: 6px;

    background: #fff;
    color: #5a3d8a;
    text-decoration: none;
    font-family: inherit;
}

.pagination span
{
        font-weight: bold;
}

.pagination a:hover {
    background: #efebff;
    border-color: #7a55c7;
    text-decoration: none;
}

a       { color: #4282f4; text-decoration: none; }
a:Hover { color: #ff9400; text-decoration: underline; }

/* Main content of the page */
article
{
        width: 100%;
        box-sizing: border-box;
}
article img { max-width: 100%; height: auto; }


/* Content of a blog post */
article.postlist > div
{
        box-sizing: border-box;
        display: block;
        margin: 20px 0;
        border-bottom: 1px solid #a2a9b1;
        line-height: 2.0em;
}
article.postlist > div > a { display: block; font-size: 24px; margin: 12px 0; }
article.postlist > div > a:hover { text-decoration: none; }
article.postlist > div > span, article.blogpost > div > span { display: block; font-size: 12px; }

article.blogpost { line-height: 2.0em; }

article.homepage > h2 { border-bottom: 1px solid #a2a9b1; padding: 8px 0; }

article.homepage > .latestposts
{
        display: block;
        box-sizing: border-box;
        width: 100%;
}

article.homepage > .latestposts > div { display: flex; }

article.homepage > .latestposts > div > div > a { text-decoration: none; display: block; font-size: 22px; padding: 10px 0; }
article.homepage > .latestposts > div > div > span { display: block; font-size: 14px; }
article.homepage > .latestposts > div > div.thumbnail { display: inline-block; padding: 5px; width: 180px; height: auto; padding: 5px; }
article.homepage > .latestposts > div > div.brief { width: 100%; margin-left: 15px; }

.videowrapper
{
        display: block;
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        height: 0;
}

.videowrapper iframe
{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
}

.blogprofil
{
        font-size: 14px;
        text-align: center;
}

.blogprofil > img
{
        display: block;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin: 0 auto;
        padding-bottom: 15px;
}

.bluebutton
{
        border-radius: 3px;
        font-size: 14px;
        border: 2px solid #dbdbdb;
        padding: 4px 8px;
        color: #626262;
        transition: color .3s;
        box-sizing: border-box;
        font-weight: bolder;
        display: inline-block;
}

.bluebutton:hover
{
        border-color: #4282f4;
        color: #4282f4;
        text-decoration: none;
}

table.tablazat
{
        background-color: #f8f9fa;
        width: 100%;
        border: 1px solid #a2a9b1;
        border-spacing: 0;
}

table.tablazat > thead > tr > td
{
        font-weight: bold;
        background-color: #EAECF0;
        border-bottom: 1px solid #a2a9b1;
}

table.tablazat tr
{
        padding: 3px;
        margin:0;
}

table.tablazat tr > td
{
        padding: 0.2em 0.4em;
        margin:0;
        border-bottom: 1px solid #a2a9b1;
}

select
{
        width: 100%;
        max-width: 350px;
        border: 1px solid #258cfb;
        background-color: #7e7f81;
        font-size: 16px;
        line-height: 3.0em;
}

#menublogcategories > ul { padding: 0; list-style: none; list-style-type: none; }
#menublogcategories > ul > li { padding: 0; }
#menublogcategories > ul > li > a
{
        font-size: 16px;
        color: #666666;
}
#menublogcategories > ul > li > a:hover { text-decoration: none; color: #258cfb; }

.icon_16 { display: inline-block; width: 16px; height: 16px; background: transparent url(/images/iminetblog-sprite.png) no-repeat; }
.icon_28 { display: inline-block; width: 28px; height: 28px; background: transparent url(/images/iminetblog-sprite.png) no-repeat; }
.icon_32 { display: inline-block; width: 32px; height: 32px; background: transparent url(/images/iminetblog-sprite.png) no-repeat; }
.icon_48 { display: inline-block; width: 48px; height: 48px; background: transparent url(/images/iminetblog-sprite.png) no-repeat; }

.icon_radius_3 { border-radius: 3px; }

.icon_rss_16 { background-position:  0 0; }

.icon_fb_32 { background-position:  0 -248px;}
.icon_twitter_32 { background-position: -32px -248px;}
.icon_linkedin_32 { background-position: -96px -248px;}
.icon_thumblr_32 { background-position: -64px -248px;}
.icon_instagram_32 { background-position: -128px -248px;}
.icon_youtube_32 { background-position: -160px -248px;}
.icon_budapest_32 { background-position: -192px -248px;}
.icon_photoframe_32 { background-position: -224px -248px;}
.icon_rss_32 { background-position: -256px -248px; }
.icon_github_32 { background-position: -288px -248px; }
.icon_flickr_32 { background-position: -320px -248px; }
.icon_gitea_32 { background-position: -352px -248px; }
.icon_soundcloud_32 { background-position: -384px -248px; }
.icon_spotify_32 { background-position: -416px -248px; }
.icon_ytmusic_32 { background-position: -448px -248px; }
.icon_paypal_32 { background-position: -480px -248px; }
.icon_bitly_32 { background-position: -512px -248px; }
.icon_map_32 { background-position: -544px -248px; }

footer > div > .icon_rss_32 { background-color: #7e7f81; }
footer > div > .icon_rss_32:hover { background-color: #ff9d26; }
footer > div > .icon_fb_32 { background-color: #7e7f81; }
footer > div > .icon_fb_32:hover { background-color: #4267B2; }
footer > div > .icon_twitter_32 { background-color: #7e7f81; }
footer > div > .icon_twitter_32:hover { background-color: #1DA1F2; }
footer > div > .icon_youtube_32 { background-color: #7e7f81; }
footer > div > .icon_youtube_32:hover { background-color: #f42d2b; }
footer > div > .icon_github_32 { background-color: #7e7f81; }
footer > div > .icon_github_32:hover { background-color: #3e75c3; }
footer > div > .icon_flickr_32 { background-color: #7e7f81; }
footer > div > .icon_flickr_32:hover { background-color: #ed1983; }
footer > div > .icon_gitea_32 { background-color: #7e7f81; }
footer > div > .icon_gitea_32:hover { background-color: #528321; }
footer > div > .icon_soundcloud_32 { background-color: #7e7f81; }
footer > div > .icon_soundcloud_32:hover { background-color: #ff4300; }

.icon_fb_48 { background: transparent url(/public/blog/images/iminetblog-sprite.png) no-repeat 0 -200px;}
.icon_twitter_48 { background: transparent url(/public/blog/images/iminetblog-sprite.png) no-repeat -48px -200px;}
.icon_linkedin_48 { background: transparent url(/public/blog/images/iminetblog-sprite.png) no-repeat -144px -200px;}
.icon_thumblr_48 { background: transparent url(/public/blog/images/iminetblog-sprite.png) no-repeat -96px -200px;}
.icon_instagram_48 { background: transparent url(/public/blog/images/iminetblog-sprite.png) no-repeat -192px -200px;}
.icon_youtube_48 { background: transparent url(/public/blog/images/iminetblog-sprite.png) no-repeat -240px -200px;}
.icon_budapest_48 { background: transparent url(/public/blog/images/iminetblog-sprite.png) no-repeat -288px -200px;}
.icon_photoframe_48 { background: transparent url(/public/blog/images/iminetblog-sprite.png) no-repeat -336px -200px;}
.icon_github_48 { background: transparent url(/public/blog/images/iminetblog-sprite.png) no-repeat -432px -248px; }

.debug-red      { border: 1px solid red; }
.debug-green    { border: 1px solid green; }
.debug-yellow   { border: 1px solid yellow; }
.debug-blue     { border: 1px solid blue; }
.heightauto     { height: auto; }
.maxwidth50     { width: 50px !important; }
.maxwidth100    { width: 100px; }
.maxwidth150    { width: 150px; }
.maxwidth200    { width: 200px; }
.maxwidth250    { width: 250px; }
.widthfull      { width: 100%; }
.width50        { width: 50%; }
.width25        { width: 25%; }
.alcenter       { text-align: center; }
.vertmiddle     { vertical-align: middle; }
.diblock        { display: inline-block; }
.flexbox        { display: flex; }
.tblequal       { table-layout: fixed; width: 100% }
.floatclear     { float: none; clear: both; }
.floatleft      { float: left; }
.highlight      { color: #2867B2 }
.margright_0 { margin-right: 0; }
.margright_5 { margin-right: 5px; }
.margright_10 { margin-right: 10px; }
.margright_15 { margin-right: 15px; }
.margright_20 { margin-right: 20px; }
.margright_25 { margin-right: 25px; }
.margin_5 { margin-right: 5px; }
.margin_10 { margin-right: 10px; }
.bgdarkgrey { background-color: #666666; }
.bgyellow { background-color: #e8b001 !important; }
.borderround { border-radius: 3px; }

.notification 
{
        box-sizing: border-box;
        padding: 15px 20px;
        font-size: 16px;
        background-color: #f0f0f0;
        color: #333;
        border: 1px solid #ccc;
        border-left: 8px solid #333;
}

/* Extend for specific types */
.notification.success {
background-color: #d4edda;
color: #155724;
border-color: #c3e6cb;
border-left: 8px solid #155724;
}

.notification.error {
background-color: #f8d7da;
color: #721c24;
border-color: #f5c6cb;
border-left: 8px solid #721c24;
}

.notification.info {
background-color: #d1ecf1;
color: #0c5460;
border-color: #bee5eb;
border-left: 8px solid #0c5460;
}

table.tablazat
{
        background-color: #f8f9fa;
        width: 100%;
        border: 1px solid #a2a9b1;
        border-spacing: 0;
}

table.tablazat > thead > tr > td
{
        font-weight: bold;
        background-color: #EAECF0;
        border-bottom: 1px solid #a2a9b1;
}

table.tablazat tr
{
        padding: 3px;
        margin:0;
}

table.tablazat tr > td
{
        padding: 0.2em 0.4em;
        margin:0;
        border-bottom: 1px solid #a2a9b1;
}

table.tablazat td, table th { word-break: break-word; }

.table-wrapper { box-sizing: border-box; display: block; margin: 10px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */ }
.table-wrapper::-webkit-scrollbar { display: none; }

.defaultform textarea
{
        width: 100%;
        height: 100%;
        min-height: 500px;
        background-color: #626262;
        color: #d1ecf1;
}

div.login
{
        display: block;
        box-sizing: border-box;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        overflow: visible;
        border-radius: 5px;
        padding: 15px;
}

div.login > fieldset.locallogin > a
{
        display: block;
        margin: 10px 0;
}
div.login > fieldset.locallogin > a:hover { text-decoration: none; color: #1DA1F2;}

div.login > fieldset.sociallogin > a
{
        display: inline-block;
        box-sizing: border-box;
        border-radius: 5px;
        width: 45px;
        height: 45px;
        background-color: #4F5155;
        padding-top: 5px;
        padding-left: 5px;
        margin: 10px;
}
div.login > fieldset.sociallogin > a:hover { background-color: #1DA1F2; }

div.login > .external > a
{
        box-sizing: border-box;
        display: flex;
        border-radius: 3px;
        border: 1px solid #258cfb;
        vertical-align: middle;
        justify-content: center;
        height: 38px;
        margin: 10px 0;
}

div.login > .external > a:hover { text-decoration: none; background-color: #1DA1F2; }

div.login > .external > span
{
        display: inline-block;
        margin: 0;
        height: 32px;
        padding: 0;
        margin-right: 20px;
}

/* Halloween */
body.halloween > header > a#logo { background-position: -192px -420px !important; }

/* Christmas */
body.xmas > header > a#logo { background-position: -192px -344px !important; }

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
}

.breadcrumb li:not(:last-child)::after {
    content: "";
    display: inline-block;
    margin: 0 6px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #333333;
}

.breadcrumb a {
        padding: 5px;
        color: #333;
        font-weight: bold;
        text-decoration: none;
}

.breadcrumb a:hover { color: #4282f4; text-decoration: none; }

.breadcrumb .current span {
    font-weight: bold;
    color: #333;
}

a.socialbox
{
        box-sizing: border-box;
        display: inline-block;
        width: 100%;
        max-width: 30%;
        min-height: 65px;
        border-radius: 10px;
        color: #FFFFFF;
        font-size: 18px;
        margin-bottom: 15px;
        padding: 15px 55px;
        overflow: hidden;
        position: relative;
}

a.socialbox:hover { background-color: #7e7f81; text-decoration: none; }

a.socialbox:not(:last-child)
{
        margin-right: 15px;
}

a.socialbox > div { display: block; font-size: 18px; color: #FFFFFF; text-decoration: none; }
a.socialbox > span { display: block; font-size: 14px; color: #FFFFFF; }

a.youtubetv { background-color: #ff0000; }
a.youtubetv::before { background: url(/images/iminetblog-sprite.png) -240px -200px no-repeat; content: ""; width: 48px; height: 48px; position: absolute; left:-15px; bottom:5px;  opacity: 40%; scale: 150%; }
a.soundcloudtv { background-color: #ff8800; }
a.soundcloudtv::before { background: url(/images/iminetblog-sprite.png) -192px -200px no-repeat; content: ""; width: 48px; height: 48px; position: absolute; left:-15px; bottom:5px;  opacity: 40%; scale: 150%; }
a.flickrtv { background-color: #ff0084; }
a.flickrtv::before { background: url(/images/iminetblog-sprite.png) -192px -200px no-repeat; content: ""; width: 48px; height: 48px; position: absolute; left:-15px; bottom:5px;  opacity: 40%; scale: 150%; }
a.githubtv { background-color: #6e5494; }
a.githubtv::before { background: url(/images/iminetblog-sprite.png) -432px -200px no-repeat; content: ""; width: 48px; height: 48px; position: absolute; left:-15px; bottom:5px;  opacity: 40%; scale: 150%; }
a.twittertv { background-color: #1da1f2; }
a.twittertv::before { background: url(/images/iminetblog-sprite.png) -48px -200px no-repeat; content: ""; width: 48px; height: 48px; position: absolute; left:-15px; bottom:5px;  opacity: 40%; scale: 150%; }
a.instagramtv { background-color: #e1306c; }
a.instagramtv::before { background: url(/images/iminetblog-sprite.png) -192px -200px no-repeat; content: ""; width: 48px; height: 48px; position: absolute; left:-15px; bottom:5px;  opacity: 40%; scale: 150%; }

input, textarea, select 
{
    width: 100%;
    padding: 8px 5px;
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    color: #FFFFFF;
    border-radius: 4px;
    font-size: 14px;
}

textarea { resize: vertical; }

button, input[type=submit]
{
        background: #2563eb;
        border: 1px solid #1d4ed8;
        color: #ffffff;
        padding: 0.5rem 0.9rem;
        border-radius: 4px;
        cursor: pointer;
        width: 100%;
        max-width: 250px;
}

fieldset .form-group {
    margin-bottom: 1rem;
}

fieldset {
    border: 1px solid #dadce0;
    border-radius: 6px;
    padding: 1rem 1.25rem 1.25rem;
    margin: 15p 0;
    background: #ffffff;
}

fieldset legend {
    padding: 0 0.5rem;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-left: -0.5rem;
}

fieldset .form-group {
    margin-bottom: 1rem;
}

/* Google Ads */
.adsbygoogle { overflow: hidden; max-width: 770px !important; }
.ga-sidemenu
{
        max-height: 250px;
        padding: 5px !important;
}

/* -----------------------------------------------
/* SMARTPHONE SMALL SCREEN
/* ---------------------------------------------*/
@media only screen and (max-device-width : 650px)
{
        .nomobile { display: none !important; }
        header { height: 70px; overflow: visible; background: #21201b url(/public/blog/images/iminetblog-sprite.png) no-repeat 0 -54px; }
        header > a#logo { vertical-align: middle; margin: 0 0 0 5px; }

        header > .menuicon { display: inline-block; }

        header > nav
        {
                box-sizing: border-box;
                display: none;
                border-top: none;
                margin: 70px 0 0 0;
                height: auto;
                width: 100% !important;
                padding: 5px;
                background-color: #353535;
                z-index: 99;
                border-radius: 0 0 4px 4px;
                border: 1px solid #21201b;
        }

        header > nav > a
        {
                display: block;
                color: #FFFFFF;
                margin: 0 8px;
                padding: 5px;
                border-bottom: 1px solid #DEDEDE;
                color: #FFFFFF;
                text-decoration: none;
                text-transform: none;
        }

        header > nav > a:last-child { border: 0; }

        #middle
        {
                box-sizing: border-box;
                width: 100%;
                margin: 0;
                display: block;
                background-color: transparent;
                width: 100%;
        }

        aside
        {
                box-sizing: border-box !important;
                display: block !important;
                border-left: none !important;
                width: 100% !important;
                padding: 20px;
                border-top: 1px solid #DEDEDE;
                background-color: #FFFFFF;
        }

        footer { box-sizing: border-box; padding: 0 10px; }

        a.socialbox { max-width: 45%; }
}


/************************************************************************************
* DARK THEME
************************************************************************************/
@media (prefers-color-scheme: dark) 
{

        body { color: #b4aea4; background-color: #272a2c; }
        #middle { background-color: #272a2c; }
        #middle > main { background-color: #181a1b !important; }
        aside { background-color: #0d1117; border-left: 1px solid #21262d; }
        h1, h2, h3, h4 { color: #b4aea4; }

        content a { color: #ffffff; transition: color .3s; }
        content a:hover { color: #4282f4; }

        .breadcrumb { color: #258cfb !important; }
        .breadcrumb a { color: #258cfb !important; }
        .breadcrumb span { color: #4F5155 !important; }

        table.tablazat { background-color: #181a1b; }
        table.tablazat > thead > tr > td { background-color: #25282a; }

        .pagination a, .pagination span { background-color: #272a2c;  color: #1DA1F2; }
        .pagination a:hover { border-color: #1DA1F2; background-color: #4F5155; }

        input { background-color:  #242628; border: 1px solid #3a3d3f }

        fieldset { border: 1px solid #2c2f33; background: #181a1b; }
        fieldset legend { color: #e3e3e3; }
}
