/**
 * player.dopek.eu - Base theme (HexagonReborn-inspired)
 */
 @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica'), url('../fonts/Helvetica.woff') format('woff');
}
@font-face {
    font-family: 'Helvetica Oblique';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica Oblique'), url('../fonts/Helvetica-Oblique.woff') format('woff');
}
@font-face {
    font-family: 'Helvetica Compressed';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica Compressed'), url('../fonts/helvetica-compressed-5871d14b6903a.woff') format('woff');
}
@font-face {
    font-family: 'Helvetica Rounded Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica Rounded Bold'), url('../fonts/helvetica-rounded-bold-5871d05ead8de.woff') format('woff');
}
/* @font-face {
    font-family: 'Helvetica';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica'), url('../fonts/Helvetica-Bold.woff') format('woff');
} */
@font-face {
    font-family: 'Helvetica Bold Oblique';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica Bold Oblique'), url('../fonts/Helvetica-BoldOblique.woff') format('woff');
}
@font-face {
    font-family: 'Helvetica Light';
    font-style: normal;
    font-weight: normal;
    src: local('Helvetica Light'), url('../fonts/helvetica-light-587ebe5a59211.woff') format('woff');
}
* { box-sizing: border-box; }
html{
    font-size: 100%;
    height: 100%;
}
html, body {
    background-color: #171717;
    color: #e9ebee;
    background:url(../images/bg.jpg);
}
ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
body.player-dopek {
    /* background: #1a1a1a; */
    color: #e9ebee;
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-size: 0.77em;
    font-weight: 700;
}
a{
    text-decoration: none;
}
/* Main layout - single column, same width for header/body/footer */
.layout-container {
    max-width: 1390px;
    margin: 0 auto;
    width: 100%;
    padding: 0 10px 10px 10px; /* left: room for fixed widgets (44px) + gap */
    min-height: 100vh;
    background: #262626;
}
#wrap {  display: flex; flex-direction: column; }

/* Left-side widgets - vertical strip */
/* #slideout, #font-switcher, #language-switcher {
    position: fixed;
    left: 0;
    z-index: 1000;
    width: 44px;
    min-height: 44px;
    background: rgba(30,30,30,0.95);
    border: 1px solid rgba(255,255,255,0.12);
    border-left: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: width 0.25s ease, background 0.2s;
    display: flex;
    align-items: center;
    box-shadow: 2px 0 8px rgba(0,0,0,0.3);
} */
#slideout {
	position: fixed;
    top: 250px;
    left: 0;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background-color: #e9ebee;
	padding: 7px 9px;
    z-index: 11;
    width: 18px;
    height: 20px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
#slideout_inner {
  position: absolute;
  top: 34px;
  left: -250px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  display: grid;
  background-color: #e9ebee;
  padding: 2px;
}
#font-switcher {
    position: fixed;
    top: 130px;
    left: 0;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background-color: #e9ebee;
    line-height: 12px;
    z-index: 11;
    text-align: center;
    box-sizing: content-box;
}
#font-switcher-inner {
  position: absolute;
  top: 0;
  left: -250px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background-color: #e9ebee;
  z-index: 10;
}
#font-switcher.switchers-active:hover #font-switcher-inner {
  left: 32px;
}
#language-switcher {
    position: fixed;
    top: 50px;
    left: 0;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    background-color: #e9ebee;
    padding: 11px 7px;
    width: 22px;
    height: 12px;
    line-height: 12px;
    z-index: 11;
    box-sizing: content-box;
}
#slideout > i::before{
    color: #000;
}
#language-switcher-inner {
  position: absolute;
  top: 0;
  left: -250px;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background-color: #e9ebee;
  z-index: 10;
}
#language-switcher.switchers-active:hover #language-switcher-inner {
  left: 32px;
}
 
