/*-----------------------------------
:: Wczytanie potrzebnych fontow
-----------------------------------*/
@font-face {
    font-family: 'roboto_condensedbold';
    src: url('../fonts/robotocondensed-bold-webfont.eot');
    src: url('../fonts/robotocondensed-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/robotocondensed-bold-webfont.woff2') format('woff2'),
         url('../fonts/robotocondensed-bold-webfont.woff') format('woff'),
         url('../fonts/robotocondensed-bold-webfont.ttf') format('truetype'),
         url('../fonts/robotocondensed-bold-webfont.svg#roboto_condensedbold') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'roboto_condensedbold_italic';
    src: url('../fonts/robotocondensed-bolditalic-webfont.eot');
    src: url('../fonts/robotocondensed-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/robotocondensed-bolditalic-webfont.woff2') format('woff2'),
         url('../fonts/robotocondensed-bolditalic-webfont.woff') format('woff'),
         url('../fonts/robotocondensed-bolditalic-webfont.ttf') format('truetype'),
         url('../fonts/robotocondensed-bolditalic-webfont.svg#roboto_condensedbold_italic') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'roboto_condensedlight';
    src: url('../fonts/robotocondensed-light-webfont.eot');
    src: url('../fonts/robotocondensed-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/robotocondensed-light-webfont.woff2') format('woff2'),
         url('../fonts/robotocondensed-light-webfont.woff') format('woff'),
         url('../fonts/robotocondensed-light-webfont.ttf') format('truetype'),
         url('../fonts/robotocondensed-light-webfont.svg#roboto_condensedlight') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'roboto_condensedregular';
    src: url('../fonts/robotocondensed-regular-webfont.eot');
    src: url('../fonts/robotocondensed-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/robotocondensed-regular-webfont.woff2') format('woff2'),
         url('../fonts/robotocondensed-regular-webfont.woff') format('woff'),
         url('../fonts/robotocondensed-regular-webfont.ttf') format('truetype'),
         url('../fonts/robotocondensed-regular-webfont.svg#roboto_condensedregular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/roboto-regular-webfont.eot');
    src: url('../fonts/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff'),
         url('../fonts/roboto-regular-webfont.ttf') format('truetype'),
         url('../fonts/roboto-regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IcoMoon-Free';
    src: url('../fonts/IcoMoon-Free.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
[class^="icon-"], [class*=" icon-"], [class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: 'IcoMoon-Free' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    
    /* Enable Ligatures ================ */
    letter-spacing: 0;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    -o-font-feature-settings: "liga";
    font-feature-settings: "liga";

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/*-----------------------------------
:: Klasy ikonek
-----------------------------------*/
.icon-dice:before {
	content: "\e915";
}
.icon-search:before {
	content: "\e986";
}
.icon-bin2:before {
	content: "\e9ad";
}
.icon-menu:before {
	content: "\e9bd";
}
.icon-menu3:before {
	content: "\e9bf";
}
.icon-cloud-upload:before {
	content: "\e9c3";
}
.icon-heart:before {
	content: "\e9da";
}
.icon-warning:before {
	content: "\ea07";
}
.icon-enter:before {
	content: "\ea13";
}
.icon-arrow-up2:before {
	content: "\ea3a";
}
.icon-arrow-down2:before {
	content: "\ea3e";
}
.icon-facebook:before {
	content: "\ea8c";
}
.icon-facebook2:before {
	content: "\ea8d";
}
.icon-plus:before {
  content: "\ea0a";
}
/*-----------------------------------
:: Glowne style CSS
-----------------------------------*/
body{
	font-family: 'roboto_condensedregular';
    background: #363636;
    color: #363636;
}
a{
    color: #363636;
    text-decoration: none;
    transition: 0.3s ease all;
}
a:hover{
    text-decoration: none;
    color: #ff8c2e;
}
.container{
    width: 98%; /* Szerokosc dla starszych przegladarek */
    width: calc(100% - 20px);
    max-width: 1070px;
    margin: 0px auto;
    position: relative;
}
/*-----------------------------------
:: Popup z formularzem logowania
-----------------------------------*/
#darken{ 
    position: fixed; 
    left: 0; 
    top:0; 
    width: 100%; 
    height: 100%; 
    background-color: black; 
    z-index: 998; 
    display: none;
}
#popup_main{ 
    top: 50%;
    margin-top: -173px;
    left: 50%;
    margin-left: -225px;
    z-index: 999;
    position: fixed;
    display: none;
    background: #eee;
    color: #363636;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-bottom: 3px solid #ccc;
}
#close_popup { 
    cursor: pointer;
    position:absolute;
    right:5px;
    top: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #363636;
    height: 26px;
    line-height: 27px;
    width: 27px;
    text-align: center;
    transition: 0.3s ease;
}
#close_popup:hover{
    background: #ccc;
}
.popup-container{
    width: 100%;
    max-width: 380px;
    margin: 30px auto 40px auto;
}
.popup-container h3.log_title{
    text-align: center;
    font-family: 'roboto_condensedregular';
    font-size: 21px;
    color: #363636;
    margin-bottom: 20px;
    padding-top: 10px;
    font-weight: normal;
}
.loginform-links{
    position: relative;
    font-size: 14px;
    height: 30px;
    margin-bottom: 10px;
}
.remind-link{
    position: absolute;
    left: 0px;
}
.register-link{
    position: absolute;
    right: 0px;
}
/*-----------------------------------
:: Naglowek strony
-----------------------------------*/
header{
    margin-bottom: 90px;
}
#top{
    height:45px;
    background: #f7f7f7;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 99;
    box-shadow: 0px 2px 14px #252525;
}
.logo{
    float:left;
    margin: 7px 6px 0px 10px;
}
.logo a img{
	width: auto;
	display: block;
}
.logo-mobile{
	display: none;
}
/*-----------------------------------
:: Menu
-----------------------------------*/
#nav-left > .icon-menu{
	display: none;
}
#nav-left ul{
    float:left;
    font-size:0px;
    position:relative;
    padding: 0px;
    margin-left:4px;
}
#nav-left > ul > li, #nav-right ul li{
    display:inline-block;  
    position: relative;
    height:45px;
    line-height:45px;
    margin: 0px 0px;
}
#nav-left ul li.homepage{
	display: none;
}
#nav-left > ul > li > a, #nav-right ul li a{
    display: block;
    height:42px;
    line-height:45px;
    font-family: 'roboto_condensedregular';
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    margin-top:0px;
    padding: 0px 9px;    
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}
li.addbtn a{
    background: #e0e0e0;    
}

