button.cSearchSubmit {
    padding: 0;
    margin: 7px;
    background: none;
    border: none;
    color: #797979;
    font-size: 16px;
    position: absolute;
    right: 10px;
    top: 4px;    box-shadow: none;
}

input.textbox.wyszukiwarka_top::placeholder {

    color: #929292;

}
input.textbox.wyszukiwarka_top:focus {
    box-shadow: 0px 0px 4px #8369c569;
}

a.jointoserver {
    display: block;
    padding: 10px 10px;
    margin: 2px;
    font-size: 11px;
    background: var(--third-bg);
    border: 1px solid transparent;
    color: #d1d1d1;
    border-radius: 7px;
    text-align: center;
    margin-top: 10px;
}

a.jointoserver:hover, a.jointoserver:active {
    background: var(--blue);
    color: #fff;
    transition: 0.2s;
}

input.server.serverbutton {
    display: block;
    padding: 10px 10px;
    margin: 2px;
    font-size: 11px;
    background: var(--third-bg);
    border: 1px solid transparent;
    color: #d1d1d1;
    border-radius: 7px;
    text-align: center;
    width: 100%;
    height: 100%;
}

input.server.serverbutton:hover {
    background: var(--blue);
    color: #fff;
    transition: 0.2s;
}

span.server.serveronline {
    background: rgb(173 255 47 / 10%);
    color: greenyellow;
}

span.server.serveroffline {
    background: rgb(221 55 55 / 10%);
    color: #dd3737;
}

span.server {
    display: inline-block;
    height: auto;
    line-height: 16px;
    padding: 5px 10px;
    text-transform: uppercase;
    color: white;
    text-shadow: rgb(0 0 0 / 20%) 0px -1px 0px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-image: none;
    background-repeat: repeat-x;
    background-position: 0 -1px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 10px;
}

span.server-players {
    display: inline-block;
    height: auto;
    line-height: 16px;
    padding: 5px 10px;
    text-transform: uppercase;
    color: white;
    text-shadow: rgb(0 0 0 / 20%) 0px -1px 0px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-image: none;
    background-repeat: repeat-x;
    background-position: 0 -1px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 10px;
    float: right; 
}

/** Staff page **/
td.thead_staff {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

td.trow_staff {
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid inherit;
    border-radius: .25rem;
    background: inherit
    color: var(--gray);
  display: inline-grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: auto auto;
  grid-auto-rows: 0px;
  position: relative;
  overflow: hidden;
}

.staff_group_desc {
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 5px;
}

.staff_avatar {
    border-radius: 5px;
}

.staff_grid {
    width: auto !important;
    margin: 0 !important;
    float: none !important;
    height: auto !important;
    grid-column: span 3;
    text-align: center;
}

.ipsGrid {
    display: grid;
    grid-gap: var(--grid-gap);
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 0px;
    position: relative;
}

tr.ipsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-template-rows: auto auto;
  grid-auto-rows: 0px;
  position: relative;
  overflow: hidden;
}

/** Tagi/Prefixy **/
span.tag-update {
    background: var(--blue);
    color: var(--second-bg);
    font-size: 13px;
    font-weight: 600;
    padding-left: 7px;
    padding-right: 7px;
    margin-right: 5px;
    border-radius: 30px;
    display: inline-block;
}

span.text-danger {
    color: #f71616;
}

div#dropzone {
    border: 1px dashed #888 !important;
}

div#dropzone:hover, div#dropzone:active {
    border: 1px dashed var(--blue) !important;
    background: var(--third-bg);
    color: var(--blue);
    transition: 0.2s;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

a.text-logo {
    font-family: 'Skomelr Quantum', sans-serif;
    font-style: normal;
    display: block;
    width: 100%;
    text-align: center;
        padding-top: 5px;
        font-size: 50px;
  animation: lights 5s 750ms linear infinite;
}

a.text-logo:hover {
    color: var(--blue);
    transition: 0.2s;}

.text-logo-icon {
  vertical-align: middle;
  font-weight: 900;
  margin-left: 5px;
  display: inline-block;
  width: 2em;
  height: 2em;
}