#slideout > i,.icon {
 
    display: inline-block;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    font-family: FontAwesome;
    font-size: 14px;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#font-switcher .font-switcher-button {
    width: 22px;
    height: 12px;
    line-height: 12px;
    float: left;
    padding: 11px 7px;
    color: #000;
    box-sizing: content-box;
}
/* #slideout_inner, #font-switcher-inner, #language-switcher-inner {
    display: none;
    flex-wrap: wrap;
}
#slideout:hover #slideout_inner,
#slideout.switchers-active #slideout_inner,
#font-switcher:hover #font-switcher-inner,
#font-switcher.switchers-active #font-switcher-inner,
#language-switcher:hover #language-switcher-inner,
#language-switcher.switchers-active #language-switcher-inner {
    display: flex;
} */
#slideout_inner .colorbutton { width: 14px; height: 14px; float: left; margin: 4px; border-radius: 3px; padding: 5px;box-sizing: content-box; }
.colorbutton:hover {
    box-shadow: 0 0 4px #000;
}
.colorlightblue { background: #12A3EB; }
.colororange { background: #f39c12; }
.colorgreen { background: #27ae60; }
.colorblue { background: #3498db; }
.colorred { background: #e74c3c; }
#language-switcher .language-switcher-button {
    width: 20px;
    height: 12px;
    line-height: 12px;
    float: left;
    padding: 11px 7px;
    color: #000;
    box-sizing: content-box;
}
#language-switcher img { width: auto; height: auto; }
/* #slideout.switchers-active #slideout_inner {
  left: 0;
} */
#slideout.switchers-active:hover #slideout_inner {
  left: 0;
}
.panel-block .dopek-playlist-container, .link-list-panel .link-item{
    padding: 10px;
    background-position: 10px 50%;
    background-repeat: no-repeat;
    background-size: 32px;
    box-shadow: 0 0 4px #000000;
    image-rendering: -webkit-optimize-contrast;
    margin-top: 8px;
    border-radius: 6px;
    background-color: #171717;
}
.panel-block .dopek-playlist-container:hover,.link-list-panel .link-item:hover{
    background-color: #111111;
}
@media (min-width: 1445px) {
    #slideout:hover #slideout_inner {
        left: 0;
    }
    #font-switcher:hover #font-switcher-inner {
        left: 32px;
    }
    #language-switcher:hover #language-switcher-inner {
        left: 32px;
    }
}
/* Top navigation bar */
#nav-top {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #171717;
    box-shadow: 0 0 4px #000000;
    border-top: 1px solid #12A3EB;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    position: sticky;
    z-index: 9;
    left: 0;
    top: 0;
}
#nav-top li { display: inline; padding: 4px; font-size: 1.1em; line-height: 2.25em; list-style-type: none;}
#nav-top li:hover {
    background-color: #000;
    background: rgba(0,0,0,0.27);
    -webkit-box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
    -moz-box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.3);
}
#nav-top a {
    color: #e9ebee;
    text-decoration: none;
    padding: 0;
    display: inline-block;
}
#nav-top a:hover { text-decoration: none; color: #12A3EB; }