#nav-left ul li a:hover, #nav-right ul li a:hover, .notli.active > a{
    background: #eee;
    color: #363636;
    border-bottom: 3px solid #aaa;
}
/* Rozwijane menu z kategoriami */
#nav-left ul li ul.submenu{
    position: absolute;
    max-height: 0;
    visibility: hidden;
    right: 0px;
    top:75px;
    z-index: 99;
    min-width: 130px;
    text-align: right;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-bottom: 2px solid #ccc;
    padding-top: 10px;
}
#nav-left ul li ul.submenu:before{
    content: '';
    display: block;
    position: absolute;
    border-bottom: 10px solid #eee;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    right: 10px;
    top:0px;
}

#nav-left ul li.notli.active .submenu{
    max-height: 200px;
    visibility: visible;
}
#nav-left ul li ul li{
    display: block;
    line-height: 36px;
    padding: 0px 5px;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    background: #eee;
}
#nav-left ul li ul li a:hover{
    background: none;
    color:#ff8c2e;
}
#nav-left ul li ul li:first-of-type{
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
#nav-left ul li ul li a{
    border: none;
    margin: 0px;
    padding: 0px 5px;
    white-space: nowrap;
    font-size: 14px;
    text-transform: none;
    display: block;
    border-bottom: 1px solid #ccc;
}
#nav-left ul li ul li:last-child a{
    border: none;
}
#nav-right{
    float:right;
}
#nav-right #user-menu{
    right: 50px;
    position: relative;
}
#user-menu > ul{
    margin: 0px;
    padding: 0px;
    top:0px;
    position: relative;
    font-size: 0px;
}
#user-menu > ul > li > a{
    font-size: 14px;
    min-width:60px;
    text-align: center;
}
.wrapper-dropdown-5 {
    position: relative;
    padding: 7px 9px 7px 9px;
    cursor: pointer;
    float:right;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    outline: none;
    font-size:14px;
}
.wrapper-dropdown-5 .dropdown {
    position: absolute;
    font-size:0px;
    margin: 0px 10px 0px 0px;
    padding: 10px 0px 0px 0px;
    top: 50px;
    min-width:130px;
    right: 0;
    list-style: none;
    -webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
    z-index:999;
    max-height: 0;
    text-align:right;
    display: block;
    overflow:hidden;
    visibility: hidden;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-bottom: 2px solid #ccc;
}
.wrapper-dropdown-5 .dropdown:before{
    content: '';
    display: block;
    position: absolute;
    border-bottom: 10px solid #f7f7f7;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    right: 7px;
    top:0px;
}
#nav-right .wrapper-dropdown-5 .dropdown li {
    text-align:right;
    display: block;
    background: #f7f7f7;
    height: auto;
    line-height: 30px;
    padding: 0px 5px;
    margin:0px;
}
#nav-right .wrapper-dropdown-5 .dropdown li:first-of-type{
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
#user-drop.wrapper-dropdown-5 > ul.dropdown > li > a {
    display: block;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0px;
    padding:0px 5px 0px 0px;
    margin:0px;
    white-space: nowrap;
    font-size: 14px;
    text-transform: none;
}
#user-drop.wrapper-dropdown-5 > ul.dropdown > li:last-child > a {
    border: none;
}
#user-drop.wrapper-dropdown-5.active > ul.dropdown > li > a:hover{
    background: none;
    color:#ff8c2e;
}
#user-drop div{
    width: 31px;
    height:31px;
}
#user-drop div img{
    width: 100%;
}
.wrapper-dropdown-5.active {
    background: none;
    color: #ff8c2e;
}
.wrapper-dropdown-5.active .dropdown {
    max-height: 400px;
    visibility: visible;
    overflow: visible;
}
/*-----------------------------------
:: Wyszukiwarka
-----------------------------------*/
.sb-search {
	position: absolute;
	min-width: 40px;
	width:40px;
	height: 40px;
	right:10px;
	top: 2px;
	-webkit-transition: width 0.3s ease;
	-moz-transition: width 0.3s ease;
	-ms-transition: width 0.3s ease;
	-o-transition: width 0.3s ease;
	transition: width 0.3s ease;
	-webkit-backface-visibility: hidden;
	overflow:hidden;
}
.sb-search form{
    width:auto;
    margin:0;
    border:0;
}
.sb-search-input {
	top: 0;
	right: 0;
	border: 0;
	outline: none;
	width: 100%;
	line-height: 40px;
	margin: 0;
	z-index: 10;
	font-family: inherit;
	font-size: 15px;
	color: #363636;
}
.sb-search input[type~=text]{
    background: #ddd;
    margin:0;
    border:0;
    padding: 0px 0px 0px 10px;
}
.sb-search-input::-webkit-input-placeholder {
	color: #cccccc;
}
.sb-search-input:-moz-placeholder {
	color: #cccccc;
}
.sb-search-input:-ms-input-placeholder {
	color: #cccccc;
}
.icon-search  {
	width: 40px;
	height: 40px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0;
	margin: 0;
	line-height: 40px;
	text-align: center;
	cursor: pointer;
	border: none;
	color: #363636;
	background: #f7f7f7;
	z-index: 90;
	font-size: 16px;
}
.sb-search-submit {
	background: #ddd; /* IE needs this */
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; /* IE 8 */
    filter: alpha(opacity=0); /* IE 5-7 */
    opacity: 0;
	color: transparent;
	border: none;
	outline: none;
	z-index: -1;
}
.sb-search.sb-search-open, .no-js .sb-search {
	width: 240px !important;
	border:0;
	background:#ddd;
	margin:0;
}
.sb-search.sb-search-open .icon-search, .no-js .sb-search .sb-icon-search {
	color: #363636;
	z-index: 11;
}
.sb-search.sb-search-open .sb-search-submit, .no-js .sb-search .sb-search-submit {
	z-index: 99;
}
/*-----------------------------------
:: Glowna kolumna
-----------------------------------*/
#content, #content-page{
	width: 100%;
	max-width: 750px;
}
#content{
    float: left;
}
#content-page{
    margin: 0px auto;
}
.article{
	background: #f7f7f7;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
    border: 1px solid transparent;
	border-bottom: 3px solid #ff8c2e;
	margin-bottom:30px;
	position:relative;
	word-wrap: break-word;
    box-shadow: 0px 0px 24px #252525;
}
.article:last-of-type{
    margin-bottom:15px;
}
#content-page .article{
    border:none;
	border-bottom: 3px solid #ccc;
}
.object, .ytobject{
    margin: 10px;
	position: relative;
}
.object .next_img, .object .prev_img, .ytobject .next_img, .ytobject .prev_img{
    background: rgba(0,0,0,0.3);
    display: inline-block;
    width:40px;
    height:40px;
    text-align: center;
    line-height:33px;
    color:#f7f7f7;
    font-size: 32px;
    font-family: 'roboto_condensedbold';
    border-radius: 5px;
    text-shadow: 0px 0px 5px #252525;
    position: absolute;
    top: 50%;
    margin-top:-20px;
    z-index: 9;
}
.object .next_img, .ytobject .next_img{
    right:15px;
}
.object .prev_img, .ytobject .prev_img{
    left: 15px;
}
.object .next_img:hover, .object .prev_img:hover, .ytobject .next_img:hover, .ytobject .prev_img:hover{
    background: rgba(0,0,0,0.5);
}
.img-article .object, .img-article .ytobject{
    border-radius: 0px !important;
	  -moz-border-radius: 0px !important;
	  -webkit-border-radius: 0px !important;
    overflow: initial;
    padding: 0px;
}
.object img, .ytobject img{
    max-width: 100%;
    margin: 0px auto;
    display: block;
}
.ytobject img{
	width:100%;
	height: auto;
}
.img-article .object img{
    margin-bottom: 10px;
}
.ytobject, .img-article .ytobject{
    position: relative;
    padding-bottom: 51.35%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.ytobject iframe, .img-article .ytobject iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.short_content{
    color: #363636;
    font-family: 'robotoregular';
    font-size: 17px;
    margin: 10px 0px;
}
.full_content{
    color: #363636;
    font-family: 'robotoregular';
    font-size: 17px;
    margin: 0px;
    line-height: 1.3em;
    margin-bottom: 20px;
}
.full_content img{
	margin-bottom: 0px !important;
}
h1{
    color: #e2e8ee;
    margin: 10px;
    font-size: 1.4em
}
.img-article h1, #content-page .article h1, .header-page{
    margin: 0px 10px 0px 10px;
    padding-top: 10px;
}
h1 a, .img-article h1, #content-page .article h1, .header-page{
    font-family: 'roboto_condensedregular';
    font-weight: normal;
    color: #363636;
}
.object-info{
    list-style:none;
    margin: 5px 10px 0px 10px;
    padding: 0px;
    position: relative;
}
.object-info li{
    display: inline-block;
    font-size: 13px;
    margin-right: 6px;
}
.object-info li:last-of-type{
    margin-right: 0px;
}
.object-info li, .object-info li a{
    color: #a1a1a1;
}
.object-info li a:hover{
    color: #3ba203;
}
.object-info li.report-btn{
    float: right;
}
.report-btn .icon-warning{
    margin-right: 5px;
}
.article-bottom{
    border-top: 1px solid #ccc;
    height: 50px;
    margin: 0px 10px;
}
.share{
    float: left;
    padding: 0px;
    margin: 10px 0px 0px 0px;
    z-index: 2;
	position: relative;
}
.share li{
    display: inline;
    float: left;
}
.share li.social-likes__widget_twitter{
    margin-left: 5px;
}
.favs{
    float: left;
    margin: 5px 0px 0px 0px;
}
.add_fav, .del_fav{
    font-size: 30px;
    display: block;
    color: #a1a1a1;
    margin-left: 10px;
}
.favs .add_fav:hover, .favs .del_fav{
    color: #c72c2c;
}
.comment_count{
    float: left;
    font-size: 18px;
    margin: 10px 0px 0px 10px;
}
.comment_count a{
    background: #a1a1a1;
    color: #363636;
    border-radius: 11px;
    -moz-border-radius: 11px;
    -webkit-border-radius: 11px;
    height: 24px;
    line-height: 24px;
    display: block;
    padding: 0px 10px;
    position: relative;
     -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.comment_count a:before{
    content:'';
    position: absolute;
    border-top: 6px solid #a1a1a1;
    border-left: 6px solid transparent;
    border-right: 0px solid transparent;
    top: 24px;
    left:9px;
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.comment_count a:hover{
    background: #3ba203;
}
.comment_count a:hover:before{
    border-top: 6px solid #3ba203;
}
.under-img{
    margin: 15px 10px;
}
.under-img > span{
    color: #909090;
    font-size: 15px;
}
.pic_hidden{
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0px auto;
	transition: 1s ease-in-out;
	-webkit-transition: 1s ease-in-out;
}
.pic_hidden .show_pic{
    position: absolute;
    top: 566px;
    display: block;
    width:100%;
    text-align: center;
    background: rgba(0,0,0,0.6);
    padding: 8px 0px;
    color: #f7f7f7;
    text-transform: uppercase;
    text-shadow: 0px 0px 3px #000;
}
.object_top{
    padding:10px;
    overflow: hidden;
}
.author{
    overflow: hidden;
    float:left;
}
.vote_counter{
    float: right;
}
.vote_counter > span{
    font-size: 22px;
    line-height: 15px;
    display: block;
    float: right;
    margin-left: 10px;
}
.vote_counter .icon-plus{
    color: #64A056;
    display: block;
    float: left;
}
.author_avatar{
    width: 40px;
    height:40px;
    display: block;
    float: left;
}
.author_avatar img{
    width:100%;
}
.author_text{
    float: left;
    margin-left:10px;
    margin-top:-2px
}
.author_nick{
    color: #555555;
    font-size: 15px;
    line-height:15px;
    height:15px;
    display: block;
}
.author_text p{
    margin:3px 0px 0px 0px;
    padding:0px;
    font-size: 12px;
    color: #aaa;
}
.author_text p a{
    color: #aaa;
}
.post_desc{
    clear:both;
    padding:0px 10px;
    margin: 5px 0px;
    font-family: 'robotoregular';
    font-size: 14px;
    line-height: 1.2em;
    color: #363636;
}
.tags ul{
    font-size: 0px;
    list-style-type: none;
    margin:10px;
    padding:0;
}
.tags ul li{
    display: inline-block;
    margin:0px;
}
.tags ul li a{
    font-size: 13px;
    background: #ddd;
    margin: 0px 10px 6px 0px;
    padding: 2px 6px;
    border-radius: 2px;
}
.tags ul li a:before{
    content: "#";
}
/* Player gifow */
.start, .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    cursor: pointer;
}

.start {
    background: url('../img/play_icon.png') no-repeat;
    width: 128px;
    height: 128px;
    margin-top: -64px;
    margin-left: -64px;
}
.start_gif {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.img-article .start_gif a img{
    margin-bottom: 10px;
}
.played {
    display: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 7px solid #EEEEEE;
    border-top-color: #BFBFBF;
    border-bottom-color: #BFBFBF;
    -webkit-animation: spinner 2.5s infinite linear;
    animation: spinner 2.5s infinite linear;
    margin-left: -32px;
    margin-top: -32px;
    background: none;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    
    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    
    100% {
        -webkit-transform: rotate(720deg);
        transform: rotate(720deg);
    }
}
#image-nav{
    width:100%;
    position: relative;
}
#image-nav ul{
    list-style: none;
    margin: 0px 0px 30px 0px;
    padding: 0px;
    font-size: 0px;
}
#image-nav ul li{
    display: inline-block;
    text-align: center;
}
#image-nav ul li.random-img{
    width: 15%;
    top:0px;
    left:0px;    
}
#image-nav ul li a{
    height: 50px;
    display: block;
    line-height: 50px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    text-transform: none;
}
#image-nav ul li.more-btn{
    right:0px;
    top: 0px;
    position: absolute;
    width: 83%;
    font-family: 'roboto_condensedlight';
}
#image-nav ul li.more-btn a{
    font-size: 24px;
    height:50px;
    line-height: 46px;
    padding: 0px;
}
li.random-img a{
    background:#f7f7f7;
    font-family: 'roboto_condensedlight';
    font-size: 24px;
    
}
.top-filters{
    position: relative;
    overflow:hidden;
    z-index: 9;
    margin: 0px 0px 20px 0px;
}
.top-filters ul{
    list-style-type: none;
    font-size:0px;
    margin:0;
    padding:0;
}
.top-filters ul li{
    display: inline-block;
    width: 32%;
    margin-right:2%;
}
.top-filters ul li:last-of-type{
    margin:0;
}
.top-filters ul li a{
    background: #f7f7f7;
    font-size: 18px;
    display: block;
    text-align: center;
    border-radius: 2px;
    height: 40px;
    line-height: 40px;
}
.topbtn.active {
    font-weight: bold;
}
.charCount { display: inline !important; font-size: .9em; color: #666; }
/*-----------------------------------
:: Paginacja
-----------------------------------*/
.pagination{
    text-align:center;
    font-family: 'roboto_condensedlight';
    margin-bottom: 30px;
    position: relative;
    padding-top: 80px;
}
.square.next, .square.previous{
    position: absolute;
    top:0px;
    height: 50px;
    line-height:49px;
    font-size: 24px;
}
.square.next{
    width:75%;
    right:0px;
    padding: 0px !important;
    text-transform: none;
}
.square.previous{
    left:0px;
    width:23%;
}
.square{
    background:#eee;
    line-height: 28px;
    height:30px;
    display: inline-block;
    width:30px;
    border-radius:3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
    font-size: 14px;
}
.square:hover, .current,  #image-nav ul li.random-img a:hover{
    background: #ddd;
}
.current{
    color: #ff8c2e;
}
.msg_pagination{
	font-family: 'roboto_condensedregular';
	line-height:26px;
	height:26px;
	width:26px;
	display: inline-block;
	background: #ddd;
	border-radius: 2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 3px;
}
.msg_pagination:hover{
    background: #ccc;
    color: #ff8c2e;
}
/*-----------------------------------
:: Komentarze
-----------------------------------*/
#comments h1{
    border-bottom: 1px solid #ccc;
    font-family: 'roboto_condensedregular';
    font-weight: normal;
    font-size: 1.5em;
    color: #363636;
}
.comment{
    margin:10px;
}
.comment_left{
    width:80px;
    float:left;
}
.comment_left a img{
    max-width:80px;
    border-radius:2px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
}
.comment_left span{
    font-size:9px;
    max-height:12px;
    text-align:center;
    width:80px;
    display:block;
    color: #454545;
}
.comment_right{
    width: calc(100% - 90px);
    padding:0px 0px 0px 0px;
    float:right;
}
.comment_author{
    font-size:17px;
    position:relative;
    bottom:3px;
    font-family: 'roboto_condensedregular';
}
.coment_content{
    padding:0px;
	color: #707070;
    margin: 0px;
    font-size: 14px;
}
.comment-admin{
    float: right;
}
.comment-admin a{
    background: #ccc;
    color: #454545;
    padding: 2px 5px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}