input[type=checkbox] {
         position: relative;
           cursor: pointer;
    margin-right: 10px;
    }
    input[type=checkbox]:before {
         content: "";
         display: block;
         position: absolute;
         width: 16px;
         height: 16px;
         top: 0;
         left: 0;
         border: 2px solid transparent;
         border-radius: 3px;
         background-color: var(--third-bg);
}
    input[type=checkbox]:checked:after {
         content: "";
         display: block;
         width: 5px;
         height: 10px;
         border: solid #fff;
         border-width: 0 2px 2px 0;
         -webkit-transform: rotate(45deg);
         -ms-transform: rotate(45deg);
         transform: rotate(45deg);
         position: absolute;
         top: 2px;
         left: 6px;
}

input[type="file"] {
    background: var(--third-bg);
}

label {
    font-family: Calibri, Helvetica, sans-serif;
    display: inline-block;
    /* cursor: pointer; */
    position: relative;
    /* padding-left: 15px; */
    /* margin-right: 10px; */
    font-size: 0.9em;
    font-size: 13px;
  }

input#referurl {
    background: var(--third-bg);
    color: var(--gray);
    border: none;
}

.dropbtn {
    color: white;
    padding: 17px 5px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {

}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #120e13;
  min-width: 222px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.29);
    z-index: 1;
    padding: 20px 20px;
        left: -184px;
    top: 68px;
    z-index: 9999999;
    border-radius: 13px;
    overflow: inherit;
}
.dropdown-content:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 13px solid rgb(18, 14, 19);
    z-index: 111111111111111111111111111;
    position: absolute;
    left: 199px;
    top: -11px;
}
.dropdown-content a {
 color:#888b98;
    padding: 17px 36px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    position: relative;
		-moz-transition: all 5.3s ease;
	transition: all 5.3s ease;
}

.dropdown a:hover {}
.show {display: block;}

ion-icon {
   color : #fff;
}


img.enmenu-img {
    height: 40px;
    width: 40px;
    border-radius: 333px;
    margin: -16px 0px;
    border: 2px solid #7968c7;
    position: relative;
    margin-left: 15px;
}
img.enmenu-img:before {
	    content: '';
    position: absolute;
    background: url(../../../images/default_avatar.png);
    z-index: 555;
    left: 0;
    height: 32px;
    width: 32px;
}








.dropbtn123 {
  
color: white;
    padding: 17px 10px;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.dropbtn123:hover, .dropbtn123:focus {

}

.dropdown123 {
  position: relative;
  display: inline-block;
}

.dropdown-content123 {
    display: none;
    position: absolute;
    min-width: 365px;
    background-color: #120e13;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.29);
    z-index: 1;
    padding: 20px 20px;
    left: -355px;
    top: 68px;
    z-index: 9999999;
    border-radius: 13px;
    overflow: inherit;
}
.dropdown-content123:before {
    content: '';
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 13px solid rgb(18, 14, 19);
    z-index: 111111111111111111111111111;
    position: absolute;
    right: 10px;
    top: -8px;
}
.dropdown-content123 a {
    color: #888b98; font-weight:500;
}
.dropdown-content123 a:hover {color: #5c64c5;}

.dropdown123 a:hover {}
.show123 {display: block;}

.wiadomosc_wysuwanybox {
    float: left;
    width: 100%;
    display: block;
    margin: 5px 0px;
    border-bottom: 2px solid #181419;
    padding-bottom: 10px;
    color: #888b98;
}

.lewastronaqw {
    float: left;
}
img#avatar_last_wiadomosci {
    width: 40px;
    height: 40px;
    border-radius: 68px;
    border: 2px solid #7968c7;
}

.prawastronaqw {
    margin: 2px 10px;
    float: left;
    width: 232px;
}
.wiadomosci_title {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
h1.napis_title_wiad {
    font-size: 15px;
    float: left;
    margin: 0;
    padding: 0;
    color: #888b98;
	font-weight: 400;
}
a#button-nowa-wiadomosc {
    display: inline-block;
    float: right;
    padding: 5px 10px;
    margin: -4px 0px;
    background: #2b2d2e;
    color: #88898c;
    border-radius: 6px;
}
a#button-nowa-wiadomosc:hover { opacity:0.5;}
.overflow-wiado {
    height: 325px;
    float: left;
    width: 100%;
    overflow-y: scroll;
}
span.liczba-wiado-folder {
    vertical-align: super;
    position: absolute;
    font-size: 14px;
    margin: -8px -7px;
    z-index: 9999;
    background: #d40a0a;
    padding: 0px 5px;
    border-radius: 3333px;
}


a.register {
     background: linear-gradient(to right top, #00d85b, #00913d);
    border-radius: 17px;
    border: 2px solid #00d058;
    box-shadow: 0px 0px 1px #00ce57;
    padding: 12px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
}

a.register:hover { opacity:0.5;}

.panel-goscia {
    float: right;
    margin: 90px 0px;
}

.modal {
    width: 475px;
    text-align: left;
    background-color: #eef1f7;
    display: inline-block;
    padding: 20px 30px;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
}
input#quick_login_password {
    padding: 15px 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 13px;
    border: 1px solid #dee3ef;
}
a.lost_password {
    color: #464956;
    font-size: 15px;
    float: right;
    width: 100%;
    text-align: left;
    margin: 3px 0px;
}
input.button_logowanie {
    padding: 15px 20px;
    width: 50%;
    margin: 20px 0px;
    border-radius: 13px;
    border: none;
    background: linear-gradient(to bottom, #0075fa 0%, #002a5e 100%);
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
	cursor:pointer;
}
.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(0,0,0);
    background-color: rgba(0, 81, 173, 0.52);
    text-align: center;
}
input.button_logowanie:hover {opacity:0.5;}
h1.panel-logowania-text {
    font-size: 20px;
    margin: 0px 0px 20px;
    color: color: #464956;
    color: #464956;
    text-align: center;
}
input#quick_login_username {
    padding: 15px 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 13px;
    border: 1px solid #dee3ef;
}
.panel_user {
    float: right;
    padding: 28px 0px;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: var(--main-bg);
}
::-webkit-scrollbar-thumb {
background-color: var(--blue);
    border-radius: 4px;
}
ion-icon {
  color: blue;
}
ion-icon {
  color: blue;
}