/* Header */
.headerbar {
    /* background: #2c2c2c; */
    /* border-bottom: 2px solid #12A3EB; */
    margin-top: 1px;
}
.headerbar .inner { width: 100%; }
#site-description { text-align: center; }
.header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    padding: 4px 10px 1px 10px;
}
#logo { color: #12A3EB; text-decoration: none; font-weight: bold; font-size: 1.2rem; flex-shrink: 0; position: relative;z-index: 2; }
#logo:hover { color: #0e8fcb; opacity: 0.9; }
.header-titles { text-align: left; position: absolute;right: 10px; top: 50%; transform: translateY(-50%);   }
#site-description h1 { margin: 0 0 2px; font-size: 1.5rem; color: #fff; }
.site-des { margin: 0; color: #999; font-size: 0.9rem; }
.flagIcons {
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 960px;
    text-align: right;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    text-align: right;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    padding-right: 4rem;
    letter-spacing: -5px;
    z-index: 9;
    pointer-events: none;
}
.flagIcons a{
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
    pointer-events: auto;
}
.logoFlag_en,.logoFlag_pl  {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
    background: url(../images/pl-flag.jpg) no-repeat center center;
    background-size: auto 36px;
    -webkit-background-size: auto 36px;
    -moz-background-size: auto auto 36px;
    -o-background-size: auto 36px;
    -ms-background-size: auto 36px;
    border:2px solid transparent;
    box-sizing: content-box;
}
.logoFlag_en{
    background: url(../images/en-flag.jpg) no-repeat center center;
    background-size: auto 36px;
    -webkit-background-size: auto 36px;
    -moz-background-size: auto auto 36px;
    -o-background-size: auto 36px;
    -ms-background-size: auto 36px;
}
.logoFlag_en.active,.logoFlag_pl.active{
    border-color: #12A3EB;
}
a {
    color: #e9ebee;
}
.fa:before {
    padding-right: 2px;
}
/* Domain nav */
#nav-breadcrumbs {
    list-style: none;
    margin: 0;
    padding: 0 5px;
    text-align: center;
    border-top: 1px solid transparent;
    /* border-bottom: 1px solid transparent; */
    background-color: #171717;
    box-shadow: 0 0 4px #000000;
    position: relative;
    z-index: 1;
}
#nav-breadcrumbs .domains, #nav-breadcrumbs .domainssep {
    display: inline;
    margin: 0;
    font-size: 1.1em; 
    line-height: 2.25em;
}
#nav-breadcrumbs .domains{
    padding: 1px 10px;
}
#nav-breadcrumbs .domainssep { color: #e9ebee; }
#nav-breadcrumbs a {   text-decoration: none; word-break: break-word;  }

/* Main nav */
#nav-main {
    list-style: none;
    margin: 0;
    padding: 10px 5px;
    background-color: #171717;
    box-shadow: 0 0 4px #000000;
    min-height: 56px;
    border-top: 1px solid transparent;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}
#nav-main li { display: list-item; font-size: 1.1em; line-height: 2.25em;}
#nav-main a {
    text-decoration: none;
    margin-top: 1px;
}

/* Page body */
#page-body {
    flex: 1;
    padding: 8px 0;
    width: 100%;
}
#page-body .inner { width: 100%; }

/* 4-panel grid */
.panels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 8px;
}
.panels-grid:last-child{
    margin: 0;
}
/* .panel-block {
    background: #252525;
    border: 1px solid #333;
    border-radius: 6px;
    overflow: hidden;
} */
.panel-title {
    padding: 11px 10px 9px;
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    border-bottom: 1px solid #333;
    font-size: 1.1em;
    font-family: Roboto-bold, Arial;
    text-transform: uppercase;
    line-height: 1.1em;
    color: #e9ebee;
    background-position: 10px 50%;
    background-repeat: no-repeat;
    background-size: 32px;
    box-shadow: 0 0 4px #000000;
    image-rendering: -webkit-optimize-contrast;
    border-bottom: 4px solid transparent;
    background-color: #101010;
    min-height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}
.dopek-playlist-container { padding: 16px; }
.link-list-panel { max-height: 400px; overflow-y: auto; overflow-x: hidden; word-break: break-word; }
/* .link-list-panel .link-item {
    padding: 8px 0;
    border-bottom: 1px solid #333;
} */
.link-list-panel .link-item:last-child { border-bottom: none; }
.link-list-panel .link-item a {
    color: #fff;
    text-decoration: none;
    margin-right: 12px;
}
.link-list-panel .link-label {margin-right: 8px; }
.link-list-panel .link-item {
    font-size: 1.2em;
}
.link-list-panel .link-item strong{
    font-size: 1em;
}

/* Footer */
/* #page-footer {
    background: #1f1f1f;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
} */
#page-footer .copyright { color: #e9ebee;
    background-color: #171717;
    padding: 10px 10px;
    box-shadow: 0 0 4px #000000;
    margin-top: 0; text-align: center;}