/*-----------------------------------
:: Sidebar - kolumna boczna
-----------------------------------*/
#sidebar{
    width: 300px;
    float: right;
    position: relative;
}
.sidebar-box{
    background: #f7f7f7;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-bottom: 3px solid #ff8c2e;
    margin: 0px 0px 20px 0px;
    padding: 0px 0px 0px 0px;
    box-shadow: 0px 0px 24px #252525;
}
.socialbox-header, .regbox-title{
    padding: 10px 0px 10px 0px;
    margin: 0px 10px 10px 10px;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.coffee{
    margin:0px 10px 5px 10px;
}
.col-socialbox{
    float: left;
    width: 50%;
    max-width:500px;
    margin: 0px auto;
    text-align: center;
}
.col-socialbox .social-img{
    display: block;
    margin: 0px auto 10px auto;
}
.col-socialbox .social-btn .twitter-follow-button{
    margin-top: 2px;
}
.social-row{
    padding: 0px 10px 10px 10px;
}
.regbox-register-btn{
	-webkit-padding-before:2px !important;
	display: block;
}
.featured-head{
    display: block;
    text-align: center;
    padding: 10px;
}
.featured-overflow{
    height:auto;
    max-height:250px;
    overflow:hidden;
}
.featured-image{
    width: 300px;
    margin-bottom: 15px;
	word-wrap: break-word;
}
.featured-image > a{
    display: inline-block;
    width:100%;
    height: 250px;
    overflow: hidden;
    box-shadow: 0px 0px 24px #252525;
}
.featured-image a img{
    width: 100%;
    height: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.featured-image > a:hover + h2.featured-title a{
    color: #ff8c2e;
}
.featured-title{
    padding: 0px 0px 0px 0px;
    margin: 10px 0px 0px 0px;
    font-weight: normal;
    font-size: 21px;
    font-family: 'roboto_condensedregular';
    line-height: 1.2em;
}
.featured-title a{
    color: #ccc;
}
.featured-bottom{
    border-bottom: 1px solid #6a6a6a;
    padding: 10px 0px 0px 0px;
    display: inline-block;
    width:100%;
}
/*-----------------------------------
:: Podstrona z rejestracja
-----------------------------------*/
.reg_left{
    width:48%;
    float:left;
}
.reg_right{
    width:48%;
    float:right;
}
.reg_right input[name~=question]{
    width: 50% !important;
    width: calc(100% - 145px) !important;
    float:left;
}
.reg_right img{
    float:right;
    margin-top:32px;
    border:1px solid #ececec;
    height: 33px;
}
.rules_info{
	clear:both;
	background: #8f0606;
	border: 1px solid #c40f0f;
	color: #f7f7f7;
	position:relative;
	margin: 40px 0px 40px 0px;
    display: inline-block;
    width:100%;
    width: calc(100% - 2px);
}
.rules_info p{
	color:#f7f7f7;
	padding:10px;
	margin: 0px;
}
.rules_info > a{
    margin:10px;
    display:block;
}
.rules_info .rules_check{
    position:absolute;
    right:10px;
    bottom:10px;   
}
.rules_check > input{
    position: relative;
    right: 5px;
    margin-left:20px;
}
.registration-page-btn{
    width: 140px;
    text-align: center;
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    background: #7d0404;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-bottom: 2px solid #710303;
    text-transform: uppercase;
    color: #f7f7f7;
}
.registration-page-btn:hover{
    color: #fff;
    background: #710303;
}
/*-----------------------------------
:: Profil uzytkownika
-----------------------------------*/
#profile-header{
    background: #252525;
    background-position: center bottom;
    overflow: hidden;
    border-top-left-radius: 3px;
    -moz-border-top-left-radius: 3px;
    -webkit-border-top-left-radius: 3px;
     border-top-right-radius: 3px;
    -moz-border-top-right-radius: 3px;
    -webkit-border-top-right-radius: 3px;
}
#profile-header > .avatar{
    display:block;
    width: 200px;
    margin: 20px auto 20px auto;
    text-align: center;
    position: relative;
}
#profile-header > .avatar img{
    width: 100%;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    overflow: hidden;
}
.profile-login, .profile-status{
    display: block;
    color: #fff;
    text-align: center;
}
.profile-login{
    font-size: 24px;
}
.profile-status{
    font-size: 12px;
    margin: 0px 0px 25px 0px;
}
#profile-container .user-info-links{
    list-style-type: none;
    margin: 20px 10px;
    padding: 0px;
    color: #464646;
    line-height: 1.2em;
}
#profile-container .user-info-links p{
    display: inline;
    margin:0px;
    padding:0px;
    color: #252525;
}
.profile-action-btn{
    position: absolute;
    right:10px;
    bottom: 20px;
}
.select_avatar{
    background: #eee;
    padding: 1px;
    margin: 0px;
    width: 280px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -140px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-bottom: 2px solid #ccc;
    box-shadow: 0px 0px 30px 0px #252525;
}
#content-page .mod_tools{
    height: 40px;
}
/*-----------------------------------
:: Ulubione uzytkownika
-----------------------------------*/
#favlist-container{
    padding: 10px;
    overflow: hidden;
}
.favlist-img{
    display: inline-block;
    height: 120px;
    width: 24.2%;
    margin-right: 1%;
    margin-bottom: 5px;
}
.favlist-img:nth-child(4n+0){
    margin-right: 0px;
}
/*-----------------------------------
:: Podstrona z dodawaniem
-----------------------------------*/
#tabs ul{
	list-style-type: none;
    margin: 20px 10px;
    padding: 0px;
    text-align: center;
   }