.forum-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.forum-container__forums {
    float: left;
    width: 100%;
	    width: calc( 100% - 370px );
}

.forum-container__sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 320px;
    flex: 0 1 320px;
    margin-left: 50px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    max-width: 320px;
}

.forum {
    position: relative;
    border-radius: 8px;
    float: left;
    width: 100%;
    background: var(--second-bg);
    margin-bottom: 40px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 13px;
    padding-top: 0;padding-bottom: 0;
}


.forum .container {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.forums {
    padding: 36px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.dzialtlo {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 40px 25px;
    border-bottom: 1px solid #191a21;
    word-break: break-word;
    margin-bottom: 0px;
}

.forum__item_status {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    text-align: center;
}
.forum__item {
    z-index: 1;
    position: relative;
}

.forum__item_info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    line-height: 1.4;
    font-size: 13px;
    margin-left: 4%;
}
.forum__item {
    z-index: 9999;
    position: relative;
}

.forum__item_stats {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18%;
    flex: 0 0 18%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.forum__item_last-post {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 210px;
    flex: 0 1 210px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;

    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;    min-width: 250px;
	       color: #ccc;

    text-decoration: none;
}

.forum__name, .forum_lastpost_title {
    font-size: 14px;
    font-weight: normal;
    margin: 0;
       color: #ccc;

    font-weight: bold;
}

.forum__description {
    line-height: 1.6;
    margin: 5px 0 0 0;
    font-weight: normal;
    font-size: 13px;
    color: #363d47;
    z-index: 3333;
}

.sub-forums {
    font-size: 11px;
    margin-top: 15px;
}

.sub-forums ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-forums ul li {
float: left;
    width: 50%;
}

.sub-forums ul li a {
    color: #363d47;
    font-size: 12px;
    text-decoration: none;
    padding-left: 20px;
    position: relative;
}
.sub-forums ul li a:hover { 
	color: #5c64c5;
}
.sub-forums ul li a:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #3e4040;
    left: 0;
    border-radius: 333px;
    margin: 4px 5px;
}
.sub-forums ul li a:hover:before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #7e69c7;
    left: 0;
    border-radius: 333px;
    margin: 4px 5px;
}