#page-footer .copyright a { color: #12A3EB; }
#page-footer .copyright .footer { font-size: 1em; margin: 0 0 2px; font-weight: bold; color: #e9ebee; }
#page-footer .copyright .footer2 { font-size: 0.75em; line-height: 1.5; margin: 0; font-weight: bold; color: #e9ebee; }
#logo img { max-height: 115px; width: auto; display: block; width: 960px; }
ul.linklist li.responsive-menu {
    position: relative;
    margin: 0;
    padding-left: 8px;
}
#nav-top .dropdown {
    display: none;
    position: absolute;
    left: 0;
    top: 1.2em;
    z-index: 2;
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 9px 0 0;
}
#myNav .dropdown {
    display: none;
    z-index: 2;
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 9px 0 0;
}
#nav-top .dropdown.active,#myNav .dropdown.active{
    display: block;
}
ul.linklist#nav-top .dropdown {
    top: 22px;
}
#nav-top li.responsive-menu.dropdown-right .dropdown {
    left: -9px;
}
#nav-top .dropdown .dropdown-contents_skm {
    z-index: 2;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
    min-width: 40px;
    max-height: 300px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #171717;
    box-shadow: 0 0 4px #000000;
    border-top: 2px solid transparent;
    min-width: 165px !important;
}
#myNav .dropdown .dropdown-contents_skm{
    padding-left: 8px;
}
#myNav .overlay-content a .icon {
    font-size: 30px;
}
#nav-top .dropdown .dropdown-contents_skm a,#myNav .dropdown .dropdown-contents_skm a {
	display: block;
	padding: 5px;
}
#nav-top .dropdown li,#myNav .dropdown li {
    display: list-item;
    float: none !important;
    line-height: normal !important;
    font-size: 1em !important;
    list-style: none;
    margin: 0;
    white-space: nowrap;
    text-align: left;
}
#nav-top .dropdown .pointer, .dropdown .pointer-inner {
    position: absolute;
    width: 0;
    height: 0;
    border-top-width: 0;
    border-bottom: 10px solid transparent;
    border-left: 10px dashed transparent;
    border-right: 10px dashed transparent;
    -webkit-transform: rotate(360deg);
    display: block;
}
#nav-top .dropdown .pointer {
    right: auto;
    left: 10px;
    top: -1px;
    z-index: 3;
}
#nav-top .dropdown .pointer {
    border-color: #171717 transparent;
}
#nav-top li.responsive-show.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .panels-grid { grid-template-columns: 1fr; }
    .header-row { flex-direction: column; }
    #nav-breadcrumbs .domains, #nav-breadcrumbs .domainssep { display: inline-block; }
    #logo img{width: auto; max-width: 100%;}
}
@media (max-width: 768px) {
    /* .layout-container { padding: 0 12px 0 50px; } */ /* widgets 38px + gap */
    /* #page-body { padding: 16px 0; } */
    .panel-title { font-size: 1.1em; padding: 10px 12px; }
    /* #nav-top { padding: 6px 0; gap: 2px; }
    #nav-top a { padding: 6px 10px; font-size: 0.85rem; } */
    #site-description h1 { font-size: 1.25rem; }
    /* #nav-breadcrumbs { padding: 6px 0; font-size: 0.85rem; } */
    #nav-main { padding: 6px 0; }
    #nav-main a { padding: 4px 8px; font-size: 0.9rem; }
    /* #page-footer { padding: 16px 0; } */
    #page-footer .copyright .footer { font-size: 0.85rem; }
    #page-footer .copyright .footer2 { font-size: 0.65rem; }
    /* Left widgets - move up on small screens, or stack */
    /* #slideout { top: 80px; width: 38px; }
    #font-switcher { top: 134px; width: 38px; }
    #language-switcher { top: 188px; width: 38px; } */
    .dopek-playlist-container .dopek-playlist{
        height: auto;
        max-height: none;
    }
    .dopek-playlist-container .dopek-playlist-sidebar{
        max-height: 246px;
        overflow-x: auto;
        display: flex;
        gap: 0;
        max-width: calc(100vw - 34px);
        flex-wrap: nowrap;
    }
    .dopek-playlist-item {
        flex: 0 0 140px;
        min-width: 140px;
        border-right: 3px solid transparent;
    }
}
@media (max-width: 480px) {
    /* .layout-container { padding: 0 10px 0 50px; } */
    /* #logo img { max-height: 48px; } */
    .flagIcons .flag-img { width: 24px; height: 16px; }
    #nav-top a { padding: 6px 8px; font-size: 0.8rem; }
    .dopek-playlist-container { padding: 12px; }
    /* .link-list-panel { padding: 12px; max-height: 300px; } */
}