#tabs ul li{
    display: inline-block;
    background: #ddd;
    border-bottom: 2px solid #ccc;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    width: 16.1%;
    text-align: center;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
}
#tabs ul li a{
    display: block;
}
#tabs ul li.active, #tabs ul li:hover{
    background: #ccc;
    border-bottom: 2px solid #ff8c2e;
}
/*-----------------------------------
:: Formularze
-----------------------------------*/
form{
    width: 97%;
    width: calc(100% - 20px);
    margin: 20px auto 10px auto;
}
#tabs form label img{
    position: relative;
    left: 3px;
}
#popup_main input[type~=text], input[type~=password], #content input[type~=text], #content-page input[type~=text], input[type~=email], input[type~=file], textarea, #content-page select{
    width:97%;
    width: calc(100% - 12px);
    background: #ddd;
    border: none;
    border-bottom: 2px solid #ccc;
    height:33px;
    padding:0 0 0 1%;
    font-family: 'roboto_condensedregular';
    font-size: 16px;
    color: #363636;
    margin: 10px auto;
    display:block;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	outline: none;
}
#tab-3 span{
    display: block;
}
#popup_main input[type~=text]:focus, #content input[type~=text]:focus, #content-page input[type~=text]:focus, input[type~=password]:focus, input[type~=email]:focus, input[type~=file]:focus, textarea:focus{
    border-bottom: 2px solid #ff8c2e;
}
#content-page select{
    width: 100%;
}
textarea{
    padding-top: 1%;
    min-height: 100px;
    min-width: calc(100% - 14px);
    max-width: calc(100% - 14px);
}
/*-----------------------------------
:: Buttony
-----------------------------------*/
input[type~=submit], .regbox-register-btn, .profile-action-btn a, .inbox_button, .next, li.more-btn a{
    background: #ff8c2e;
	border: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #f7f7f7;
    text-transform: uppercase;
    height: 40px;
    vertical-align: middle;
    text-align: center;
    padding: 0px 20px;
    display: block;
    margin: 0px auto;
    clear: both;
    overflow: hidden;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
}
.regbox-register-btn{
    line-height: 38px;
    margin: 0px 10px;
}
.profile-action-btn a{
    display: table-cell;
}
.inbox_button{
    line-height: 37px;
    display: inline-block;
}
.inbox_button:last-of-type{
    margin-left: 5px;
}
input[type~=submit]:hover, .regbox-register-btn:hover, .profile-action-btn a:hover, .inbox_button:hover, .square.next:hover, #image-nav ul li.more-btn a:hover{
    background: #ff8c2e;
    color: #f7f7f7;

}
.fb-login-btn, a.read-more{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0f60b1+0,0e5398+100 */
    background: #0f60b1; /* Old browsers */
    background: -moz-linear-gradient(top,  #0f60b1 0%, #0e5398 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #0f60b1 0%,#0e5398 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #0f60b1 0%,#0e5398 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f60b1', endColorstr='#0e5398',GradientType=0 ); /* IE6-9 */
    border: none;
    box-shadow: 0px 0px 5px #004284 inset;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    color: #f7f7f7;
    display: block;
    height: 40px;
    line-height: 38px;
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0px 0px 0px 35px;
    margin: 10px auto 10px auto;
}
a.read-more {
    padding: 0px;
}
.fb-login-btn .icon-facebook2{
    background: #004487;
    display: inline-block;
    height: 39px;
    line-height: 39px;
    width: 35px;
    font-size: 22px;
    position: absolute;
    left: 0px;
    top: 0px;
    text-shadow: none;
}
.popup-container form input[type~=submit]{
    width: 280px;
}
.fb-login-btn{
    width: 245px;
}
.fb-login-btn:hover, a.read-more:hover{
    color: #f7f7f7;
    background: #0e5398; /* Old browsers */
    background: -moz-linear-gradient(top,  #0e5398 1%, #0e5398 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top,  #0e5398 1%,#0e5398 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom,  #0e5398 1%,#0e5398 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0e5398', endColorstr='#0e5398',GradientType=0 ); /* IE6-9 */
}
/*-----------------------------------
:: Wiadomosci
-----------------------------------*/
#inbox-container, #inbox-btns{
    margin: 10px;
}
#inbox-container p{
    margin: 0px;
    padding:0px;
}
.msg-list-header{
    position: relative;
    border-bottom: 3px solid #ccc;
    height: 30px;
    line-height: 30px;
}
.msg-read-header{
	position: relative;
	border-bottom: 3px solid #ccc;
	padding: 5px 0px;
}
.msg-single-display{
    position: relative;
    padding: 8px 0px;
    border-bottom: 1px solid #ccc;
}
.msg-list-subject{
    width: 50%;
    display: inline-block;
}
.msg-list-author{
    width: 24%;
    display: inline-block;
    vertical-align: top;
}
.msg-list-date{
    width: 20%;
    display: inline-block;
    vertical-align: top;
}
.msg-list-delete{
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -11px;
}
.msg-list-delete a{
    color: #fff;
    background: #252525;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    display: inline-block;
    height: 22px;
    width: 22px;
    text-align: center;
    font-size: 22px;
    line-height: 17px;
}
.msg-list-delete-icon{
    position: absolute;
    right: 4px;
}
#inbox-btns{
    position: absolute;
    right: 0px;
    top:0px;
}
#message-container{
    margin: 30px 0px;
}
.msg-read-header{
    display: block;
    border-bottom: 1px solid #ccc;
}
.msg-read-subject{
    width: 60%;
    display: inline-block;
    text-align: left;
}
.msg-read-author{
    display: block;
    float: right;
}
.msg-read-content{
    margin: 10px 0px;
    color: #707070;
    font-family: 'exoregular';
    font-size: 17px;
}
.msg-read-content img{
    max-width: 100%;
}
.options{
    margin: 0px 0px 10px 0px;
}
.options input[type~=button]{
    border: none;
    outline: none;
    background: #3ba203;
    color: #fff;
    padding: 3px;
    min-width: 22px;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    text-transform: uppercase;
    font-size: 14px;
}
#inbox-container form{
    width: 100%;
}
blockquote {
	border: 1px solid #ddd;
	margin: 0;
	background: #eeeeee;
	padding: 4px;
	font-style:italic;
}
blockquote cite {
	font-weight: bold;
	border-bottom: 1px solid #ddd;
	font-style: normal;
	display: block;
	margin: 4px 0;
}
pre {
	border: 1px solid #ddd;
	margin: 0;
	background: #eeeeee;
	padding: 4px;
	height: auto;
	max-height: 200px;
	overflow: visible;
	white-space: normal;
}
/*-----------------------------------
:: Stopka strony
-----------------------------------*/
#footer{
    clear: both;
    background: #f7f7f7;
    border-top: 3px solid #ff8c2e;
    overflow: hidden;
    display: flex;
    position: relative;
    min-height: 70px;
    box-shadow: 0px -2px 24px #252525;
}
#footer #footer-left{
    width: 70%;
    position: absolute;
    bottom: 8px;
    left: 0px;
}
#footer-left .copyright{
    margin: 0px 0px 5px 0px;
}
#footer-left .copyright:first-letter{
	text-transform: capitalize;
}
#footer-left .footer-claim p{
    margin: 0px 0px 5px 0px;
    font-size: 12px;
    display: inline-block;
    line-height: 1em;
}
#footer #footer-links{
    float: right;
    list-style-type: none;
    vertical-align: middle;
    margin: 20px 0px 0px 0px;
}
#footer-links li{
    display: inline-block; 
    vertical-align: middle;
}
#footer-links li a{
    text-transform: uppercase;
    font-size: 14px;
    margin-left: 10px;
}
#footer-links li a.sruu{
    position: relative;
    top: 2px;
}
#footer-links li a.sruu img{
    width: 30px;
    height: auto;
}
/*-----------------------------------
:: Komunikaty szablonowe
-----------------------------------*/
.mod_tools{

    position: relative;
    bottom: 30px;
    background: #f7f7f7;
}
.mod_tools a{
    font-size: 14px;
    padding: 9px 10px 10px 10px;
    display: inline-block;
}
#display_error{
    background: #ffffff;
    height:32px;
    border-radius:3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
    border-bottom: 2px solid #cccccc;
    text-align:center;
    padding-top:15px;
    margin-bottom:30px;
}
.msg {
    background:#000;
    margin:20px 10px;
    padding: 15px 0px;
    color: #f7f7f7;
    text-align:center;
}
.alert {
    background: #309dcb;
    border: 1px solid #0474a3;
}
.error {
    background: #cb3b30;
    border: 1px solid #a50e02;
}
.good {
    background: #8dc63f;
    border: 1px solid #61a701;
}
#pm_notification, #vote_response{
	position:fixed;
	background:#309dcb;
	border:1px solid #0377a8;
	color: #f7f7f7;
	z-index:999;
}
#pm_notification{
	width:280px;
	padding:10px;
	margin:10px;
	right:0px;
	top: 10px;
}
#pm_notification a{
    color: #fff;
}
#pm_notification a:hover{

}
#pm_notification .close{
    position: absolute;
    top: -10px;
    right: -1px;
    background: #252525;
    padding: 0px;
    margin: 0px;
    height: 20px;
    width: 20px;
    text-align: center;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}