.forum__stats-container {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.flex_box_pudelko {
    display: flex;
    width: 100%;
    float: left;
}
.panel-boczny {
    flex-basis: 330px;
    margin-left: 40px;
}

.thead-strona {
    padding: 35px 10px;

}
.thead-strona a {
    color: #fff;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 400;
}

.thead-strona:before {

}
a.forum__name {
    text-decoration: none;
    =: antiquewhite;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
}
a.forum__name:hover { text-shadow:none;color:#7e69c6;}
span.myNumber.myNumber--medium {
    background: #0f1014;
    min-width: 100px;
    text-align: center;
    padding: 0px 0px;
    background-repeat: no-repeat;
    color: #fff;
    padding: 20px 10px;
    border-bottom: 1px solid #2b2c4f;
    border-radius: 13px;
    color: #59606b;
    font-weight: 500;
	    font-weight: 800;
}
.panel-boczny-s {
margin-bottom: 40px;
}
.title-panel-boczny {
    padding: 20px 25px;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    text-align: left;
    position: relative;
    font-size: 13px;
}

.text-panelboczny {
    color: #fff;
    background-size: 100% 100%;
    padding: 15px 10px;
    overflow: hidden;
}
.pudelko-stat-4 {
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
	    margin: 20px 0px;
}
.div1-pudelko {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
span.title-div1-pudelko {
    font-size: 22px;
    display: block;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
span.text-div1-pudelko {
    color: #838383;
    font-size: 18px;
}
img#obrazek-stats {
    width: 100%;
    max-width: 100%;
}
.prawa-div1-pudelko {
    min-width: 135px;
}
span.title-postoww {
    display: block;
	font-weight:400;
}
.box-top5 {
    float: left;
    width: 100%;
    padding: 10px 0px;
    color: #363d47;
}
.panel-boczny-s {
    margin-bottom: 40px;
    background: #101117;
    border-radius: 13px;
}
span#button-posty {
    float: right;
    height: 25px;
    background: #2b2c4e;
    text-align: center;
    width: 60px;
    text-align: center;
    line-height: 25px;
    color: #ccc;
    border-radius: 30px;
    margin-top: 3px;
}
span.tylekmariana {
    position: relative;
    height: 100%;
}
span.tylekmariana:before {
    content: '';
    width: 100%;
    height: 3px;
    top: -19px;
    position: absolute;
    background: #fff;
    background: linear-gradient(to right , #6968ce, #8c69c1);
    box-shadow: 0px 0px 10px #7c68c7;
    border-radius: 13px;
}
.header_top {
    background: url(../../../images/red/tlogora.png);
    background-position: center top;
    background-repeat: no-repeat;
}
.div1-pudelko.dodatek {
	position:relative;
}
.div1-pudelko.dodatek:before {
    content: '';
    background: url(../../../images/red/5.png);
    width: 266px;
    height: 191px;
    position: absolute;
    left: -49px;
    z-index: -1;
}



.tabs {

}
.tabs-nav li {
  float: left;
	list-style:none;
	    margin-right: 20px;
}

.tabs-stage {
    border-top: 0;
    clear: both;
    padding: 5px 0px;
    position: relative;
    top: 0px;
}
.statystyki_bottom {
    background: #111217;
    padding: 20px;
    border-radius: 13px;
    min-height: 127px;
	    margin: 25px 0px;

}
.statystyki_bottom a {     color: #858585;}
ul.tabs-nav {
    padding: 0;
    margin: 20px 0px;
}


.tab-active a {
color:#fff;
	position:relative;
}
.tab-active a:before { content:'';}
p.text-bottom-statistic {
    padding: 0;
    color: #858585;
    font-size: 13px;
}
p.uzytkownicy-bottom-statistic {
    color: #656872;
    font-size: 13px;
}
.tab-active a:before {
    content: '';
    content: '';
    width: 100%;
    height: 3px;
    top: -19px;
    position: absolute;
    background: #fff;
    background: linear-gradient(to right , #6968ce, #8c69c1);
    box-shadow: 0px 0px 10px #7c68c7;
    border-radius: 13px;
}



.forum_status {
    height: 78px;
    width: 57px;
    display: inline-block;
    position: relative;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
}

.forum_on {
background: url(../../../images/red/icon2.png);background-repeat: no-repeat;
}



.forum_off {
	background: url(../../../images/red/icon1.png);background-repeat: no-repeat;
}

.forum_offclose {
background: url(../../../images/red/icon1.png);background-repeat: no-repeat;
}




.forum_offlink {
background: url(../../../images/red/icon1.png);background-repeat: no-repeat;
}
.tloprofil {
    background: var(--second-bg);
    padding: 45px 10px;
    border-radius: 7px;
    text-align: center;
    position: relative;
}
span.nickprofil {
    display: block;
    margin: 5px;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}
span.tytulprofil {
    display: block;
    margin: 5px;
    font-size: 12px;
}
#avatarprofill { 
    width: 105px;
    height: 105px;
    border-radius: 5px;
    padding: 3px;
    background: var(--third-bg);
    }
.statsprofil {
    display: flex;
    justify-content: center;
    max-height: 50px;
    margin: 15px 0px;
}
.box-statsprofil {
    margin-right: 25px;
    margin-left: 25px;
}
p.title-statsprofil {
    font-size: 20px;
    color: #fff;
    padding: 0;
    margin: 0;
}

p.text-statsprofil {
    display: block;
    padding: 0;
    margin: 0;
    font-size: 13px;
}
a#buttonszukajkawprofilu {
    display: block;
    background: var(--second-bg);
    padding: 20px 10px;
    text-align: left;
    border-radius: 7px;
    margin-bottom: 10px;
    margin-top: 10px;
}
a#buttonszukajkawprofilu:hover {
    color: #Fff;
    background: linear-gradient(to right , #6968ce, #8c69c1);
}

/* Style the tab */
.tab {
    overflow: hidden;
    border: none;
    background-color: none;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    display: block;
    background: var(--second-bg);
    padding: 20px 20px;
    text-align: left;
    border-radius: 7px;
    margin-right: 20px;
    box-shadow: none;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background: var(--blue);
    transition: 0.2s;
}

/* Create an active/current tablink class */
.tab button.active {
    background: var(--blue);
    color: #fff
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: none;
    border-top: none;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
.flex-box-pudelko-profil {
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
}
.lewaprofil {
    flex-basis: 25%;
}
.prawaprofil {
    flex-basis: 100%;
     margin-left: 50px;

    margin-top: 12px;
}
select {
    padding: 8px;
    border: 1px solid #0f1014;
    outline: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    background: var(--third-bg);
    color: #fff;
    box-sizing: content-box;
    height: 31px;
    line-height: 31px;
    border-radius: 13333px;
}

.post .post_author div.author_avatar img {
    padding: 0px;
    border: none;
    background: none;
}
.post.classic .post_author {
    float: left;
    width: 15%;
    margin: 0 1% 15px 0;
    border-left: 0;
    padding: 5px 1%;    text-align: center;
    position: relative;
}
.post .post_author {
    background: var(--second-bg);
    padding: 5px;
    overflow: hidden;
}
img#avatar-post {
    width: 80px;
    height: 80px;
    border-radius: 3333px;margin: 10px 0px;
}
span.online12 /** online **/{
    position: absolute;
    width: 22px;
    height: 22px;
    background: green;
    margin: -25px 35px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 0 20px green;
}

span.online123 /** offline **/{
    position: absolute;
    width: 22px;
    height: 22px;
    background: red;
    margin: -25px 35px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 0 20px red;
}

.post_controls {
    clear: both;
    background: var(--third-bg);
    border-bottom: 1px solid #0f1014;
    padding: 10px 20px;
    overflow: hidden;
    border-radius: 333px;
    box-sizing: border-box;
}
table.tborder12.tfixed.clear {
    width: 100%;
    float: left;
    margin: auto;
}
.post.classic {
    padding-top: 15px;
    background: var(--second-bg);
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 13px;
}
.post .post_head {
    font-size: 11px;
    padding-bottom: 10px;
    border-bottom: none;
    margin-bottom: 10px;
}
.codeblock {
    background: #09090c;
    border: 1px solid #09090c;
    padding: 20px;
    border-radius: 13px;
    border-bottom: 2px solid #7568c970;
}
blockquote {
    border: 1px solid transparent;
    margin: 0;
    background: var(--second-bg);
    padding: 20px;
    border-radius: 1px;
    border-bottom: 1px solid var(--blue);
}
blockquote cite {
    font-weight: bold;
    border-bottom: none;
    font-style: normal;
    display: block;
    padding-bottom: 0px;
    margin: 0px 0 14px 0;
}
.codeblock .title {
    border-bottom: none;
    font-weight: bold;
    padding-bottom: 3px;
    margin: 0 0 10px 0;
}
.post.classic .post_author div.author_statistics {
    border-top: none;
    margin: 6px 0 0 0;
    padding: 6px 6px 3px 6px;
    float: none;
    color: #999;
}
td.thead12 {
    padding: 20px;
    margin-bottom: 10px;
    display: block;
    background: #0f1014;
    border-radius: 13px;
    color: #858ca1;
}
.post .post_head span.edited_post {
    font-size: 10px;
    color: #999;
}
.post .post_head span.post_date {
    color: #999;
}
.post .post_head span.edited_post a {
    color: #999;
}
.postbit_buttons a span {
    padding-left: 0;
    display: inline-block;
    height: 16px;
    background-image: none;
    background-repeat: no-repeat;
}
.postbit_buttons > a:link, .postbit_buttons > a:visited {
    display: inline-block;
    padding: 10px 10px;
    margin: 2px;
    font-size: 14px;
    background: var(--second-bg-opacity)
    border: 1px solid transparent;
    color: #ccc;
    border-radius: 5px;
    line-height: 14px;
}

.postbit_buttons > a:hover, .postbit_buttons > a:active {
    background: var(--blue);
    color: #fff;
    transition: 0.2s;
}

.pagination a {
    background: #0f1014;
    border: 1px solid #0f1014;
}
.pagination .pagination_current, .pagination a {
    padding: 10px 10px;
    margin-bottom: 3px;
	border-radius:7px;
}
.pagination a:hover {
    background: #7168cb;
    color: #fff;
    border-color: #8169c6;
    text-decoration: none;
}
.postbit_buttons > a:link, .postbit_buttons > a:visited {
    display: inline-block;
    padding: 10px 10px;
    margin: 2px;
    font-size: 14px;
    background: var(--third-bg-hover);
    border: 1px solid transparent;
    color: #ccc;
    border-radius: 333px;
    line-height: 14px;
}

.postbit_buttons > a:hover, .postbit_buttons > a:active {
    background: var(--blue);
    color: #fff;
    transition: 0.2s;
}

.postbit_buttons > a:hover {
    border-color: #38335e;
    opacity: 1;
}
textarea {
    background: var(--third-bg);
    color: #fff;
    border: 1px solid var(--third-bg-hover);
    padding: 12px;
    line-height: 1.4;
    outline: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    box-sizing: border-box;
    border-radius: 7px;
}
h1.title-lewa-inforacmeje {
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #656872;
}

p.text-lewa-inforamcje {
    font-size: 16px;
    color: #656872;
    padding: 0;
    margin: 10px 0px;
    font-weight: 400;
}
.flex-box-informacje {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0px;
}
.swiper-container1 {
  width: 100%;
  height: 100%;    max-height: 200px;    position: relative;
}
.swiper-slide1 {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.prawa-informacje {
  min-width: 40%;
    max-width: 40%;
    overflow: hidden;    max-height: 200px;
}
.stopka {
    background: var(--second-bg);
    padding: 30px;
    border-top: 2px solid #17181db8;
    margin-top: 20px;
    color: #888;
}
.flex-stopka {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
span.td123, span.td1234 {
    display: block;
    text-align: center;
    color: #888;
}
span.td123 a:link, span.td1234 a:link {
    color: #888;
}
span.td123 a, span.td1234 a {
    color: #888;
}
span.td123 a:hover, span.td123 a:active, span.td1234 a:hover, span.td1234 a:active {
    color: var(--blue);
    transition: 0.2s;
}
.swiper-container1 {
  width: 100%;
  height: 100%;
}

#button12345 {
    display: inline-block;
    background-color: var(--third-bg);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 7px;
    margin: 30px;
    position: fixed;
    bottom: 50px;
    right: 10px;
    transition: background-color .3s;
    z-index: 1000;
}
#button12345::after {
content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    line-height: 40px;
    color: #fff;
}
#button12345:hover {
  cursor: pointer;
  background-color: var(--blue);
    transition: 0.2s;
}
#button12345:active {
  background-color: var(--blue);
    transition: 0.2s;
}

#button123456 {
    display: inline-block;
    background-color: #0f1014;
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 4px;
    margin: 30px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    transition: background-color .3s;
    z-index: 1000;
}
#button123456::after {
content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 12px;
    line-height: 40px;
    color: #fff;
}
#button123456:hover {
  cursor: pointer;
  background-color: #333;
}
#button123456:active {
  background-color: #555;
}
		
		
		