/* Video page - player fits container */
.dopek-video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px;
}

/* Cookie consent banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 1em 1.8em;
    color: rgb(255, 255, 255);
    background-color: rgb(15, 83, 138);
    font-family: Helvetica, Calibri, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
}
.cookie-consent-message {
    flex: 1;
    min-width: 200px;
}
.cookie-consent-link {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.8);
}
.cookie-consent-link:hover {
    color: rgba(255, 255, 255, 1);
}
.cookie-consent-compliance {
    flex-shrink: 0;
}
/* .cookie-consent-dismiss {
    padding: 8px 18px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
} */
.cookie-consent-dismiss {
    display: block;
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap;
    min-width: 140px;
    background: rgb(229, 229, 229);
    color: rgba(0,0,0,1);
    border-radius: 5px;
    border-color: transparent;
    line-height: 1.5em;
    cursor: pointer;
}
.cookie-consent-dismiss:hover {
    background: rgb(255, 255, 255);
}
@media(min-width:1445px) {
    #slideout:hover #slideout_inner {
        left: 0;
        top: 34px
    }
}
@media(min-width:768px) and (max-width:1400px) {
    .dopek-playlist-container .dopek-playlist-main{
        aspect-ratio: inherit;
    }
}
@media(max-width:1024px) {
    .headbar {
        background-size: cover
    }

    li.header dt .list-inner {
        margin-right: 390px
    }

    li.header dt {
        margin-right: -390px
    }

    ul.topiclist dt {
        margin-right: -325px !important;
        font-size: 1.1em
    }

    dd.lastpost,
    dd.redirect,
    dd.moderation,
    dd.time,
    dd.info {
        width: 180px;
        font-size: 1em
    }
    .flagIcons{
		width: 100%
	}
    .panels-grid{
        gap: 8px;
    }
}
@media(min-width:1001px) and (max-width:1220px) {
    .postbody {
        width: 78.5%
    }

    .postprofile a.button {
        width: 77.5px
    }
}
@media(min-width:817px) and (max-width:1212px) {
    .cont {
        margin-left: -195px !important
    }
}
@media(min-width:1001px) and (max-width:1024px) {
    ul.topiclist dt .list-inner {
        margin-right: 390px
    }
}
@media(min-width:900px) and (max-width:1200px) {
    li.domains {
        padding: 1px 5px !important;
        font-size: 1.1em !important;
        line-height: 2.25em !important
    }

    .domainssep {
        line-height: 2.25em !important;
        font-size: 1.1em !important
    }
}
@media(min-width:1001px) and (max-width:1200px) {
    li.domains {
        padding: 1px 10px !important
    }
}
@media(max-width:1000px) {

    #page-body,
    .page-body-inner {
        width: auto;
        float: none;
        margin-right: 0
    }

    .sidebar {
        margin: 0 auto;
        clear: both;
        float: none;
        width: auto
    }
}
@media(min-width:800px) and (max-width:900px) {
    li.domains {
        padding: 1px !important;
        font-size: 1.1em !important;
        line-height: 2.25em !important
    }

    .domainssep {
        line-height: 2.25em !important;
        font-size: 1.1em !important
    }
}
@media(min-width:850px) {
    .postprofile a.button {
        width: 90px;
        min-width: 0
    }
}
@media(min-width:720px) and (max-width:800px) {
    li.domains {
        padding: 1px !important;
        font-size: .95em !important;
        line-height: 2.25em !important
    }

    .domainssep {
        line-height: 2.25em !important;
        font-size: .95em !important
    }
}
@media (max-width: 767px) {
	.flagIcons{
		padding-right: 3rem
	}
}
@media (min-width: 701px) and (max-width: 1444px) {
    #slideout, #font-switcher, #language-switcher, #dopek-yt, #dopek-video, ul.linklist > li#translate {
        left: -19px !important;
    }
    #slideout.switchers-active, #font-switcher.switchers-active, #language-switcher.switchers-active, #dopek-yt.switchers-active, #dopek-video.switchers-active, ul.linklist > li#translate.switchers-active, .fakeTranslate.switchers-active {
    left: 0 !important;
}
}
@media(max-width:700px) {
    #wrap{
        min-height: inherit;
    }
    .nav-main .icon {
        font-size: 25px;
        margin-top: 6px;
        line-height: 1.3
    }

    #nav-top {
        height: 50px;
        z-index: 10;
    }

    a.button.hexagonbutton {
        padding: 2px 5px;
        line-height: .7
    }

    .profile-left {
        float: none
    }

    a.button.button-icon-only.hexagonbutton {
        padding: 3px 5px
    }

    .inputbox {
        border: 1px solid #12A3EB
    }

    .smiley-box {
        box-shadow: 0 0 4px #12a3eb
    }

    .post-buttons {
        margin: 0
    }

    .badge {
        background-color: transparent;
        margin-top: 10.5px;
        margin-left: -2.5px;
        font-size: 1.1em
    }

    #slideout_inner {
        top: -170px !important;
        left: 0;
        padding: 1px
    }

    .forwardn {
        display: none
    }

    #slideout:hover #slideout_inner {
        left: 0;
        top: 79px
    }

    .responsivebutton {
        bottom: 20px;
        position: fixed;
        right: 15px;
        z-index: 1
    }

    .responsivebutton .icon {
        font-size: 25px;
        bottom: -5px;
        left: 1px
    }

    .responsivebutton:before {
        font-size: 50px;
        text-shadow: 0 0 20px #000
    }

    .stat-block {
        text-align: center
    }

    .stat-block p {
        text-align: left
    }

    .no-avatar .avatar-container {
        background-position: inherit;
        background-size: contain;
        height: 150px;
        width: 150px;
        float: left;
        margin-right: 10px
    }

    .profile-contact {
        display: inline-block !important;
        margin-left: 0 !important;
        position: absolute;
        top: 17px;
        right: 75px
    }

    .profile-contact strong {
        display: none
    }

    .profile-contact .button:before {
        top: -13px;
        font-size: 35px;
        left: 1px;
        display: block
    }

    .profile-contact .button {
        margin-left: 0
    }

    p.responsive-center.time {
        text-align: center !important;
        float: none !important
    }

    li.header dt {
        font-size: 1em;
        text-align: left
    }

    .sidebar ul.topiclist dt .list-inner {
        margin-right: 30px
    }

    .sidebar ul.topiclist.forums dd.lastpost {
        display: block
    }

    ul.topiclist dt .list-inner {
        margin-right: 0 !important
    }

    .nav-footer .icon {
        font-size: 20px
    }

    .postprofile a.button {
        min-width: 0;
        width: 100px;
        padding: 5px 5px 6px 2px
    }

    .action-bar.bar-top .responsivebutton {
        bottom: 25px;
        margin-top: 5px !important
    }

    #language-switcher {
        top: 7px !important;
        left: 44px !important
    }

    #language-switcher .language-switcher-button {
        width: 22px !important
    }

    #language-switcher-inner {
        top: -250px !important;
        left: 0 !important
    }

    #language-switcher:hover #language-switcher-inner {
        left: 0 !important;
        top: 34px !important
    }

    #font-switcher {
        top: 7px !important;
        left: 126px !important
    }

    #font-switcher-inner {
        top: -250px !important;
        left: 0 !important
    }

    #font-switcher:hover #font-switcher-inner {
        left: 0 !important;
        top: 34px !important
    }

    #slideout {
        top: 7px !important;
        left: 206px !important
    }

    #slideout:hover #slideout_inner {
        left: 0 !important;
        top: 34px !important
    }

    #dopek-yt,
    .translated-ltr #dopek-yt {
        left: 167px
    }

    #dopek-video,
    .translated-ltr #dopek-video {
        left: 207px
    }

    iframe#googdropdown1 {
        left: 86px !important;
        top: 40px !important
    }

    .translated-ltr iframe#googdropdown1 {
        top: 81px !important
    }

    h1.footer {
        font-size: .85em
    }

    h1.footer2 {
        font-size: .65em
    }

    li.pc {
        display: none
    }

    p.bannertopic {
        margin-bottom: -5px !important;
        margin-top: -5px !important
    }

    p.bannerchat {
        margin-bottom: 0 !important
    }

    .qr_fixed_form .posting-info .collapsible {
        font-size: .9em !important
    }
    #logo img{
        width: auto;
    }
    .layout-container {
        border: none;
        border-radius: 0;
        margin: 0;
        min-width: 290px;
        padding: 0 5px;
    }
    .flagIcons {
		width: 340px;
	}
    
    .panel-title{
        text-transform: none;
    }
    #nav-top li:not(.responsive-show){
        display: none;
    }
    #myNav.overlay {
        height: 100%;
        width: 100%;
        position: fixed;
        z-index: 10;
        top: 0;
        left: 0;
        background-color: #171717;
        overflow-x: hidden;
        transition: 0.5s;
    }
    #myNav.overlay .closebtn {
        position: absolute;
        top: 36px;
        right: 10px;
        font-size: 60px;
        line-height: 60px;
        z-index: 999;
        padding: 8px;
        text-decoration: none;
        color: #FFFFFF;
        display: block;
        transition: 0.3s;
    }
    .overlay-content {
        position: relative;
        top: 9%;
        width: 100%;
        text-align: left;
    }
    .overlay-content a {
        padding: 8px;
        text-decoration: none;
        font-size: 24px;
        color: #FFFFFF;
        display: block;
        transition: 0.3s;
    }
    .nav-top .icon {
        font-size: 25px;
        margin-top: 6px;
        line-height: 1.3;
    }
    #nav-top li.responsive-show.hidden {
        display: block;
    }
    #page-footer .copyright{
        margin-top: 0;
    }

    .panels-grid{
        gap: 8px;
    }
}
@media(min-width:351px) and (max-width:700px) {
    .cont {
        margin-left: -214px !important;
        margin-top: 19px
    }

    .pow {
        margin-top: 19px
    }
}
@media(min-width:627px) and (max-width:720px) {
    li.domains {
        padding: 1px !important;
        font-size: .9em !important;
        line-height: 2.25em !important
    }

    .domainssep {
        line-height: 2.25em !important;
        font-size: .9em !important
    }
}
@media(max-width:627px) {
    li.domains {
        padding: 1px !important;
        font-size: .9em !important;
        line-height: 1.55em !important
    }

    .domainssep {
        line-height: 1.55em !important;
        font-size: .9em !important
    }
}
@media(max-width:550px) {
    .sidebar ul.topiclist dt .list-inner {
        margin-right: 0
    }
}
@media screen and (max-height:450px) {
    .overlay a {
        font-size: 20px
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 0;
        right: 35px
    }
}
@media (max-width: 410px) {
	.flagIcons{
		padding-right: 4rem
	}
}
@media(max-width:350px) {
    .cont {
        margin-left: -158px !important;
        margin-top: 19px;
        max-width: 250px !important
    }

    .pow {
        margin-top: 19px
    }
}
@media(max-width:317px) {
    #slideout {
        display: none
    }
}