#vote_response {
	bottom:15px;
	left:50%;
	width:200px;
	padding:5px;
	margin-left:-100px;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#vote_response.active{
	display: block;
	visibility: visible;
	opacity: 1;
}
.comments-msg{
    margin: 10px;
    padding: 8px 0px;
    text-align: center;
    background: #ddd;
    outline: 1px solid #ccc;
}
.comments-msg a{
    font-family: 'roboto_condensedbold';
    color: #22a814;
}
/*-----------------------------------
:: Reklamy
-----------------------------------*/
#ads {
    position: relative;
}
#ads div {
    position: absolute;
    top: 175px;
	width: 160px;
}
#ads div.left {
    right:50%;
    margin-right:540px;
}
#ads div.right {
    left:50%;
    margin-left:540px;
}
.ad-object{
    width:750px;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    background: #eee;
    border-radius:3px;
    box-shadow: 0px 0px 25px #252525;
}
#content_bottom{
    margin: 30px 0px 30px 0px;
    background: #eee;
    padding:25px;
}
#content_bottom .content_bottom_item{
    display: inline-block;
}
#content_bottom .content_bottom_item:last-of-type{
  margin-left:20px;
}
.content_bottom_item .featured-image{
    width:336px;
}
.content_bottom_item .featured-image .featured-overflow{
    height: 280px;
    max-height: 280px;
    box-shadow: none;
    border: 1px #ccc solid;
}
.not_logged_container{
    background: url('../img/overlay.jpg');
    background-size: cover;
    background-position: center center;
    padding: 40px 0px;
}
.not_logged_container.ad_container{
    background: url('../img/overlay_ad.jpg');
}
.ytobject .not_logged_container{
    margin: -25px 0px 0px 0px;
    position: relative;
    height:100%;
    padding-top: 20px;
    padding-bottom: 53.25%;
}
.not_logged{
    width:400px;
    max-width:80%;
    border: 3px dashed #ff8c2e;
    padding:20px 20px 30px 20px;
    margin: 20px auto;
    position: relative;
    background: rgba(0,0,0,0.6);
    color: #f7f7f7;
}
.not_logged_header{
    font-size: 40px;
    margin:0px;
    padding:0px;
    font-family: 'roboto_condensedbold';
    text-align: center;
    text-transform: uppercase;
}
.not_logged_header span{
    color: red;
}
.not_logged_info{
    font-size: 18px;
    text-align: center;
}
.not_logged .not_logged_btn_text{
    text-align: center;
}
.not_logged_login, .not_logged_register{
    text-transform: uppercase;
    display: block;
    margin: 0px auto;
    width: 200px;
    text-align: center;
    border: 1px solid #ff8c2e;
    border-radius:3px;
    height:40px;
    line-height:40px;
    color: #f7f7f7;
}
.mirabelka_top_mobile,.mirabelka_bottom_mobile,.mirabelka_profile_mobile{
    display: none;
}
.mirabelka_top, .mirabelka_bottom, .mirabelka_profile, .mirabelka_top_mobile, .mirabelka_bottom_mobile, .mirabelka_profile_mobile{
    width:100%;
    max-width:750px;
}
.mirabelka_top a, .mirabelka_bottom a, .mirabelka_profile a, .mirabelka_top_mobile a, .mirabelka_bottom_mobile a, .mirabelka_profile_mobile a{
    text-align: center;
    display: block;
}
.mirabelka_top a img, .mirabelka_bottom a img, .mirabelka_profile a img, .mirabelka_top_mobile a img, .mirabelka_bottom_mobile a img, .mirabelka_profile_mobile a img{
    width:100%;
    height:auto;
}
.mirabelka_top, .mirabelka_top_mobile{
    margin-bottom:15px;
}
.mirabelka_bottom, .mirabelka_bottom_mobile{
    margin: 0px 0px 20px 0px;
}
.mirabelka_bottom a img{
    max-width:750px;
}
.mirabelka_profile, .mirabelka_profile_mobile{
    margin-bottom: 25px;
}
.mirabelka_post{
    float: right;
    margin-top:7px;
}
.mirabelka_post a{
    background: rgba(255,93,177,1);
background: -moz-linear-gradient(top, rgba(255,93,177,1) 0%, rgba(239,1,124,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,93,177,1)), color-stop(100%, rgba(239,1,124,1)));
background: -webkit-linear-gradient(top, rgba(255,93,177,1) 0%, rgba(239,1,124,1) 100%);
background: -o-linear-gradient(top, rgba(255,93,177,1) 0%, rgba(239,1,124,1) 100%);
background: -ms-linear-gradient(top, rgba(255,93,177,1) 0%, rgba(239,1,124,1) 100%);
background: linear-gradient(to bottom, rgba(255,93,177,1) 0%, rgba(239,1,124,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff5db1', endColorstr='#ef017c', GradientType=0 );
    color: #fff;
    display: inline-block;
    border-radius: 4px;
    padding: 6px;
    text-transform: none;
}
.mylead_cta{
    margin:10px;
    padding:10px;
    background:#ddd;
}
.mylead_cta p{
    margin:0;
    padding:0;
}
.mylead_cta a{
    display: inline-block;
    background: orange;
    color: #fff;
    width:100%;
    height:40px;
    line-height: 38px;
    text-align: center;
    font-size: 18px;
    margin:10px auto 0px auto;
}